ASP Upload

M

Martin

I have an ASP form that uploads files to our server.
When I upload small files, it works great.
But larger files like (2.5mb), I get:

Active Server Pages error 'ASP 0113'
Script timed out

I have looked up the error, and added more time to the
script (up to 10 minutes). Didn't help.

We are using Microsoft Server 2000, IIS 5.0, and Microsoft
ASP Upload.
My guess is that there is a file size limitation
somewhere, but don't where.

Does anyone have any experience with this sort of stuff?
Any help is greatly appreciated.
Thanks, Martin
 
S

Steven Burn

I don't have this problem on mine (also using ASPUpload) but, have you
changed the Timout in IIS itself?

--
Regards

Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk

Keeping it FREE!

Disclaimer:
I know I'm probably wrong, I just like taking part ;o)
 
M

Martin

Thanks for responding,

I have not made the change in IIS because the
documentation said that the change in the script would
override value in IIS.
Did you have to change the "timeout value" in your IIS?

Martin
 
S

Steven Burn

I didn't have to change anything (couldn't even if I wanted to as I don't
have direct access to IIS).

You may want to check your ASPUpload script against mine though (shown
below)

[BEGIN]
<%
Server.TimeOut "5000"

Set Upload = Server.CreateObject("Persits.Upload")
Upload.IgnoreNoPost = True

'Folder to upload images to
Count = Upload.Save(Server.MapPath("files"))
%>
<!-- HTML-->
<form name="ULF" method="post" enctype="multipart/form-data"
action="index.asp">
File 1: <input type="file" size="25" name="file1"><br>
File 2: <input type="file" size="25" name="file2"><br>
File 3: <input type="file" size="25" name="file3"><br>
<br>
<input type=submit value="Upload">
</form>
[END]

--
Regards

Steven Burn
Ur I.T. Mate Group
www.it-mate.co.uk

Keeping it FREE!

Disclaimer:
I know I'm probably wrong, I just like taking part ;o)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,744
Messages
2,569,483
Members
44,901
Latest member
Noble71S45

Latest Threads

Top