Re: [PHP] FTP issues

2007-02-28 Thread Richard Lynch
On Wed, February 28, 2007 8:21 am, Larry Bradley wrote: > I've written a PHP program to "mirror" data on a local drive to a > remote > FTP server. It compares file mod times, and only uploads files that > are > newer. Works like a charm. Except --- Did you consider just using rsync?... > To exam

Re: [PHP] FTP issues

2007-02-28 Thread Jochem Maas
is your 'local system' linux? then the totally non answer is probably that you should be using rsync. if it's a windows machine you can probably still use rsync there by running it on top of cygwin. I would also recommend tunnelling the rsync traffic through an SSH connection. Larry Bradley wrot