What does this do?
AutoBackup remotly downloads your MySQL database and stores it into a .sql file every (user defined) minutes.
The application wont start?
Make sure to have set the right php.exe (default is C:\xampp\php\php.exe)
What OS's does this work on?
Every OS that supports PHP.
Is there a limit on how big my database can be?
No, there is not a limit.
Can you choose wich tables you would like to backup?
No, you can choose what tables you would like to ignore (not include) in the backup.
You can set it in AutoBackup.php variable $mysql_ignore. Seperate them by comma (,)
Example: chatlogs,table1,table2 and so on.
I recommed to just remove completely useless tables like chatlogs cus it takes a lot of space and is not really needed!
How do i find my PHP folder?
1. Create a page called phpinfo.php or test.php or whatever you want to call it
2. Put this code in:
PHP Code:
<?php
phpinfo();
?>
3. Click Ctrl + F in your browser and search for
Loaded Configuration File
4. Copy that (Example: C:\xampp\php\php.ini)
5. Replace php.ini with php.exp
6. Thats your correct folder, open up AutoBackup.bat and replace the default with yours.