Quote:
Originally Posted by AndrewD
If it's your php.ini settings, try looking at the section
PHP Code:
;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;
max_execution_time = 30 ; Maximum execution time of each script, in seconds
max_input_time = 60 ; Maximum amount of time each script may spend parsing request data
memory_limit = 8M ; Maximum amount of memory a script may consume (8MB)
|
Thanks Andrew... I actually thought that was it and I replaced the Values to
-----------------------------------------------------
max_execution_time = 0 ; Maximum execution time of each script, in seconds
max_input_time = 0 ; Maximum amount of time each script may spend parsing request data
----------------------------------
As well as used set_timeout = 0 on top of the php.ini
and it works like a charm.. Again.. Thank you for the hack and the support.. Awesome man!@