Hi, for the drupal 5 version. I uploaden jquery module to modules directory.
I inserted a folder:modules/jquery_ui/jquery.ui

I downloaded jquery.ui-1.5.1 in this folder as explained in the readme.txt so the folder-thread is:
modules/jquery_ui/jquery.ui/jquery.ui-1.5.1 and in this folder the jquery-1-2-6.js and folders demos, tests, themes and ui.

But when I try to enable the module, I got:

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

What do I do wrong please?

Thanks in advance for your reply!

greetings,
Martijn

Comments

webchick’s picture

Probably http://drupal.org/node/268645 needs to be back-ported for the 5.x version. I'm only maintaining the 6.x version.

summit’s picture

Ok, thanks. I wait for this then! Thanks for telling.
Do you know when it will be backported?

greetings,
Martijn

webchick’s picture

Whenever someone does it. ;) But it's not on my radar, so I couldn't say.

kevinquillen’s picture

I wouldnt bother with this module as it causes a lot of problems for me with other modules. Try this instead to use the latest Jquery:

<?php 
		$loggedInSection = str_replace("q=", "", $_SERVER['QUERY_STRING']); 
			
		if (!preg_match('(node|admin|user)', $loggedInSection)) {
			print '<script type="text/javascript" src="'. base_path() . path_to_theme() .'/js/jquery.js"></script>';		
		} else {
			print $scripts;
		}
?>

That is... if you want some newer Jquery enabled stuff on the front end of the website. This makes it so the backend uses the JQ version its compatible with (in the package it comes with).

Mark Theunissen’s picture

gh0st25 > Looks like a clever hack there... thanks, going to try that!

kevinquillen’s picture

Yeah, came up with it after painfully learning the hard way that JQ Update isn't exactly compatible with everything. I know for a fact that with things like TinyMCE installed, the admin sections will break with a WSOD and JS errors. This fixed that, and is essentially the same result.

sun’s picture

Status: Active » Closed (duplicate)