Quote:
Originally Posted by Billspaintball
Have you tried the test login script in the troubleshooting section yet?
Also, can you post your pages code here so I see if there is anything obvious.
|
I just tried it and everything worked fine from the test page
I dont see what the difference is. But here is my code anyway
This is lines 144-159
PHP Code:
// +++++++++++++++++++++++++++++++++++++++++++++++++++
// we want do display stats either way so they go here
// +++++++++++++++++++++++++++++++++++++++++++++++++++
// get total number of threads and posts
$getstats = $db->query_read('SELECT threadcount, replycount FROM ' . TABLE_PREFIX . 'forum');
while ($forum = $db->fetch_array($getstats))
{
$totthreads += $forum['threadcount'];
$totposts += $forum['replycount'];
}
$totthreads = vb_number_format($totthreads);
$totposts = vb_number_format($totposts);
// display total threads and total posts - Uses vB phrases, but change if you like
echo"<br /> $vbphrase[threads]: $totthreads<br />$vbphrase[posts]: $totposts<br /> ";
That and i was wondering how to make it redirect right back to the home page, not to the forums, once you login