Fatal error
hi
i am doing a ftp program in php.i want to get the name of files from a ftp server.i got it sometimes when the no: of file is small .but the following error occurs most of the time
Fatal error: Maximum execution time of 30 seconds exceeded in C:\Inetpub\wwwroot\x.php on line 84
# 1 Re: Fatal error
You can change the maximum execution time for php scripts in php.ini
;;;;;;;;;;;;;;;;;;;
; 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)