Quote:
I already have a question =P
What does the 60 sec max exicution time mean for this exactly? Server-side script execution per page?
|
That's about right. You can set max_execution_time from within php.ini or depending on other security settings, set it directly in your script. see the manual for more info.
This shouldn't really effect your application - its really unusual for scripts to run pass 60 seconds (php execution stime), but it does happen. Its just a warning to help you keep you scripts as optomized as possible.
Stuart