Quote:
Originally Posted by mtha
Could you tell me what is in your /forums/includes/functions.php on line 1864
try: open the ORIGINAL functions.php file,
Look for
PHP Code:
$name = COOKIE_PREFIX . $name;
Replace with
PHP Code:
if ($name != 'sessionhash')
{
$name = COOKIE_PREFIX . $name;
}
It seems like you didnot assign value for GUEST
Did you edit the album's include/constants.php ?
Make sure that you have this lines:
PHP Code:
// User levels
define('GUEST', 0);
|
The GUEST value has been fixed. The problem was that when I changed it, it was like this:
// User Levels define('GUEST', 0);
So it couldn't of seen the guest value. ^_^
On line 1864 of functions.php, it has as follows (the edited one):
PHP Code:
$debughtml .= " (<a href=\"" . htmlspecialchars_uni(SCRIPTPATH) . iif(strpos(SCRIPTPATH, '?') '?')=== false, '?', '?','&') . "tempusage=1\">Template Usage</a>) (<a href=\"" . htmlspecialchars_uni(SCRIPTPATH) . iif(strpos(SCRIPTPATH, '?') '?')=== false, '?', '?','&') . "explain=1\">Explain</a>)<br />\n";
When I do the edit on the original code, it works fine. I'm guessing a hack that I have installed is conflicting with the integration?