From: <var...@us...> - 2015-01-29 17:40:57
|
Revision: 9501 http://sourceforge.net/p/phpwiki/code/9501 Author: vargenau Date: 2015-01-29 17:40:50 +0000 (Thu, 29 Jan 2015) Log Message: ----------- We may need a lot of memory and time for the dump Modified Paths: -------------- trunk/lib/ziplib.php Modified: trunk/lib/ziplib.php =================================================================== --- trunk/lib/ziplib.php 2015-01-28 16:49:18 UTC (rev 9500) +++ trunk/lib/ziplib.php 2015-01-29 17:40:50 UTC (rev 9501) @@ -699,6 +699,10 @@ // references. function ParseMimeifiedPages($data) { + // We may need a lot of memory and time for the dump + ini_set("memory_limit", -1); + ini_set('max_execution_time', 0); + if (!($headers = ParseRFC822Headers($data)) || empty($headers['content-type']) ) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |