as I recall I had very similar issues with 7.1.6
As it turned out, it was relating to the fact I was not properly adding the code. The problem was, I was adding the code in my header files, as was recommended during installation process - and it didn't work when I first tried it, but after many hours of testing, it magically started working. I didn't even realize there was a problem... except that pesky problem of sometimes it worked and sometimes it didn't, and some pages were all screwed up and not properly working.
You need to make sure you are NOT adding the code to your theme files. If you are what happens is, it doesn't work. As the theme files cannot contain php at all. The reason they appear to work, is eventually dolphin caching picks up the code, and php can be run from the cached copies. (confusing yes?)
The solution for me was:
- enable jquery noconflict mode in the freichat admin area.
- edit freichat\hardcode.php $force_load_jquery = 'YES'; (the default is no)
- remove all code from your template files.
- use the dolphin sql header injection method and add the php and js to your database.
The exact code required for 7.1.6 is documented in the boonex forums. Do a search for freichat posts by user viraladmin. The injection code should give you an idea of how to properly set this up.
as I recall I had very similar issues with 7.1.6
As it turned out, it was relating to the fact I was not properly adding the code. The problem was, I was adding the code in my header files, as was recommended during installation process - and it didn't work when I first tried it, but after many hours of testing, it magically started working. I didn't even realize there was a problem... except that pesky problem of sometimes it worked and sometimes it didn't, and some pages were all screwed up and not properly working.
You need to make sure you are NOT adding the code to your theme files. If you are what happens is, it doesn't work. As the theme files cannot contain php at all. The reason they appear to work, is eventually dolphin caching picks up the code, and php can be run from the cached copies. (confusing yes?)
The solution for me was:
1. enable jquery noconflict mode in the freichat admin area.
2. edit freichat\hardcode.php $force_load_jquery = 'YES'; (the default is no)
3. remove all code from your template files.
4. use the dolphin sql header injection method and add the php and js to your database.
The exact code required for 7.1.6 is documented in the boonex forums. Do a search for freichat posts by user viraladmin. The injection code should give you an idea of how to properly set this up.
edited Nov 10 '15 at 1:18 am