I am back... I have one more suggestion that I just did for my site...
Why don't we split the CRON job to two seperate activities? What I did was modified the part of the cron file as in this modification that says:
PHP Code:
// WOL
if ($vbulletin->options['wmp_wol'])
{
$wmp->plot('wol');
$wmp->output();
}
// Members
if ($vbulletin->options['wmp_members'])
{
$wmp->plot('members');
$wmp->output();
}
And I removed the following:
PHP Code:
// Members
if ($vbulletin->options['wmp_members'])
{
$wmp->plot('members');
$wmp->output();
}
Then I created a seperate Cron file where I did the opposite and I saved that as a CRON job!
Now, I have my server generate my Member Map once a day at a slow time (3AM) and the Who's online is generated every 15-minutes. Generating the map of who is online takes much less computing power then the member map!