got following error message after click the "backup this drupal installation." button, folder permission should not be a problem:
backup_database(): Command 'mysqldump -u root -h localhost -ppassword drupal |gzip >/tmp/drupal-backup-db-BF0TDp ' returned value: 127
Comments
Comment #1
dmuth commentedAn exit code of 127 means "command not found".
I'm pretty sure that backup checks to see if each of these commands can be run before attempting to run them, but I will audit the code later tonight and get back to you on whether that is truly the case or not.
-- Doug
Comment #2
dmuth commentedOkay, I just fixed this by adding a call to is_executable() for each binary.
The new package should get made within 24 hours. Once that happens, you can run it and the module will display a more detailed message about which file is not executable. From there, you'll need to ask the sysadmin of the machine to allow execution on that file.
-- Doug