I have a standard HTML form, including a file input, allowing users of a web application to upload files (pictures, documents or videos).
It technically works, except when it comes with a large file... I have a personal dedicated server on which I can change the PHP configuration to handle larger files ; But this is not a reliable solution as my client has a shared hosting.
I know HTTP has different limits and is definitely not the best protocol to handle files.
So my objective is to avoid HTTP upload.
I was wondering if there is any way to rely on FTP to upload the selected file.
Any solution to upload files through FTP, directly from client's browser ?
EDIT :
- I've read some solutions about Java applets, however this is not really something I can, or even want to, provide.
- And as the files are confidential, using a third-party service is not possible neither.