Re: Huge files over 500 MB? (General questions)
It actually says that User.Request.Uploads.Count is 0 after uploading a large file.
When I access the
fn = User.Request.Uploads(0).FileName
I get invalid procedure call or argument
Since it works for you, maybe it is something left out of the distribution file?
Here's the HTML upload code I use:
<html>
<head>
<meta http-equiv= Content-Type content= text/html; charset=windows-1252 >
<meta name= GENERATOR content= Microsoft FrontPage 4.0 >
<meta name= ProgId content= FrontPage.Editor.Document >
<title>UPLOAD</title>
</head>
<body>
<form enctype= multipart/form-data action= uploader.php method= POST >
<input type= hidden name= MAX_FILE_SIZE value= 100000 />
UPLOAD
<p>
Choose a file to upload: <input name= uploadedfile type= file /><br />
<input type= submit value= Upload File />
</form>
</body>
</html>