|
There is not a change between 4.8.6 and 4.8.5 for that file other than I resubmitted the same bugfix so edit adm-backup.php and change this
Try changing this line
print "Path to mysqldump: <i>$mysqldumpcmd/mysqldump</i><br />";
to this
print "Path to mysqldump: <i>{$Globals['mysqldumppath']}</i><br />";
then this line
$dumpcmd = "$mysqldumppath --opt -h $host -u$mysql_user -p$mysql_password $database ";
to this
$dumpcmd = "{$Globals['mysqldumppath']} --opt -h $host -u$mysql_user -p$mysql_password $database ";
|