Welcome Guest, Not a member yet? Register   Sign In
Memory Limit Help!
#4

[eluser]CroNiX[/eluser]
Looks like you are hitting php's max_execution_time setting for the script to run. 300 seconds (default time limit) is 5 minutes which might not be long enough to process all of the images.

Try setting a higher time limit for this script to run. At the top of this function/method, try something like:
Code:
set_time_limit(600); //10 minutes max

You can guess how long it needs to run based on how many didn't get converted before it errors out. Like it processed 500 of 1000 images, so you should probably, minimally, double the time it needs.

It sounds like this only needs to be run once to convert everything and won't be used again, correct?


Messages In This Thread
Memory Limit Help! - by El Forum - 12-11-2013, 04:57 AM
Memory Limit Help! - by El Forum - 12-11-2013, 11:19 AM
Memory Limit Help! - by El Forum - 12-11-2013, 12:54 PM
Memory Limit Help! - by El Forum - 12-11-2013, 01:05 PM
Memory Limit Help! - by El Forum - 12-11-2013, 01:08 PM
Memory Limit Help! - by El Forum - 12-11-2013, 01:27 PM
Memory Limit Help! - by El Forum - 12-11-2013, 01:53 PM
Memory Limit Help! - by El Forum - 12-11-2013, 02:24 PM
Memory Limit Help! - by El Forum - 12-11-2013, 02:42 PM



Theme © iAndrew 2016 - Forum software by © MyBB