Log in

View Full Version : Anyone Know How To Change Forum Post Counts


club_krome
08-15-2002, 09:05 PM
does anyone know how to increase the # of posts and threads displayed on the home page

Xenon
08-15-2002, 10:32 PM
i don't see why you want to increas the post/thread count, but in your index.php you'll find this:
// get total posts
$countposts=$DB_site->query_first('SELECT COUNT(*) AS posts FROM post');
$totalposts=number_format($countposts['posts']);

$countthreads=$DB_site->query_first('SELECT COUNT(*) AS threads FROM thread');
$totalthreads=number_format($countthreads['threads']);

replace it with something like this:
// get total posts
$countposts=$DB_site->query_first('SELECT COUNT(*) AS posts FROM post');
$totalposts=number_format($countposts['posts']+xx);

$countthreads=$DB_site->query_first('SELECT COUNT(*) AS threads FROM thread');
$totalthreads=number_format($countthreads['threads']+yy);