{% include 'admin/partials/header.html' %} {% include 'admin/partials/sidebar.html' %}
DATA PROTECTION

Backup Manager

Create portable database snapshots, verify their integrity, download them, and manage retention.

Database Replication

Create database backup

Exports all NexusForum tables into a compressed portable snapshot stored outside the public web root.

Available backups

Verification compares the stored SHA-256 checksum against the file on disk.

{% if count($backups)===0 %}

No backups yet

Create the first database snapshot above.

{% else %}
{% foreach $backups as $backup %}{% endforeach %}
BackupDriverTables / RowsSizeStatusCreatedActions
{{ $backup['label'] }}{{ $backup['filename'] }}{{ strtoupper($backup['driver']) }}{{ $backup['table_count'] }} / {{ $backup['row_count'] }}{{ round($backup['file_size']/1024,1) }} KB{{ $backup['status'] }}{{ $backup['created_at'] }}{{ $backup['creator_name']?:'System' }}
Download
{% endif %}
{% include 'admin/partials/footer.html' %}