Quote:
Originally Posted by MarcoH64
Just include global.php on your page, all will be handled automatic.
|
That does not work. I called global.php with
PHP Code:
chdir('forums');
require_once('global.php');
The page loads correctly, so it was able to load and access global. I printed the vbulletin array and it was there.
But just including this file does not update anything with the cookie or session.
I went from the forum home to my page, waited for the cookie to timeout, reloaded my page a few times, then went to the forum home and I was no longer logged in.
Jim
Ok, so I tried to use the vbsetcookie function. I'm not sure how it works, or can find any info about it. But with this entered:
PHP Code:
vbsetcookie('sessionhash', $sessionhash,0);
It updates the lastactivity and location field in the session table, but it displays an error message of "Unable to add cookies, header already sent."
What does that error message mean? Am I not calling the vbsetcookie function correctly?
Jim