View Single Post
Old December 29th, 2004, 10:59 AM   #13 (permalink)
Chuck S
Photopost Developer
Verified Customer
 
Chuck S's Avatar
 
Join Date: Jun 2002
Location: Abingdon,MD
Posts: 68,021
Firstrebel


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