jQuery UI

dwklassen - June 17, 2009 - 00:19

Not sure if this is the right place for this but I thought someone here could help. I'm trying to get jQuery UI running.

I've read the readme's and tried everything I can figure out and I still get this message and I've done what is says to do in the error message.

Missing jQuery UI plug-in. Please download the jQuery UI development bundle and extract it to your jquery_ui module directory. See README.txt for more info. (Currently using jQuery UI Not found)

jQuery update seems to be ok.

Same problem.

mnorth - June 26, 2009 - 18:51

I have been getting the same problem, and other, to me at least, odd errors.
I am just running a single user test installation.
Os is winXP Pro Service pack 2,ver 2002.
Hardware is HP dc7800, Intel Core 2 Duo E6750 @ 2.66 GHz 2GB Ram, Physical Address Extension
Platform is XAMPP ver 2.5 (9 . May, 2007)

I have got it working now...In retrospect I think that it is just a bit confusing the way we're directed around the install process with the ...you need this, put it here etc....
anyway what i did was
-download the jquery_ui-6.x-1.3.tar.gz, unpacked it and ended up with the directory/module jquery_ui
read the readme file...it directs you to get the development bundle...get the development bundle zip file http://jquery-ui.googlecode.com/files/jquery.ui-1.6.zip
-unpack that file and end up with the directory jquery.ui-1.6
-rename that directory jquery.ui
-place that directory inside the jquery_ui directory.
-now place the jquery_ui module into drupal\sites\all\modules

I found that worked....i'm using the 1.6 version of the jquery ui...trying to try out the form builder module from lullabot....
anyway i hope this helps

subscribe

pulpzebra - July 16, 2009 - 08:17

Subscribe to mnorth

incorrect path to version.txt

josephcylui - August 5, 2009 - 17:53

After some investigations inside the module, I installed it successfully by moving the version.txt from...

/sites/all/modules/jquery_ui/jquery.ui/development-bundle/version.txt

to...

/sites/all/modules/jquery_ui/jquery.ui/version.txt

I think you can either do that OR changing line 91-93 of...

/sites/all/modules/jquery_ui/jquery_ui.module

from...

if (file_exists(JQUERY_UI_PATH . '/version.txt')) {
$version = file_get_contents(JQUERY_UI_PATH . '/version.txt');
}

to...

if (file_exists(JQUERY_UI_PATH . '/development-bundle/version.txt')) {
$version = file_get_contents(JQUERY_UI_PATH . '/development-bundle/version.txt');
}

 
 

Drupal is a registered trademark of Dries Buytaert.