forked from science-ation/science-ation
b65316c32e
Dont let it start running if its already going Properly handle the text when its done running
6 lines
260 B
PHP
6 lines
260 B
PHP
<?
|
|
exec("php judges_sa.php >/dev/null 2>&1 &");
|
|
usleep(1000000); // 1 second to allow the judges_sa to update the % status to 0% otherwise the status page will think its not running if it gets there too soon
|
|
header("Location: judges_scheduler_status.php");
|
|
?>
|