The error message “Fatal error: Maximum execution time of 60 seconds exceeded” in Magento indicates that a PHP script on your website has taken longer than the server’s specified time limit to complete. This can happen when performing resource-intensive tasks such as importing large amounts of data, processing large orders, or running complex queries.
To resolve this issue, you can increase the maximum execution time limit for PHP scripts on your server. Here are the steps to do so:
max_execution_time = 180
Once you have completed these steps, the maximum execution time limit for PHP scripts on your server should be increased. This should prevent the “Maximum execution time exceeded” error from occurring again.