Howdy Doc,
I have been checking this site and couldn't find any problem with the backup directory or any of the settings on the server (checked with host).
I started looking at the code in the file backup_mysql.php .
Seems that this section is causing the issue.
Code:
// now let's display the backup/restore buttons below filelist
?>
<tr>
<td class="smallText" colspan="3"><?php echo TEXT_BACKUP_DIRECTORY . ' ' . DIR_FS_BACKUP; ?></td>
<td align="right" class="smallText">
<?php if ( ($action != 'backup') && (isset($dir)) && !get_cfg_var('safe_mode') && $dir_ok == true ) {
echo '<a href="' . zen_href_link(FILENAME_BACKUP_MYSQL, 'action=backup'.(($debug=='ON')?'&debug=ON':'')) . (($tables_to_export!='')?'&tables='.str_replace(' ',',',$tables_to_export):'') . '">' .
zen_image_button('button_backup.gif', IMAGE_BACKUP) . '</a> ';
}
if ( ($action != 'restorelocal') && isset($dir) ) {
echo '<a href="' . zen_href_link(FILENAME_BACKUP_MYSQL, 'action=restorelocal'.(($debug=='ON')?'&debug=ON':'')) . '">' .
zen_image_button('button_restore.gif', IMAGE_RESTORE) . '</a>';
} ?>
</td>
</tr>
With this code in particular " !get_cfg_var('safe_mode')" .
I changed it to " !ini_get('safe_mode')" . and all works fine.
Now, I'm not familiar with these two commands much. So, I'm still researching. But, all works fine, now.
Paul