ok finally got this integrated with who's online. So now you will see what people are browsing when they are in archive along with thread title. Earlier it was shown as unknown location.
Might i add beforehand that this may NOT be the most optimized way of coding it. I did it in as less time as possible and it was working in the time i checked it. Maybe you can see the code and suggest changes if any to optimize.
lets start:
First plz determine the folder where you put this archive. eg in my case it was
search In your case the name may be different.
now in includes/functions_online
find
Code:
case 'index':
$userinfo['action'] = $vbphrase['viewing_index'];
$userinfo['where'] = "<a href=\"$vboptions[forumhome].php?$session[sessionurl]\">$vboptions[bbtitle]</a>";
break;
replace that with
PHP Code:
case 'index':
//start whos online mod by acers for easy archive
if(preg_match("/search/", $userinfo['location']))
{
$userinfo['action'] = 'In the Archives';
$userinfo['where'] = "<a href=\"search/index.php?$session[sessionurl]\">Viewing Archive Index</a>";
break;
}
//end whos online mod by acers for easy archive
$userinfo['action'] = $vbphrase['viewing_index'];
$userinfo['where'] = "<a href=\"$vboptions[forumhome].php?$session[sessionurl]\">$vboptions[bbtitle]</a>";
break;
replace
search with whatever is your folder name.
in the same file find
PHP Code:
else
{
// We were unable to parse the location
$userinfo['action'] = $vbphrase['viewing_index'];
$userinfo['where'] = "<a href=\"$vboptions[forumhome].php?$session[sessionurl]\">$vboptions[bbtitle]</a>";
}
underneath that add
after replacing search with whatever folder name you have
PHP Code:
//start whos online mod by acers for easy archive
if (preg_match("/search\/forum\/(\d*)-\d*/", $userinfo['location'], $tester))
{
global $DB_site;
$titlefor = $DB_site->query("
SELECT forum.title as title
FROM " . TABLE_PREFIX . "forum AS forum
WHERE forum.forumid = " . intval($tester[1]) . "
");
$titleofforum = $DB_site->fetch_array($titlefor);
$fortitle = $titleofforum['title'];
$userinfo['action'] = 'Viewing forums archive';
$userinfo['where'] = "<a href=\"search/forum/$tester[1]-1.html\">$fortitle</a>";
}
if (preg_match("/search\/topic\/(\d*)-\d*/", $userinfo['location'], $tester1))
{
global $DB_site;
$titlethrd = $DB_site->query("
SELECT thread.title as title
FROM " . TABLE_PREFIX . "thread AS thread
WHERE thread.threadid = " . intval($tester1[1]) . "
");
$titleofthread = $DB_site->fetch_array($titlethrd);
$thrdtitle = $titleofthread['title'];
$userinfo['action'] = 'Viewing topic in archive';
$userinfo['where'] = "<a href=\"search/topic/$tester1[1]-1.html\"\">$thrdtitle</a>";
}
//end who's online mod by acers for easy archive
that should do it. Anyway i guess i am very new to modding so sorry beforehand if there are any errors here. :nervous: :nervous: