Hi,
after setting up my new Drupal 4.7 installation yesterday, i tried to get the teamspeak module http://drupal.org/project/teamspeak working.
But it doesn't seems to work correctly.
First of all it don't display any ts icons. The images are refered by /drupal/?q=modules/teamspeak/icons/ts_icon0.gif in the src which imo should be /drupal/modules/teamspeak/icons/ts_icon0.gif.
Then the supplied teamspeak.css seems to be loaded never.
The not loading icons have i fixed with changing src="' url($path) . '/icons/ts_chan.gif" to src="' $path . '/icons/ts_chan.gif" in the source, but i don't know how to fix the loading of the css without hacking my new not fully understanding drupal installation. The related line seems to be theme_add_style(drupal_get_path('module','teamspeak').'/teamspeak.css');
Hope anybody has a hint for a new Druplan fan...
Pascal aka paXton
Comments
Im having the same problems,
Im having the same problems, tried what you did and still my Icons dont show :(
good fix!
that fix for the icon bug worked perfectly for me without issue. Thank you!
Change relative to ABSOLUTE path
For well working I change absolute path to relative
from
<Img......src="' url($path) . '/icons/ts_chan.gifto
<img src="www.website.com/modules/icons/ts_chan.gif">when website= your website ;-)