Hi,
I am doing a download of ten pages from the internet
and processing and storing the data.
The processing was timing out so I just changed the
max_execution_time from 30 to 120 seconds
and also the max_input_time.
After saving the php.ini file and re-opening it, it now reads:
;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;
max_execution_time = 120 ; Maximum execution time of each script, in seconds
max_input_time = 120 ; Maximum amount of time each script may spend parsing request data
memory_limit = 32M ; Maximum amount of memory a script may consume (16M😎
My script is still timing out.
Do I have to re-boot the server in order to apply these changes ?
Or maybe there is something wrong with my script !