View Single Post
Old February 3rd, 2005, 01:58 PM   #4 (permalink)
Chuck S
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 71,689
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 ";
__________________
Photopost Developer and Support Engineer

Please do not PM me for support or sales questions. Thank you for your understanding.
Chuck S is offline   Reply With Quote