Jump to content

process page


beanieboy

Recommended Posts

You can use javascript or php for this. With php you would just redirect the user to another page basically you would assume 5 seconds before redirecting to the new page depending on the current system load if the system load is heavy you can increase that number.

 

page #1

header('Location: page2.php');

 

page #2

function waitTime()
{
    $baseWaitTime = 5; //secs
    list($loadavg_1min, $loadavg_5min, $loadavg_15min) = sys_getloadavg();
    if ($loadavg_1min > 80) {
        ..server is really busy..
    }
}

<meta http-equiv="Refresh" content="<?php print waitTime(); ?>; url=page3.php" />

 

page #3

..actual page..

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.