As I use a different base path (http://www.example.com/drupal6), the SafeClick .js and .css files were not found.

So I changed all $paths variables of the safeclick.module file:

From:
$path = drupal_get_path('module', 'safeclick');

To:
$path = base_path() . drupal_get_path('module', 'safeclick');

Then I removed every leading "/" where the $path variable was used.

Now everything works fine. :)

Comments

p0deje’s picture

Status: Active » Fixed

Thanks. Applied suggested solution to module.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.