forked from science-ation/science-ation
7 lines
271 B
PHP
7 lines
271 B
PHP
<?
|
|
exec("nice 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");
|
|
exit;
|
|
?>
|