Sorry but i dont get what you mean.
Your saying i dont have that function in function.php..
But what do you mean by this? Am i looking for something in particular that i need to change?
If your on about are the lines from add_to_functions.php in functions.php - Yes i have done that step!
Here is the ending of the functions.php file
PHP Code:
// update user table from session table in bulk
mt_srand ((double) microtime() * 1000000);
if (mt_rand(1,100)=='50') {
$oldsessions=$DB_site->query("SELECT userid,lastactivity FROM session WHERE lastactivity<'".(time()-$cookietimeout)."'");
while ($oldsession=$DB_site->fetch_array($oldsessions)) {
$DB_site->query("UPDATE user SET lastactivity=$oldsession[lastactivity] WHERE userid=$oldsession[userid] AND lastactivity<$oldsession[lastactivity]");
}
$DB_site->query('DELETE FROM session WHERE lastactivity<'.(time()-$cookietimeout));
//searches expire after a week:
$DB_site->query("DELETE FROM search WHERE dateline<".(time()-(7*24*60*60)));
}
// bye bye!
}
if (!$noshutdownfunc) {
register_shutdown_function("doshutdown");
}
// ###################### Start archive_nopermission ####################### function archive_nopermission() { global $headinclude,$headnewpm,$bburl,$bbtitle,$homeurl,$hometitle,$titleimage,$copyrighttext,$versionnumber; $metakeytags = ''; $headertitle = 'Message'; $pagetitle = '' . $bbtitle . ' Message'; $navbar = '' . $bbtitle . ' Archive'; $pagenav = ' '; $showforumbits = ''; $showthreadbits = ''; $showpostbits = 'You do not have permission to access this page.'; eval( 'dooutput( "' . gettemplate( 'archive' ) . '" );' ); exit; } // ###################### Start archivenavbar ####################### function archivenavbar( $id , $idtype='forum' , $highlightlast=1 ) { global $bbtitle,$bburl,$navbits,$navbar; $navbits = archivenav( $id , $idtype , $highlightlast ); $navbar = '' . $bbtitle . ' Archive > ' . $navbits; return $navbar; } // ###################### Start archivenav ####################### function archivenav( $id , $idtype='forum' , $highlightlast=1 ) { global $DB_site,$bburl,$threadcache; $code = ''; if ( $id != -1 ) { if ( $idtype == 'thread' ) { if ( !isset( $threadcache["$id"] ) ) { $getforumid = $DB_site->query_first(" SELECT forumid FROM thread WHERE threadid=$id "); } else { $getforumid['forumid'] = $threadcache["$id"]['forumid']; } $code = archivenav( $getforumid['forumid'] , 'forum' , 1 ); if ( $highlightlast ) { $code .= '' . $threadinfo['title'] . ''; } else { $code .= $foruminfo['title']; } } else { $foruminfo = getforuminfo( $id ); if ( $foruminfo['parentid'] != -1 ) { $code = archivenav( $foruminfo['parentid'] , $idtype , 1 ); } if ( strlen( $code ) > 0 ) { $code .= ' > '; } if ( $highlightlast ) { $code .= '' . $foruminfo['title'] . ''; } else { $code .= $foruminfo['title']; } } } return $code; } // ###################### Start archivepagenav ####################### function archivepagenav( $results , $address ) { global $perpage,$pagenumber; if ( $results <= $perpage ) { return; } $totalpages = ceil( $results / $perpage ); while ( $curpage++ < $totalpages ) { if ( $curpage == $pagenumber ) { $pagenav .= '[' . $curpage . ']'; } else { $pagenav .= ' ' . $curpage . ' '; } } $pagenav = 'Pages: ' . $pagenav; return $pagenav; }
?>