This program automatically creates MySQL database backups.
-
Edit
config.php
to add your database configuration:$host = "localhost"; $user = "database_user"; $password = "database_password"; $database = "database_name";
-
Edit
nmail.php
to add your email details:$sender_email = "from@website.com"; $recipient_email = "email@website.com";
-
Visit the URL where you placed
index.php
, like:
You can use Cron Jobs to automate backups:
0 * * * * wget https://yourwebsite.com/MySQL-Auto-Backup/index.php
0 * * * * wget https://yourwebsite.com/MySQL-Auto-Backup/nmail.php