Hello,

I have installed contextlinks module 1.8.2.1 on 4.7.3 and I have problem with path of icon files. They are not showing because of incorrect path.

it should be: www.example.com/modules/contextlinks/images/external.gif

but it is: www.example.com/?q=/modules/contextlinks/images/external.gif

Could anyone help me?
Houmr

Comments

tajettgi’s picture

I had the same problem. I solve it with a little hack in the module.
edit: modules/contextlinks.module
after line 388 insert this code:
$class->image = str_replace("?q=", "", $class->image);

this will solve the problem while will be fixed.

Bye

houmr’s picture

I tried this, but unfortunately it's not working. I use i18n module and there is also the language prefix in the path - like .../?q=EN/module... :-(

Houmr