Using a maximum time limit of 5 minutes instead of infinite
authorAlexander Ebert <ebert@woltlab.com>
Fri, 27 Sep 2013 16:07:00 +0000 (18:07 +0200)
committerAlexander Ebert <ebert@woltlab.com>
Fri, 27 Sep 2013 16:07:00 +0000 (18:07 +0200)
Anyway, using an "infinite" time limit is not that infinite as all, an infinite loops usually hits the memory limit pretty quick.

Fixes #1511

wcfsetup/install/files/lib/system/WCF.class.php

index f099744e7e000bc968d99ce66ad8e5a7b351d511..8ff2322b5e325c6ad96e1c557f8580778c45f02e 100644 (file)
@@ -27,8 +27,8 @@ use wcf\util\ClassUtil;
 use wcf\util\FileUtil;
 use wcf\util\StringUtil;
 
-// try to disable execution time limit
-@set_time_limit(0);
+// try to set a time-limit of 5 minutes
+@set_time_limit(300);
 
 // fix timezone warning issue
 if (!@ini_get('date.timezone')) {