Okay..I've done Cron SQL backup every monday. So now, how do I have Cron Folder Backups every month (only 1 folder) ?
Btw, if anyone wants the cron backup for SQl code.
This backs it up with a file name called phpbb_sql_backup with the date.
Btw, if anyone wants the cron backup for SQl code.
| Code: |
| mysqldump --add-drop-table -u <username> -p<password> <dbname> > phpbb_sql_backup-$(date +1m1d1Y).sql |
This backs it up with a file name called phpbb_sql_backup with the date.
