I am in the process of making an ftp uploader. It works.. other than this problem:
When people upload and enter C:\file.ext, it trys to upload the C:\file.ext that is located on the server. How would I get it to upload the file off of the USERS computer, not the server.
Thanks Much, neox
not with ftp, cause the server would have to connect to the client, which means, the client would have a ftp server running (most users don't)
better use normal upload, refer to php.net > docs > features > fileuploads
When you use an ftp client to upload a file onto a server you dont need to be running an ftp server, why do you need to be here?
because the script runs on the server, hence ftp is initiated by the server but it can't connect to the client, cause there's no server app listening at port 21 (?)