I've got the following line in backup.php
print_input_row($vbphrase['path_and_file_to_save_backup_to'], 'filename', 'E:\Backups\forums\forumbackup-' . vbdate(str_replace(array('\\', '/', ' '), '', $vboptions['dateformat']), TIMENOW) . '.sql', 0, 60);
which if used today would create:
E:\Backups\forums\forumbackup-28thJanuary2005.sql
I'd like to change this so that the backup file names are stored in a better order of
E:\Backups\scene-OUT.com\forums\forumbackup-20050128.sql
If that's not possible then I'll settle for E:\Backups\scene-OUT.com\forums\forumbackup-2005January28.sql
print_input_row($vbphrase['path_and_file_to_save_backup_to'], 'filename', 'E:\Backups\forums\forumbackup-' . vbdate(str_replace(array('\\', '/', ' '), '', $vboptions['dateformat']), TIMENOW) . '.sql', 0, 60);
which if used today would create:
E:\Backups\forums\forumbackup-28thJanuary2005.sql
I'd like to change this so that the backup file names are stored in a better order of
E:\Backups\scene-OUT.com\forums\forumbackup-20050128.sql
If that's not possible then I'll settle for E:\Backups\scene-OUT.com\forums\forumbackup-2005January28.sql
Comment