I made a fresh install of phpbb 3.1.4 and installed AjaxChat ver 0.8.8 (same issue with 0.8.7).
After I've fixed the cookies and solved it
I get the errormessage (generatet from phpBB):
General Error
Illegal use of $_SERVER. You must use the request class or request_var() to access input data. Found in ../chat/lib/class/AJAXChat.php on line 423. This error message was generated by deactivated_super_global.
it seems that accessing
// IP Security check variable:
line 423 $this->setSessionIP($_SERVER['REMOTE_ADDR']);
is not allowed by phpBB.
I tried to change it to $request->server('REMOTE_ADDR', '') (according to the phpBB3 coding guidelines) which workes fine in file ../chat/lib/custom.php but it does not work in ../chat/lib/class/AJAXChat.php. I tried to include require($phpbb_root_path.'common.'.$phpEx); like included in custom.php but this did not solve the issue.
Any ideas to solve this?
Thanks in advance eM Ka