Log in

View Full Version : Threaded mode cutoff for large thread


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.

Zylone
05-29-2004, 03:06 AM
First one to install :) Nice hack.

Zoodled
09-22-2004, 02:14 AM
Thanks, installed.