Re: [PHP] how do you upload to a 3rd-party remote server?

2010-08-09 Thread Govinda
On Aug 6, 2010, at 8:28 PM, Daniel P. Brown wrote: On Fri, Aug 6, 2010 at 19:53, Govinda wrote: can you elaborate? This kind of thing is all new to me. I need to see some sample code to even start to get an idea. Hopefully Tedd will notice this thread. He's the man when it comes

Re: [PHP] how do you upload to a 3rd-party remote server?

2010-08-07 Thread Govinda
can you elaborate? This kind of thing is all new to me. I need to see some sample code to even start to get an idea. Hopefully Tedd will notice this thread. He's the man when it comes to sample code. While there may be nothing directly-related to this (I don't know, I haven't looked), y

Re: [PHP] how do you upload to a 3rd-party remote server?

2010-08-06 Thread Daniel P. Brown
On Fri, Aug 6, 2010 at 19:53, Govinda wrote: > > can you elaborate?  This kind of thing is all new to me.  I need to see some > sample code to even start to get an idea. Hopefully Tedd will notice this thread. He's the man when it comes to sample code. While there may be nothing directly-re

Re: [PHP] how do you upload to a 3rd-party remote server?

2010-08-06 Thread Govinda
You have to maintain a queue if I understand it properly. PHP page will send request on one end of queue. And the server side cron will process from other end. Cron will upload it to ftp. Now you can implement a queue using database table or you can just use a file. can you elaborate? This

Re: [PHP] how do you upload to a 3rd-party remote server?

2010-08-06 Thread shiplu
You have to maintain a queue if I understand it properly. PHP page will send request on one end of queue. And the server side cron will process from other end. Cron will upload it to ftp. Now you can implement a queue using database table or you can just use a file. Shiplu Mokadd.im My talks, ht

[PHP] how do you upload to a 3rd-party remote server?

2010-08-06 Thread Govinda
Hi All I am working on a page which will write out a file (using another server-side language) and then that file will get uploaded nightly to someone else's FTP directory, on a 3rd party remote server. As I start to contemplate that last part about auto-uploading to someone else's FTP dir