Quote:
Originally Posted by nicedreams
I said I did that. I made sure I refreshed my page enough so if the cookie was working there, it wouldn't time out. But when I go back to the forums, it had. They are on the same domain. The page is in the root dir above forums.
Does global.php call vbsetcookie when it is included? If it does, how can I check for error messages that are not shown?
Jim
|
There's some changes in
init.php regarding the NOSHUTDOWNFUNC. Take a look in
init.php. Look for this around line 202.
PHP Code:
if (PHP_VERSION < '5' OR ((SAPI_NAME == 'cgi' OR SAPI_NAME == 'cgi-fcgi') AND $vbulletin->options['gzipoutput'] AND strpos($_SERVER['SERVER_SOFTWARE'], 'Microsoft-IIS') !== false))
If your on php 4 you need to make some changes to the if statement above, change "
PHP_VERSION < '5'" to "
PHP_VERSION < '4'" or so. To test things out you can check out the
sessions table, look for your own sessions and see if the
lastactivity changes when browsing nonvb-pages.
I've had similair problems when trying to include vbuserinfo on nonvb pages. Now everything works fine, but i'm not satisfied. I'm trying to figure out how to include vbuserinfo, update sessions and cookies without including global.php. There is to much complexity in the vb environment and i want to eliminate any overhead by not including/using any more than strictly necessary :disappointed:
Goodluck,
Hidjra