I have installed sucessfully but showing error while loading (below status bar of explorer) specially icons are not showing(its cross mark) but I can send the message. Demo is working in my browser. Its Drupal 6.10 and blumarine theme any solution???...Please help.
Comments
Comment #1
Yuki commentedSet already the base url but still not working...
Comment #2
BleuBiRTH commentedsame problem, installed phpfreechat on drupal 6. Seeiing chatbox, but no icon's show up, have set the base url, but does not help, what can i do?
Comment #3
HS commentedis there not a working chat module for Drupal? I'm using the Tribune module but I was looking for an option that is not self hosted and ideally flash or ajax based. Any ideas?
Comment #4
BleuBiRTH commentedok, phpfreechat works!
what have i done?
uninstalleded phpfreechat module
deleted the following maps:
..../sites/all/modules/phpfreechat
..../sites/default/files/phpfreechat
deleted every chatnode
reinstalled phpfreechat module and phpfreechat 1.2. Don't ask me how, but now it's working perfectly.
I hereby thank permutations for bringing phpfreechat to drupal 6.
Comment #5
permutations commentedBlueBirth - glad to hear you got it working. I suspect that most of the problems people are having are due to not fully uninstalling the previous version of phpFreeChat before installing the new one. I warn to do this in install.txt, but it's a pain so people probably don't.
Comment #6
Yuki commentedWhy automatically this messages are coming:
Anonymous749 quit
Anonymous750 join
Anonymous761 quit
Anonymous771quit
and continuously these messages are coming...in the chat box...
Comment #7
cigotete commentedhi, well, in my case, icons are not showed because their sub-domain path is wrong: http://www.www.mydomain.com/bla/bla.. (correct: http://www.mydomain.com), so, if is useful to somebody here is my solution (drupal 6 phpfreechat 1.3):
find pfcglobalconfig.class.php and change this function:
function getFileUrlFromTheme($file)
{
if (file_exists($this->theme_path.'/'.$this->theme.'/'.$file))
return $this->theme_url.'/'.$this->theme.'/'.$file;
else
if (file_exists($this->theme_default_path.'/default/'.$file))
return $this->theme_default_url.'/default/'.$file;
else
return 'notfound';
}
for this function
function getFileUrlFromTheme($file)
{
if (file_exists($this->theme_path.'/'.$this->theme.'/'.$file))
return str_replace("www.www", "www", $this->theme_url.'/'.$this->theme.'/'.$file);
else
if (file_exists($this->theme_default_path.'/default/'.$file))
return str_replace("www.www", "www", $this->theme_default_url.'/default/'.$file);
else
return 'notfound';
}
is just a regular exp.
my 2 cents.