Jeff April - 2001-12-08

Logged In: YES
user_id=392739

This is due to how the cookie is getting set. It is not
set with the path parameter. You will need to modify
backend.php. The login function calls setcookie, but does
not specify the path, so just modify it to include the path
of "/".

setcookie("authlib", "$username:$hash:$id", time()
+3600, "/");

You will also need to add the domain if you are using
multiple hosts and want the cookie to be available. i.e.
www.domain.com and store.domain.com. In this case, you
will want to modify setcookie as follows.

setcookie("authlib", "$username:$hash:$id", time()
+3600, "/", ".domain.com");

Hope this helps.

Jeff