Posted by Logan Lindquist on 09/29/43 11:32
The php.ini file limit's you to 2 MB file uploads, so you will have to
change that parameter among others, before even trying to upload such
large files. The one thing is that your browser window is going to be
sending all that POST data for quite some time, so the user might get
impatient and close or exit that window. So maybe you want to do this
in a pop up window?
Here is some useful info to get you started. I suggest reading this
page from the manual.
http://us3.php.net/features.file-upload
You can try using the PEAR package to get you started.
http://pear.php.net/package/HTTP_Upload/redirected
Or this guy has good upload script that you can use, hack apart, and
customize for your site.
http://www.maaking.com/
[Back to original message]
|