vote up 0 vote down star

I'm trying to wrap my brain about how to do this. We need to provide some files within a directory from our servers to our clients' servers via a PHP/Web interface using FTP. I've looked at the FTP capabilities built in to PHP and some custom classes, but someone suggested cURL might be a better option. We will have the FTP login credentials in our database for the application to access. With that information can we use cURL FTP capabilities to do the transfers, knowing our server has libcurl installed, but the clients servers may not? Do both servers have to have it for the FTP function to work?

Or am I completely going about this the wrong way, and have misunderstood how to use cURL and should be looking into an FTP PHP class?

flag

2 Answers

vote up 0 vote down check

Just to make it super clear, there are 2 computers involved:

  • Your server, the one that's supposed to provide files to the client using the FTP protocol. That server does not need to have a web server (or PHP) running. The only thing it needs is an FTP server. It also needs to have permissions configured in such a way that there is an account that can access the files through FTP.

  • Your client's server, the one that's supposed to retrieve files from your server using the FTP protocol. That server needs to have PHP installed, with libCurl. The software on that server needs to access your server using the FTP protocol, providing the user credentials that you configured on your box.

Hope that helps.

link|flag
That does make it super clear. I get it now. – Keli Handler Jul 30 at 21:34
@Alex: In this case, if I'm reading it right, the OP's architecture is their server doing FTP pushes to the client, so you've got it backwards. Keli's webserver is uploading files to the clients' FTP servers. Keli's server needs a webserver and libcurl; client side needs FTP servers. – Joe Jul 31 at 0:40
vote up 4 vote down

libCURL is a library; it acts as the client.

Your clients need to be running a FTP server but do not need libCURL.

link|flag
Thanks Joe. I sort of got thrown into this and I'm trying to get the hang of it. – Keli Handler Jul 30 at 21:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.