X-Git-Url: https://git.p6c8.net/jirafeau_mojo42.git/blobdiff_plain/1394469c06e6908e6e77b48718ce6664db23407c..a995e194d8f5e997cfc1032389497a9f20b7d7e3:/script.php diff --git a/script.php b/script.php index ad354a5..25548e6 100755 --- a/script.php +++ b/script.php @@ -33,6 +33,11 @@ require (JIRAFEAU_ROOT . 'lib/lang.php'); global $script_langages; $script_langages = array ('bash' => 'Bash'); +/* Operations may take a long time. + * Be sure PHP's safe mode is off. + */ + set_time_limit(0); + if ($_SERVER['REQUEST_METHOD'] == "GET" && count ($_GET) == 0) { require (JIRAFEAU_ROOT . 'lib/template/header.php'); @@ -485,11 +490,11 @@ elseif (isset ($_GET['init_async'])) break; } echo jirafeau_async_init ($_POST['filename'], - $type, - isset ($_POST['one_time_download']), - $key, - $time, - $_SERVER['REMOTE_ADDR']); + $type, + isset ($_POST['one_time_download']), + $key, + $time, + $_SERVER['REMOTE_ADDR']); } /* Continue an asynchronous upload. */ elseif (isset ($_GET['push_async']))