Resources

gmaister22

Active member
Hey there, want to add http://xenforo.com/community/threads/8wayrun-com-xenporta-portal.7586/ (XenPortal) on my forum, but i also run a shoutbox

and i also use those addons:
QbW


do you think the resources would be too many for a shared host?
 
do you think the resources would be too many for a shared host?

I don't know how many resources those addons use. But the more important question when it comes to server capacity is how many concurrent users are on your forum at any given time. Shared servers usually support anywhere from 20-50 concurrent users.
 
You can enable debug mode which will display load stats at the bottom of each forum page. Add this line to your library/config.php file:

Code:
$config['debug'] = 1;

Then you can check the load stats with and without addons.
 
i wouldnt leave public developer mode turned on for any extended amount of time as it eats resources itself.
you can enable dev mode for yourself only:
Code:
# enable debug for myself
if ($_SERVER['REMOTE_ADDR'] == 'your.ip.address.here')
{
    $config['debug'] = true;
}
the load stats you have listed arent encouraging. what page is that copied from?
my xf is running quite a few addons as well:
(forum home) Timing: 0.0713 seconds Memory: 3.276 MB DB Queries: 19
 
i wouldnt leave public developer mode turned on for any extended amount of time as it eats resources itself.
you can enable dev mode for yourself only:
Code:
# enable debug for myself
if ($_SERVER['REMOTE_ADDR'] == 'your.ip.address.here')
{
    $config['debug'] = true;
}
the load stats you have listed arent encouraging. what page is that copied from?
my xf is running quite a few addons as well:
(forum home) Timing: 0.0713 seconds Memory: 3.276 MB DB Queries: 19

hey buddy, the ip will always change on a restart and it copied from forum home
 
Top Bottom