
May 9th, 2000, 02:35 PM
|
|
Junior Member
|
|
Join Date: May 2000
Posts: 2
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
I am working on a content management system that will use PHP/MySQL as the backend.
All I need to do is upload a file (Text/HTML) to an arbitrary remote server (given the username and password). I cant figure out how to do this.
I tried using fopen("ftp://user URL***@host.com/file.txt","w") but I keep getting 'transport endpoint not connected' errors.
I am trying to write my own FTP implementation functions using fsockopen() but FTP uses two ports (21/20) and its really really complicated, unlike HTTP or other simple protocols. But with no luck.
I don't care how I do it, I just need to upload a file to another server. One way FTP. Thats all.
I plan to evenutally distribute the system, so assume that I must use PHP3 with standard installation settings. Also assume that I can not use the built in ftp_ commands that come with PHP4 or can be specially compiled into PHP3.
Please. Can anyone help me? I have been searching the web, reading RFCs, posting to BBSs, and no one seems to have an answer for me.
|