Hi Guys,
I've finally got it fixed!
Just for anyone who has the same problem as I have, here how to fix the 20 post message limitation:
1. open the file named "infernoshout.php" under UPLOAD folder using Notepad editor
2. go down to where it says
Code:
# ------------------------------------------------------- #
# Display the messages
# ------------------------------------------------------- #
if ((empty($_REQUEST['do']) || $_REQUEST['do'] == 'messages'))
{
$charset = $vbulletin->userinfo['lang_charset'];
$charset = strtolower($charset) == 'iso-8859-1' ? 'windows-1252' : $charset;
@header('Content-Type: text/html; charset=' . $charset);
$infernoshout->load_engine('shout');
$shout =& new shout;
echo $infernoshout->fetch_shouts($shout, 20);
3. Change
Code:
echo $infernoshout->fetch_shouts($shout, 20);
To whatever long you want as
Code:
echo $infernoshout->fetch_shouts($shout, 100);
4. Save, Upload to your forum root, and overwrite the old one
That's all!