How to increase max execution time?

I am using unbuntu 18. how do I edit max execution time to 3000?

1 Reply

You can set max_execution_time = 3000 in php.ini. To find the location of php.ini, you can run this:

php -i | grep 'php.ini'

To confirm your settings, create and check an info page with the following code:

<?php phpinfo(); ?>

Reply

Please enter an answer
Tips:

You can mention users to notify them: @username

You can use Markdown to format your question. For more examples see the Markdown Cheatsheet.

> I’m a blockquote.

I’m a blockquote.

[I'm a link] (https://www.google.com)

I'm a link

**I am bold** I am bold

*I am italicized* I am italicized

Community Code of Conduct