Hi
For a CMS admin tool I would like to provide a possibility to upload large
files to a directory on the webserver. As HTTP uploads are limited in file
size and also not comfortable in handling, I thought of an FTP solution.
Displaying a link to ftp://mydomain.com/mydirectory is easy but limited to
browsers who can act as FTP clients, such as Internet Explorer.
When looking at PHP's FTP functions and googling for web-based FTP
applications it looks like they all need an HTTP upload to get the data to
the webserver which acts as an FTP client then.
Java applets usually provide the whole FTP functionality, but I don't want
the user to do something else than uploading files; and I don't speak Java
so I could adapt an applet to my needs.
I thought of a PHP script that could act as something like an intermediate
client: Establish the connection between the FTP server and the remote
computer. But I don't think this is possible.
I would be very happy to get pointed to better ideas on that. How do you
handle large file uploads?
--
Markus
For a CMS admin tool I would like to provide a possibility to upload large
files to a directory on the webserver. As HTTP uploads are limited in file
size and also not comfortable in handling, I thought of an FTP solution.
Displaying a link to ftp://mydomain.com/mydirectory is easy but limited to
browsers who can act as FTP clients, such as Internet Explorer.
When looking at PHP's FTP functions and googling for web-based FTP
applications it looks like they all need an HTTP upload to get the data to
the webserver which acts as an FTP client then.
Java applets usually provide the whole FTP functionality, but I don't want
the user to do something else than uploading files; and I don't speak Java
so I could adapt an applet to my needs.
I thought of a PHP script that could act as something like an intermediate
client: Establish the connection between the FTP server and the remote
computer. But I don't think this is possible.
I would be very happy to get pointed to better ideas on that. How do you
handle large file uploads?
--
Markus
Comment