0

In php.ini I have set "max_execution_time = 1200", phpinfo() confirms that, but my script stops after 300 seconds with message:

"PHP Fatal error: Maximum execution time of 300 seconds exceeded"

Nginx fastcgi_read_timeout is also set to 1200, however I think its more php issue. How to fix that problem?

edit:

It was CodeIgniter framework - it was setting max_execution_time to 300. Thank you for help. :)

1
  • If you echo ini_get('max_execution_time'); from within the script does it output 300 or 1200? I'm just wondering if for some reason your script is using another ini file or no ini file. Commented Sep 28, 2011 at 8:58

1 Answer 1

1

Make sure that you didn't use set_time_limit in your PHP code.

You must log in to answer this question.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.