Hey everyone, im parsing a large file that keep aborting after about 2 minutes. it is such a pain because i have to keep refreshing the page, and it ends up taking the whole day to parse one file. The file im parsing is about 250MB
I have been playing around with my php.ini file to take off the php script process time limit, but nothing seems to work. here is my current php.ini file:
what changes should i make to keep my parsing from stopping?
many thanks!
I have been playing around with my php.ini file to take off the php script process time limit, but nothing seems to work. here is my current php.ini file:
Code:
register_globals = off
allow_url_fopen = off
set_time_limit(0)
expose_php = Off
max_input_time = 86440
max_execution_time = 86440
variables_order = "EGPCS"
extension_dir = ./
upload_tmp_dir = /tmp
precision = 12
SMTP = relay-hosting.secureserver.net
url_rewriter.tags = "a=href,area=href,frame=src,input=src,form=,fieldset="
[Zend]
zend_extension=/usr/local/zo/ZendExtensionManager.so
zend_extension=/usr/local/zo/4_3/ZendOptimizer.so
what changes should i make to keep my parsing from stopping?
many thanks!







