Ask Your Question
3

In Laravel Unit Test, how can the PHP Fatal error of exceeding the maximum execution time of 600 seconds be resolved?

asked 2021-10-06 11:00:00 +0000

lakamha gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2022-12-31 17:00:00 +0000

nofretete gravatar image

The PHP Fatal error of exceeding the maximum execution time of 600 seconds can be resolved in Laravel Unit Test by increasing the maximum execution time limit in the php.ini file or in the .htaccess file.

To increase the maximum execution time limit, follow the below mentioned steps:

  1. Open the php.ini file in the editor.

  2. Search for the below line of code and replace the value with the desired time limit.

    max_execution_time = 600

  3. Save and close the file.

  4. If this does not work, you can also increase the time limit through the .htaccess file by adding the following line of code.

    php_value max_execution_time [desired time limit]

  5. Save and close the file.

After making the changes, restart the web server to apply the changes.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2021-10-06 11:00:00 +0000

Seen: 9 times

Last updated: Dec 31 '22