]> git.p6c8.net - jirafeau_mojo42.git/commitdiff
Fix some bugs due to PHP's max_execution_time
authorJerome Jutteau <mojo@couak.net>
Thu, 14 Feb 2013 13:44:32 +0000 (13:44 +0000)
committerJerome Jutteau <mojo@couak.net>
Thu, 14 Feb 2013 13:44:32 +0000 (13:44 +0000)
admin.php
file.php
script.php

index bf61e6d5ee58e787244eb2d747ecfff3e345084e..2fd8d2920349050c2b36242b8df1130cc06eb51d 100755 (executable)
--- a/admin.php
+++ b/admin.php
@@ -107,6 +107,11 @@ elseif (!isset ($_SESSION['admin_auth']) || $_SESSION['admin_auth'] != true)
     exit;
 }
 
+/* Operations may take a long time.
+ * Be sure PHP's safe mode is off.
+ */
+ set_time_limit(0);
+
 /* Admin interface. */
 require (JIRAFEAU_ROOT . 'lib/template/header.php');
 ?><h2><?php echo t('Admin interface'); ?></h2><?php
@@ -266,4 +271,4 @@ if (isset ($_POST['action']))
 
 require (JIRAFEAU_ROOT.'lib/template/footer.php');
 
-?>
\ No newline at end of file
+?>
index 17ef381a5a01c5e3691877c48de9b9ea81b01de4..710ce3d36529d5e78d4f210d1cf41ea6c54f30c9 100644 (file)
--- a/file.php
+++ b/file.php
@@ -30,6 +30,11 @@ if (!isset ($_GET['h']) || empty ($_GET['h']))
     exit;
 }
 
+/* Operations may take a long time.
+ * Be sure PHP's safe mode is off.
+ */
+ set_time_limit(0);
+
 $link_name = $_GET['h'];
 
 if (!preg_match ('/[0-9a-zA-Z_-]{22}$/', $link_name))
index 396538ccc0a86ad9060680b3eac5dd264b482fbd..25548e6031ebe9eb546cb292ff3608e00a3a1056 100755 (executable)
@@ -33,6 +33,11 @@ require (JIRAFEAU_ROOT . 'lib/lang.php');
  global $script_langages;\r
  $script_langages = array ('bash' => 'Bash');\r
 \r
+/* Operations may take a long time.\r
+ * Be sure PHP's safe mode is off.\r
+ */\r
+ set_time_limit(0);\r
+\r
 if ($_SERVER['REQUEST_METHOD'] == "GET" && count ($_GET) == 0)\r
 {\r
     require (JIRAFEAU_ROOT . 'lib/template/header.php');\r

patrick-canterino.de