Jump to content

maximum execution time redirection


daydreamer

Recommended Posts

I have a script that logs into a website, sometimes it takes longer than 30 seconds to execute.

 

When this happens I get the error

Fatal error: Maximum execution time of 30 seconds exceeded

 

How do I run the script, and if it is running for longer than 30 seconds redirect/run another script?

 

I have looked at the function set_time_limit (), but it has no redirect.

 

Any ideas?

 

Link to comment
https://forums.phpfreaks.com/topic/128532-maximum-execution-time-redirection/
Share on other sites

Set your set_time_limit() to something like 45 seconds.

 

Have a HTML meta refresh set up for 30 seconds on your page that redirects to whatever the next page is you want to run a script from.

 

If you want to do this, you have to flush the output buffer. Look up the flush() function ( User contrib is great, as there are some special measures you have to take in order for it to work with all browsers )

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.