DexterII
Fri 12th Jul '02, 5:25am
I've found in the URL if you change the postsperpage or results perpage ... the 'perpage' variable to like 2000 it really stalls the server because if in a post with like 2000 replies it gets them all. Perhaps putting something like
Made a better example :)
<?php
$perpage=$HTTP_GET_VARS['perpage'];
if ($perpage > $perpagelimit) {
$perpage=$perpagelimit;
}
?>
Kinda bad example but I hope ya get the point....
Made a better example :)
<?php
$perpage=$HTTP_GET_VARS['perpage'];
if ($perpage > $perpagelimit) {
$perpage=$perpagelimit;
}
?>
Kinda bad example but I hope ya get the point....