Re: Auto MySQL database backup
Re: Auto MySQL database backup
Quote:
Originally Posted by
mohje
Nealty ! Top
Should be up now, btw guys there is a like and rep button if you liked the release :)
Re: Auto MySQL database backup
May i just point out that the download link is down.
Re: Auto MySQL database backup
Quote:
Originally Posted by
Clawed
May i just point out that the download link is down.
The download link is working perfectly fine.
Re: Auto MySQL database backup
Thanks for this Oleaa.
Too many users dont backup their databases and then cry when it goes wrong and they loose all their users. Theres no excuse now! lol.
Will
Auto MySQL database backup
Use a crontab instead of keeping the process running your wasting cycles and memory :)
Re: Auto MySQL database backup
Quote:
Originally Posted by
Jordan
Use a crontab instead of keeping the process running your wasting cycles and memory :)
Poor visitor that triggers the cron, its gonna take ages from them toload up:/ But I do get your point
Auto MySQL database backup
Quote:
Originally Posted by
Oleaa
Poor visitor that triggers the cron, its gonna take ages from them toload up:/ But I do get your point
Use a unix crontab not a PHP one.
Re: Auto MySQL database backup
How can I make it work when the file path contains a space? :L
Re: Auto MySQL database backup
Quote:
Originally Posted by
r63
How can I make it work when the file path contains a space? :L
You should replace the space with underscore (_)
Re: Auto MySQL database backup
Quote:
Originally Posted by
Jordan
Use a unix crontab not a PHP one.
Nobody except for people knowing what they are doing is running their hotels on Linux. For example im running it on 3 servers. Kind of fun.... We all know that linux is way more stable, and your database is much safer on a linux machine... Well some of us do...
Good advice btw,,,
Code:
1 3 * * * root /usr/bin/php PATHTOPHPFILE
1 3 * * * root /usr/bin/php /usr/local/bin/mySQLbackup.php
Good luck.
Quote:
Originally Posted by
Oleaa
You should replace the space with underscore (_)
%20 is space char
Example:
"c:\program%20files\backups\open%20backup%20file.bat"
Make sure thats between these 2 chars; " "
instead of:
C:\program files\backups\open backup file.bat
~~ Mikey
Re: Auto MySQL database backup
Re: Auto MySQL database backup
Quote:
Originally Posted by
Mister. M
Nobody except for people knowing what they are doing is running their hotels on Linux. For example im running it on 3 servers. Kind of fun.... We all know that linux is way more stable, and your database is much safer on a linux machine... Well some of us do...
Good advice btw,,,
Code:
1 3 * * * root /usr/bin/php PATHTOPHPFILE
1 3 * * * root /usr/bin/php /usr/local/bin/mySQLbackup.php
Good luck.
%20 is space char
Example:
"c:\program%20files\backups\open%20backup%20file.bat"
Make sure thats between these 2 chars; " "
instead of:
C:\program files\backups\open backup file.bat
~~ Mikey
I also run my MySQL and HTTP on Linux, then my Phoenix on Windows. works great.
Thanks for the cron