bwein-net / contao-database-backup
Database Backup for Contao Open Source CMS
Fund package maintenance!
rabauss
Installs: 17 368
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 2
Open Issues: 0
Type:contao-bundle
Requires
- php: ^7.4 || ^8.0
- contao/core-bundle: ^4.13 || ^5.0
- symfony/config: ^5.4 || ^6.0
- symfony/dependency-injection: ^5.4 || ^6.0
- symfony/filesystem: ^5.4 || ^6.0
- symfony/finder: ^5.4 || ^6.0
- symfony/framework-bundle: ^5.4 || ^6.0
- symfony/http-foundation: ^5.4 || ^6.0
- symfony/http-kernel: ^5.4 || ^6.0
- symfony/routing: ^5.4 || ^6.0
- symfony/security-bundle: ^5.4 || ^6.0
- symfony/translation: ^5.4 || ^6.0
Requires (Dev)
- contao/manager-plugin: ^2.0
README
This Bundle provides a backend module to easily create and list backups of the contao database. The backups can be downloaded in the backend and backups can be created manually by backend users.
Please read the migration notes from version 1 below!
The console command bwein:database:backup
and cronjob listener were removed from the extension in version 2 because
Contao 4.13 includes a backup command - see: https://docs.contao.org/manual/en/cli/db-backups/
Installation
Install the bundle via Composer:
composer require bwein-net/contao-database-backup
Configuration
In the config/config.yml
you can add the following optional parameters:
# config/config.yml bwein_database_backup: cron_interval: 'daily'
The default of cron_interval
is null
- so no cron job is running.
You have to define it manually - see: https://docs.contao.org/manual/en/cli/db-backups/#have-backups-created-automatically
The option cron_interval
can be minutely
, hourly
, daily
, weekly
, monthly
, yearly
or a full CRON expression, like */5 * * * *
- see: https://docs.contao.org/dev/framework/cron/#using-service-tagging
Attention: Even if you define daily
as cron_interval
you need to specify the keep_max
and keep_intervals
of the core to have daily backups e.g.
# config/config.yml contao: backup: keep_max: 10 keep_intervals: ['1D', '2D', '3D', '4D', '5D', '6D', '7D', '14D', '1M']
Migration from version 1 to 2
Replace Configuration
The custom configuration bwein_database_backup
has to be removed from config/config.yml
.
Optionally, it can be replaced by the core configuration - see: https://docs.contao.org/manual/en/cli/db-backups/#configuration
Run Migration
The existing backups will be automatically moved from var/db_backups
to var/backups
with a migration by
running contao:migrate
or use the Contao Install Tool.
Change backup directory
If you use deploy tools like deployer that define shared dirs, you need to change the backup directory from var/db_backups
to var/backups
!
Add Cronjob
The cronjob listener has been removed so you have to add a manual daily routine:
0 4 * * * /path/to/system/vendor/bin/contao-console contao:backup:create
see: https://docs.contao.org/manual/en/cli/db-backups/#have-backups-created-automatically
Replace command usages
The command bwein:database:backup
has been removed so you need to replace the usages to contao:backup:create
-
see: https://docs.contao.org/manual/en/cli/db-backups/#contao-backup-create