Forum Moderators: phranque
Also, I'm looking for a simple file upload interface not a full, php ftp client. Basically I only want site visitors to upload files, not be able to browse a directory structure or see any other files that have been uploaded.
Does any script readily come to mind?
Thanks for any suggestions.
-jlr1001
if you are using one server to upload to another then you are going to have to upload to the first server and then push it to the other server. If you don't fully control the other server then you are looking at ftp functions which means you probably will have close to a full blown ftp client.
The logic of what you are trying to do makes standard upload scripts useless and full ftp clients overkill. You should probably rethink your logic a bit, you will probably need to adjust what you are trying to do or at least step it out to do it differently.
The files in question could be fairly large, so I thought of using a third-party file host. I can use a web-based php app, but as you mentioned that would be overkill...
I actually found something that works but it's a java application and I'm not 100% happy with forcing some users to install the JRE.
Any other thoughts?
Thanks,
-jlr1001