Webmaster Forum


Go Back   Webmaster Forum > Web Development > Web Hosting Forum

Web Hosting Forum Discuss web hosting related stuff.


Reply
 
LinkBack Thread Tools Display Modes
Share |
  #1 (permalink)  
Old 07-26-2012, 11:07 PM
Website's Avatar
Contributing Member
Latest Blog:
None

 
Join Date: 11-15-10
Posts: 315
iTrader: 0 / 0%
Exclamation Best Website Backup Tool

I am looking for a autobackup tool for my websites. I want the program to take auto backups of my files in FTP and all my DBs. It can email me the content or just download to my computer, or save them in my ftp. But prefably downloading to my computer would be the best.

So is there a program like you can install to your computer, put all users and passes and it just downloads/syncs the files in ftp with the files in your computer? Same with the dbs and it would be very good to have more features also.

Please give me some ideas about backup tools for a website.
 
Reply With Quote
  #2 (permalink)  
Old 07-27-2012, 12:25 AM
Website's Avatar
Contributing Member
Latest Blog:
None

 
Join Date: 11-15-10
Posts: 315
iTrader: 0 / 0%
Just tried syncback pro. But it doesnt have a DBs backup feature. I need something gets a backup of DBs also and download to my computer
 
Reply With Quote
  #3 (permalink)  
Old 07-27-2012, 09:57 AM
RedScooter's Avatar
v7n Mentor
 
Join Date: 12-19-08
Location: Texas
Posts: 243
iTrader: 0 / 0%
If your websites use WordPress, the "BackWPup" plugin is pretty useful. It will back up all files as well as your database, and you can choose from various options where to have it save - it can email the .zip backups to you, save to a server, or save to various cloud services like Dropbox. You would install it separately on each site, and I'd recommend setting each for a slightly different time so your server is only saving 1 backup at a time.
__________________
Elaine, a.k.a. RedScooter - web graphic designer
CodeBabble - web code in simple step-by-step instructions
AlamoWebsites - web design & development, specializing in WordPress customization
 
Reply With Quote
  #4 (permalink)  
Old 07-27-2012, 01:50 PM
Website's Avatar
Contributing Member
Latest Blog:
None

 
Join Date: 11-15-10
Posts: 315
iTrader: 0 / 0%
But some of my websites are not WP. Some DBs are not WP either. So i dont think this plugin would work for me.
 
Reply With Quote
  #5 (permalink)  
Old 07-27-2012, 02:02 PM
asraf's Avatar
Junior Member
 
Join Date: 07-27-12
Posts: 3
iTrader: 0 / 0%
+ YouTube Video
ERROR: If you can see this, then YouTube is down or you dont have Flash installed.


Thanks

Last edited by snakeair; 07-27-2012 at 09:39 PM. Reason: edit video
 
Reply With Quote
  #6 (permalink)  
Old 07-27-2012, 02:04 PM
Website's Avatar
Contributing Member
Latest Blog:
None

 
Join Date: 11-15-10
Posts: 315
iTrader: 0 / 0%
Cant see it. Cant click on it.
 
Reply With Quote
  #7 (permalink)  
Old 07-27-2012, 08:02 PM
Contributing Member
Latest Blog:
None

 
Join Date: 07-27-12
Posts: 52
iTrader: 0 / 0%
rsync is the world's best backup tool.
__________________
Hosting Forum | Webmaster Links
 
Reply With Quote
  #8 (permalink)  
Old 08-01-2012, 02:26 AM
Website's Avatar
Contributing Member
Latest Blog:
None

 
Join Date: 11-15-10
Posts: 315
iTrader: 0 / 0%
I have looked at the rsync a little bit but i couldnt see any UI. Is it all just commands?

I need something i can use with my mouse not with a keyboard. I dont know commands or codes much.
 
Reply With Quote
  #9 (permalink)  
Old 08-04-2012, 08:19 AM
Contributing Member
 
