Im currently debating purchasing Arrowchat, however Im having problems with the install. It's on a custom site, so please don't come and say "we don't support custom sites, think about buying our install services". I have Arrow chat installed an 99.9% integrated. The issue here is:
1) I can't set someone as an admin. I tick the box in the ACP and it says it was changed, but nothing actually changes. I've tried re-installing twice without any luck.
2) All of my users are guests even though I have Arrowchat integrated with my system. I currently have arrow chat pulling a cookie. It looks like this:
- Code: Select all
function get_user_id()
{
$userid = NULL;
if (!empty($_COOKIE['sin']))
{
$userid = $_COOKIE['sin'];
}
return $userid;
}
In debug, everything looks fine. No errors. Now here's the issue; when my users log into the site, the bar shows up and acts as if they are logged in. However no one is shown online. And in a test chat room, everyone is shown as "guest". Then if you refresh the page enough eventually your name will change from "guest" to a random user.
I've tried pulling the session, no luck. I've tried pulling from the DB, no luck. It won't pull what-so-ever. The only way it works at all without any errors in the debug is if I use the cookie method, which clearly has bugs of it's own.

Any ideas and or suggestions would be greatly appreciated.