tamarian
05-28-2004, 10:00 PM
What this hack does Allows large forums to enable threaded mode without much impact on the server, and prevents php process crashes due to memory limit when viewing large threads in threaded mode.
I have tons of threads with 1,000+ replies which consumes a lot of memory, and even crashes the apache/php process when there are 10,000+ replies. So this hack is great if you're in the same boat.
Installation
In showthread.php:
Find
// ************************************************** *******************************
// get thread info
$thread = verify_id('thread', $threadid, 1, 1);
$threadinfo = &$thread;
Add after it:
// ************************************************** *******************************
//threaded mode cutoff limit hack
if ($thread['replycount'] > 999)
{
$threadedmode = 0;
$show['threadedmode'] = false;
$show['linearmode'] = true;
$show['hybridmode'] = false;
}
//end hack
You can further tune it by changing 999 to whatever you find more useful.
I have tons of threads with 1,000+ replies which consumes a lot of memory, and even crashes the apache/php process when there are 10,000+ replies. So this hack is great if you're in the same boat.
Installation
In showthread.php:
Find
// ************************************************** *******************************
// get thread info
$thread = verify_id('thread', $threadid, 1, 1);
$threadinfo = &$thread;
Add after it:
// ************************************************** *******************************
//threaded mode cutoff limit hack
if ($thread['replycount'] > 999)
{
$threadedmode = 0;
$show['threadedmode'] = false;
$show['linearmode'] = true;
$show['hybridmode'] = false;
}
//end hack
You can further tune it by changing 999 to whatever you find more useful.