Originally Posted by Lionel
When you mess up with sessions, you should warn people. For 6 weeks my online was messed up. I finally found out the reason. Your 'injournal' code does not belong in there!!!!!
-------------------------------
Open: /includes/functions.php
-------------------------------
Find:
global $bbuserinfo, $session, $foruminfo, $threadinfo, $calendarinfo, $permissions, $vboptions;
-------------------------------
Replace Above With:
global $bbuserinfo, $session, $foruminfo, $threadinfo, $calendarinfo, $journalinfo, $permissions, $vboptions;
-------------------------------
-------------------------------
Find:
$shutdownqueries['sessionupdate'] = str_replace('###REPLACE###', ',inforum = ' . intval($foruminfo['forumid']) . ', inthread = ' . intval($threadinfo['threadid']) . ', incalendar = ' . intval($calendarinfo['calendarid']) . ', badlocation = ' . intval($bbuserinfo['badlocation']), $shutdownqueries['sessionupdate']);
-------------------------------
Replace Above with:
$shutdownqueries['sessionupdate'] = str_replace('###REPLACE###', ',inforum = ' . intval($foruminfo['forumid']) . ', injournal = ' . intval($journalinfo['journal_id']) . ', inthread = ' . intval($threadinfo['threadid']) . ', incalendar = ' . intval($calendarinfo['calendarid']) . ', badlocation = ' . intval($bbuserinfo['badlocation']), $shutdownqueries['sessionupdate']);
-------------------------------
-------------------------------
Find:
$replace = array(
',inforum, inthread, incalendar, badlocation',
',' . intval($foruminfo['forumid']) . ', ' . intval($threadinfo['threadid']) . ', ' . intval($calendarinfo['calendarid']) . ',' . intval($bbuserinfo['badlocation'])
);
-------------------------------
Replace above with:
$replace = array(
',inforum, injournal, inthread, incalendar, badlocation',
',' . intval($foruminfo['forumid']) . ', ' . intval($journalinfo['journal_id']) . ', ' . intval($threadinfo['threadid']) . ', ' . intval($calendarinfo['calendarid']) . ',' . intval($bbuserinfo['badlocation'])
);
------------------------------
Save and upload /includes/functions.php
|