PHP Fatal error: Maximum execution time of 60 seconds exceeded in {phpMyBackupPro}\functions.inc.php [ phpMyBackupPro v2.1]


Solution: To increase the execution time of PHP, You can modify the {phpMyBackupPro}\global_conf.php

Original code
$CONF['timelimit']="60";


Modified code
$CONF['timelimit']="600";


Condition:
- Comments
"phpMyBackup Pro is a web-based MySQL backup application, licensed under the GNU GPL. You can create scheduled backups, manage and restore them, download or email" (Quoted from official website)

The process of backing up the MySQL took too much time. The backup email could not sent successfully.

- Error logs
(located at {phpMyBackupPro}\phplog.txt if you enable the PHP error logging):

* PHP Fatal error: Maximum execution time of 60 seconds exceeded in {phpMyBackupPro}\functions.inc.php on line 672
* PHP Notice: Undefined index: SCRIPT_FILENAME in {phpMyBackupPro}\definitions.php on line 65

留言