• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Want to backup files onto my own FTP. How?

Ns1

No Lifer
So I want to add an online backup to my backup routine. Instead of paying for a service, why don't I just upload my files onto my own personal ftp?


Is there a program that already does this? Can anyone think of any cons to this?
 
You can can easily script around ftp.exe from the command line by passing it an input file. For example:

ftp.exe -s:c:\ftp_input.txt

where input.txt contains:

open ftp.yoursite.com
user_id
password
bin
cd /incoming/dir_to_write_to
lcd C:\dir_to_backup
prompt off
mput *.*
bye


Not the most efficient but effective. There's also apps to map an ftp site to a drive letter.
 
There are backup/syncing tools that use FTP. I know they do exist. I do not know what they are. Hopefully somebody will reply who does.
 
Back
Top