Home > Download >
SiteSync - Synchronizes sites throught FTP | Sitemap Search |
|
Sections Membership Features
Recent comments
very difficult by alfin Taking the credit for another persons work ? by curious dude. |
SiteSync - Synchronizes sites throught FTPPosted by martin on 10 Jan 2002, last updated on 5 Nov 2002. A Python script for synchronization of a remote directory structure from a local one via the FTP protocol. Features
Download
Changelog12 Jan 2004
5 Nov 2002
27 Sep 2002
5 Aug 2002
1 Aug 2002
5 Jul 2002
25 Jun 2002
21 Jun 2002
1 Jun 2002
14 Apr 2002
16 Mar 2002
2 Mar 2002
25 Feb 2002
20 Feb 2002
10 Jan 2002
CommentsWindows by martin on 13 Jun 2002 8:34pm GMT Unfortunately the script sometimes fails to upload binary files on Windows. If anybody's willing to do some extensive testing I would really appreciate that. Thanks. RC file by dave (dschulze@fls-inc.com) on 3 Mar 2003 11:41pm GMT Your script looks very promising. Can you make some sample .rc files available to help me out? BTW, I'll be trying this with binary files on Windows, so I can test for you. Thanks. sitecopy by FaceOff (contact@jenskleikamp.de) on 12 Mar 2003 3:06pm GMT sitecopy Great Script! by dirk () on 13 Mar 2003 7:47pm GMT It works on windows for me. Found the binary error by DirkK () on 14 Mar 2003 7:56pm GMT Hi, you have to change this line: self.ftp.storbinary('STOR ' + filename, open(self.local_dir + file, 'r')) to this line: self.ftp.storbinary('STOR ' + filename, open(self.local_dir + file, 'rb')) to make it work on Windows (means: open the files in binary mode by appending the 'b'). Regards, Dirk ftp through proxy by x-herbert (i.steinhardt@web.de) on 7 Apr 2003 9:27am GMT Hi, how can I upload a file behind a firewall/proxy?? Regads x-herbert file starting with dot by tbob () on 9 Sep 2004 6:30pm GMT Hi, for those who can find this useful: on my XP machine I need to rename in the script source .sitesync and .netrc into sitesync and netrc to get the script to work. Regards tBob |