Join Date: 07-19-06
Posts: 631
iTrader: 0 / 0%
Quote:
Originally Posted by Website View Post
Just tried syncback pro. But it doesnt have a DBs backup feature. I need something gets a backup of DBs also and download to my computer
Just set up a cron to back up databases and save them periodically in your server itself. You can use cPanel backup also, if there is a way to automate the same. Then use syncback pro, you have complete backups on your system.
__________________
Hosting Reviews: Read Bleuhost Review and Hostgator Review
 
Reply With Quote
  #10 (permalink)  
Old 08-04-2012, 10:05 PM
linux7802's Avatar
Contributing Member
 
Join Date: 11-26-09
Posts: 105
iTrader: 0 / 0%
Solution

To create the database backup in daily basis and sent the database backup to the specific E-mail address, you can refer the following script because I am using it and its working fine, make sure that you have use the correct database name, password and database names else it won't work proeperly.

Quote:
#/bin/bash
/usr/bin/mysqldump -u database_user_name -p database_user_name_password --databases database_name | gzip | uuencode database_name.sql.gz | mail -s "Daily Backup of databases" "E-mail address"
 
Reply With Quote
  #11 (permalink)  
Old 08-04-2012, 11:54 PM
Contributing Member
Latest Blog:
None

 
Join Date: 07-27-12
Posts: 52
iTrader: 0 / 0%
Quote:
Originally Posted by linux7802 View Post
To create the database backup in daily basis and sent the database backup to the specific E-mail address, you can refer the following script because I am using it and its working fine, make sure that you have use the correct database name, password and database names else it won't work proeperly.
Make sure you chown 700 that script so no one can read your db pass
__________________
Hosting Forum | Webmaster Links
 
Reply With Quote
  #12 (permalink)  
Old 08-05-2012, 12:30 AM
linux7802's Avatar
Contributing Member
 
Join Date: 11-26-09
Posts: 105
iTrader: 0 / 0%
Quote:
Originally Posted by kprojects View Post
Make sure you chown 700 that script so no one can read your db pass
The 700 permission won't run the script in cron therefore its always better, if you set the script outside your public_html directory or what ever your document root path for your domain hosting account, so that no one can browse the backup script.
 
Reply With Quote
  #13 (permalink)  
Old 08-05-2012, 04:59 AM
Contributing Member
Latest Blog:
None

 
Join Date: 07-27-12
Posts: 52
iTrader: 0 / 0%
True - I was under the assumption that he had a VPS and was root.. I have something similar that backs up all my databases nightly in /usr/local/bin on my VPS.
__________________
Hosting Forum | Webmaster Links
 
Reply With Quote
  #14 (permalink)  
Old 08-06-2012, 03:44 PM
Contributing Member
Latest Blog:
None

 
Join Date: 06-14-10
Posts: 490
iTrader: 0 / 0%
Some quick free ways:

1. If you have cPanel, just do the back up download to your computer - It should keep the databases too.

2. If you use a FTP, just drag and drop all of the folders and files onto your computer.
__________________
My Site: MacLappy [link soon!]

Hosted by: Myhosting.com
 
Reply With Quote
  #15 (permalink)  
Old 08-19-2012, 10:40 PM
Junior Member
 
Join Date: 08-19-12
Posts: 8
iTrader: 0 / 0%
You may try some managed hosting company that can easily take care of all your data with ease. If you are using WP then "BackWPup" would be an adequate choice to opt in. And if not, then i think the best way secure your FTP files and frequently get updates with the server capacity and performance as well...

- You may also try Backup Smart (t really is is easy to get a solid website backup structure setup.)
- Comodo/Time Machine
- FreeFileSync
- FBackup
- Mozy

Last edited by sabahm; 08-19-2012 at 10:46 PM.
 
Reply With Quote
  #16 (permalink)  
