Hi everyone,
I have making a website where I use the vbulletin as the backbone.
All my non-vbulletin pages includes:
PHP Code:
$curdir = getcwd ();
chdir('/home/myaccount/public_html/my-website.com/forum');
require_once('/home/myaccount/public_html/my-website.com/forum/global.php');
chdir ($curdir);
if($vbulletin->userinfo['userid'] < 1){
header("Location: login.php");
exit();
}
How can I make it, so that if you are browsing the website (the non-vbulletin pages) you won't get logged out automatically due to "inactivity"?
I hope I make sense.
Thanks!
--------------- Added [DATE]1309732944[/DATE] at [TIME]1309732944[/TIME] ---------------
No one? Can this even be done?