Revision: 443
Author: kerphi
Date: 2006-04-17 08:11:09 -0700 (Mon, 17 Apr 2006)
ViewCVS: http://svn.sourceforge.net/phpfreechat/?rev=443&view=rev
Log Message:
-----------
remove memory limit
Modified Paths:
--------------
branches/0.x/contrib/pfcInstaller/createinstaller.php
Modified: branches/0.x/contrib/pfcInstaller/createinstaller.php
===================================================================
--- branches/0.x/contrib/pfcInstaller/createinstaller.php 2006-04-17 14:57:54 UTC (rev 442)
+++ branches/0.x/contrib/pfcInstaller/createinstaller.php 2006-04-17 15:11:09 UTC (rev 443)
@@ -1,4 +1,10 @@
<?php
+
+// on desactive le timeout car se script met bcp de temps a s'executer
+ini_set('max_execution_time', -1);
+// on desactive la limite de memoire car ce scrite peut manger bcp de memoire
+ini_set('memory_limit', -1);
+
if (version_compare(phpversion(), '5.0.0', '<')){
die("PHP5 is required for this verson of the installer devkit");
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|