Activity Stream
48,167 MEMBERS
64755 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Results 1 to 10 of 10
  1.     
    #1
    Member
    Website's:
    servedome.com

    Default Backup Service?

    I need a backup service, can't risk what happened to me again, happen again.

    Know any service that I can use that is not gonna let me down?

    Cheers guys.
    dark_hunter Reviewed by dark_hunter on . Backup Service? I need a backup service, can't risk what happened to me again, happen again. Know any service that I can use that is not gonna let me down? Cheers guys. Rating: 5

  2.   Sponsored Links

  3.     
    #2
    Member
    Website's:
    motionlite.net
    First, here is the script, call it backup.pl and put it in a folder outside the root of your sites.
    You set it to run daily using cron, but can set an offset. I have mine set at 3 so it runs at 3am.

    PHP Code: 
    backup.pl 
    ================ 
    #!/usr/bin/perl

    #### CONFIG #### 
    $backupHour 3# TIME TO RUN THE backup

    $backupPath "/backup"#This is the folder where your backup file set file is stored 
    $backupFileName "backup.tar.gz"#The name you want to give to your tar file 
    $backupFileList "file_list.txt"#The list that you use to determine what parts to back up

    $HostHasMySQL 0# 1 = YES, 0 = NO 
    $MySQLRootPassword ''
    $MySQLbackupFileList "mysql_list.txt"#The list that you use to determine which databases to backup. 
    ################

    ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time);

    if (
    $hour == $backupHour) { 
    if (
    $HostHasMySQL == 1) { 
    &
    DumpDatabases

    &
    backupFiles
    }

    #### SUBS ####

    sub backupFiles 
    {

    # remove old backup file 
    $systemresult system("rm $backupPath\/$backupFileName");

    # create .tar.gz file 
    $systemresult system("tar czvf $backupPath\/$backupFileName -T $backupPath\/$backupFileList \&>\/dev\/null");

    }

    sub DumpDatabases 
    {

    my $name;

    if (
    open(DBLIST"$backupPath\/$MySQLbackupFileList")) {

    while (<
    DBLIST>) { 
    if (/^\
    s*\#/ ?? /^\s*$/) { 
    # Ignore Comments and Blank Lines 
    elsif ( /^\s*([\w]+)\s*/ ) { 
    $name = $1;

    $systemresult system("mysqldump --opt --user=root --password=$MySQLRootPassword $name > $backupPath$


    }

    close (DBLIST);

    }


    Create a file, file_list.txt, and insert folders that you want backing up, into a new line.
    eg:
    /www/home
    /www/public
    /etc/passwd

    The bottom one, shows that you can also back individual files up. If you put a folder in the list, it will backup the contents of that folder, and all subfolders.

    For the mysql_list.txt - just enter the dabase names onto separate lines.
    eg:
    site1dbase
    site2dbase
    mydbase

    Set it up to run either on cron, or run it from the cammand line.
    A tar.gz file will be created - if you want to get this off, then you will need to download it off your server - but beware, if all your sites and databases are in it, it could be a large file!

    Hope this helps,

  4.     
    #3
    Member
    Or just buy a service on trusted and reputable provider so you can sleep well

    For a backup service I suggest http://www.r1soft.com/
    KnownSRV.com - Quality comes at a price, and we provide it at affordable prices.
    PayPal, Skrill(MoneyBookers), Payza(AlertPay), 2CheckOut and LibertyReserve accepted!

  5.     
    #4
    Member
    Website's:
    MoanMyName.net Celebs4.us WarezWeek.com ExpertHide.com
    or....back up your site?? Is this such an unusual practice? Most people have cPanel and can do it easily. I dont have cPanel yet I manage to do it weekly for all my sites.

  6.     
    #5
    Member
    Website's:
    TvBlog.ws TeenBabe.in SexyBitch.in BabeLips.in CuteBabe.in Sweetie.co.in
    I think you may just try fully updated service & without a penny from

    Code: 
    http://www.xcloner.com/support/download/
    If you want to buy the support, then that would be your own choice. The app is free & pretty easy to use.

  7.     
    #6
    Member
    Get a backup script and upload it to a file service that don't leak files. Or upload it to a vps/dedi and just make sure your ftp account is limited.

  8.     
    #7
    Member
    Website's:
    servedome.com
    Quote Originally Posted by volgan View Post
    First, here is the script, call it backup.pl and put it in a folder outside the root of your sites.
    You set it to run daily using cron, but can set an offset. I have mine set at 3 so it runs at 3am.
    Not what I had in mind.
    Quote Originally Posted by Krun!x View Post
    Or just buy a service on trusted and reputable provider so you can sleep well

    For a backup service I suggest http://www.r1soft.com/
    That's what I want, but I want user feedback on witch one they used and liked.
    Quote Originally Posted by Mindy View Post
    or....back up your site?? Is this such an unusual practice? Most people have cPanel and can do it easily. I dont have cPanel yet I manage to do it weekly for all my sites.
    Because I want to backup the entire server in one go? I don't have time going into every account and backing up.

  9.     
    #8
    Member
    which free service would you recommend for a website managed with kloxo and a website managed fully via ssh?

    cheers
    Biggest shit hosts: freakshare, letitbit, henchfile, shareflare, uload.to.
    I highly recommend you guys to stay away from these..

  10.     
    #9
    Member
    Quote Originally Posted by inject0r View Post
    which free service would you recommend for a website managed with kloxo and a website managed fully via ssh?

    cheers
    for kloxo you can use any filehosts that provide ftp upload (HF,FSC,etc)
    then just set the scheduled backup on your kloxo and put your ftp details there

  11.     
    #10
    Member
    Thanks for the information in this thread. Someone suggested the R1Soft backup service. I would have to agree thats a fine service to use and would do just fine. Check for hosting providers that may be able to give you that service at a lower cost than what R1Soft.com themselves sell it at.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. SHOUTcastUK Backup Service Give away
    By UKInternetGroup in forum Contests & Giveaways
    Replies: 14
    Last Post: 9th May 2012, 06:17 PM
  2. Replies: 0
    Last Post: 17th Apr 2012, 06:55 AM
  3. should use the service to backup files?(MF or RS)
    By danhtin2108 in forum File Host Discussion
    Replies: 14
    Last Post: 11th Feb 2012, 10:31 AM
  4. which Service you use for Backup purpose of important data
    By pioneer_fawad in forum Webmaster Discussion
    Replies: 6
    Last Post: 9th Oct 2011, 02:10 PM
  5. Need a backup hosting service
    By Hero of war in forum Hosting Discussion
    Replies: 3
    Last Post: 5th Apr 2011, 04:05 PM

Tags for this Thread

BE SOCIAL