
Linux. The website and CMS sits on a LAMP stack.
We are building the CMS for a client with a host environment for all their websites.
We weren’t allowed to use Rsync.
We then developed an FTP code to copy the files from server 1 to server 2 after the files are upload to server 1 via the CMS. Now, We were then informed that FTP was disallowed on server 2 because of security issues.
We are told to use HTTP to effect the uploads to server 2.
Any thoughts?

How about SCP or SFTP ?

You can use wget to sync sites through http.
rsync is much better, though: if you (or server admins) need security, it defaults to ssh as a transport protocol with all the security ssh provides; if the server admins are afraid of unauthorized access to some parts of the file system, they can set a public rsync server with explicitly configured modules which correspond to the filesystem parts accessible through web server… BTW, both mechanisms could be combined - to ensure secure granullar access to the file system, if standard permissions, ACLs and SELINUX control isn’t enough ;o))
.


















