I am using unbuntu 18. how do I edit max execution time to 3000?
You can set max_execution_time = 3000 in php.ini. To find the location of php.ini, you can run this:
max_execution_time = 3000
php -i | grep 'php.ini'
To confirm your settings, create and check an info page with the following code:
<?php phpinfo(); ?>
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