see
functions.inc.php file. Note the two “/2″ additions.
Change:
// set max string size before writing to file
if (@ini_get(“memory_limit”)) $max_size=900000*ini_get(“memory_limit”);
else $max_size=$PMBP_SYS_VAR['memory_limit'];
To:
// set max string size before writing to file
if (@ini_get(“memory_limit”)) $max_size=900000*ini_get(“memory_limit”)/2;
else $max_size=$PMBP_SYS_VAR['memory_limit']/2;
SourceForge.net: Detail: 1774361 – Memory Exhasted Bug Fix Suggestion
+
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″;
http://errerrors.blogspot.com/2007/09/php-fatal-error-maximum-execution-time.html