Old 10-05-2012, 06:49 AM
Banned
Latest Blog:
None

 
Join Date: 07-05-12
Posts: 90
iTrader: 0 / 0%
Quote:
Originally Posted by sabahm View Post
You may try some managed hosting company that can easily take care of all your data with ease. If you are using WP then "BackWPup" would be an adequate choice to opt in. And if not, then i think the best way secure your FTP files and frequently get updates with the server capacity and performance as well...

- You may also try Backup Smart (t really is is easy to get a solid website backup structure setup.)
- Comodo/Time Machine
- FreeFileSync
- FBackup
- Mozy

We used to keep the data of our clients of a separate backup server, so that we could restore the necessary data for them any time per their request. Cpanel backups are reliable, but not all the clients want to make them from their control panel.

Did anybody try to the online backup service and what is the best and the cheapest of them?
 
Reply With Quote
  #17 (permalink)  
Old 10-25-2012, 09:39 AM
Member
Latest Blog:
None

 
Join Date: 10-24-12
Posts: 42
iTrader: 0 / 0%
I have MsSql database and ASP.NET hosted with WinHost. Since they don't have automated backups that I can easily use, I've also looked around and liked sqlbackupandftp.com the most. Unfortunately, I only have a laptop and don't like to keep it running, so I'm probably going to use it once I find myself a good backup desktop.
__________________
Share your restaurant photos at DishShout.com
 
Reply With Quote
  #18 (permalink)  
Old 11-19-2012, 03:22 PM
Member
 
Join Date: 11-19-12
Location: British Columbia
Posts: 31
iTrader: 0 / 0%
We use Webby cart as a our backup solution for offsite, very reliable and great prices
 
Reply With Quote
  #19 (permalink)  
Old 11-21-2012, 12:45 AM
Banned
 
Join Date: 11-05-12
Posts: 26
iTrader: 0 / 0%
I'd like to say that rsync is the best one.
 
Reply With Quote
  #20 (permalink)  
Old 11-22-2012, 12:21 AM
Banned
Latest Blog:
None

 
Join Date: 07-05-12
Posts: 90
iTrader: 0 / 0%
Quote:
Originally Posted by Website View Post
I am looking for a autobackup tool for my websites. I want the program to take auto backups of my files in FTP and all my DBs. It can email me the content or just download to my computer, or save them in my ftp. But prefably downloading to my computer would be the best.

So is there a program like you can install to your computer, put all users and passes and it just downloads/syncs the files in ftp with the files in your computer? Same with the dbs and it would be very good to have more features also.

Please give me some ideas about backup tools for a website.
I have found the list of the most popular backups according to the reviews from different forums.


MyPC Backup
Zip Cloud
JustCloud
Dropbox
SOS
Sugar Sync
Mozy
LiveDrive
Elephant Drive
Carbonite

If anybody used these services, please tell me which one is better and why.
 
Reply With Quote
Go Back   Webmaster Forum > Web Development > Web Hosting Forum

Reply

Tags
best website backup tool


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Website backup - dont know my numbers? countingsheep Tech Talk 4 08-11-2011 12:34 AM
Way to backup website information MichaelB23 Web Hosting Forum 6 05-21-2009 11:50 PM
Need Help with Website Backup Download cher Web Design Lobby 8 04-11-2007 07:31 PM
Affiliate script utility / website backup app carastas Affiliate Marketing Forum 4 07-06-2006 06:00 AM
Help with understanding complete backup of website dcristo Web Hosting Forum 3 01-31-2005 12:58 PM


V7N Network
Get exposure! V7N I Love Photography V7N SEO Blog V7N Directory


All times are GMT -7. The time now is 08:13 AM.
Powered by vBulletin
Copyright © 2000-2013 Jelsoft Enterprises Limited.
Copyright © 2003 - 2013 Escalate Media LP




Search Engine Optimization by vBSEO 3.6.0 RC 2 ©2011, Crawlability, Inc.