PHP Fatal erro 
asked by Not Registered on 6 July 2008 1:07
Fatal error: Maximum execution time of 10 seconds exceeded in /home/a3627172/public_html/File/classes/http.php on line 220
Answers
You have a time limit for script execution. Your script exceeded this time limit.
You can try to set an own time limit using the function:
set_time_limit() e.g.:
<?php
set_time_limit(30); //extend it to 30 seconds
In most cases this won´t work because it is forbidden by your webserver-configuration to override the setting.
Ask your provider to kindy raise the max_execution_time directive in php.ini
HTH, Max
You can try to set an own time limit using the function:
set_time_limit() e.g.:
<?php
set_time_limit(30); //extend it to 30 seconds
In most cases this won´t work because it is forbidden by your webserver-configuration to override the setting.
Ask your provider to kindy raise the max_execution_time directive in php.ini
HTH, Max
answered by Not Registered on 14 July 2008 16:56
source: http://de.php.net/manual/de/function.set-time-limit.php
source: http://de.php.net/manual/de/function.set-time-limit.php
- What is: Failed opening 'includes/languages/english/' for inclusion , Not Registered
- php make install fails, Not Registered
- Warning: Missing Argument and other stuff, Not Registered


















