
Originally Posted by
mach
I have the mysql backup utility installed on version 1.2.6 and it all worked fine for months.
I did a backup on 5 Aug, now I get this error code.
Result code: 127
ERROR: Could not locate the MYSQLDUMP backup utility. BACKUP FAILED.
the path to MYSQLDump is correct.
Sounds like your webhost changed something on the server between now and your last successful backup (via this method).
You need to talk to your host to determine the new location of the "mysqldump" and "mysql" binaries, and then update the settings in the language file:
/admin/includes/languages/english/backup_mysql.php
Code:
// define the locations of the mysql utilities. Typical location is in '/usr/bin/' ... but not on Windows servers.
// try 'c:/mysql/bin/mysql.exe' and 'c:/mysql/bin/mysqldump.exe' on Windows hosts ... change drive letter and path as needed
define('LOCAL_EXE_MYSQL', '/usr/bin/mysql'); // used for restores
define('LOCAL_EXE_MYSQLDUMP', '/usr/bin/mysqldump'); // used for backups