Pure ASP Upload 3 Support Product Page
Answered
PAU 3.10 - upload freeze above 40mb
Asked 19 Dec 2012 13:10:28
1
has this question
19 Dec 2012 13:10:28 MX Addict posted:
I use form which contains a file field:DW 5.5 update behavior
PAU 3.10
Rename Uploaded Files 1.8.1
Uploading a 20mb file works perfect but uploading a 40mb file gives a problem. The screen freeze and nothing happens.
Replies
Replied 19 Dec 2012 14:43:16
19 Dec 2012 14:43:16 Vulcho Vulev replied:
Hello MX Addict.
Does that happens on your testing server or on the hosting server ?
If that happens only on the hosting server
Can you check if there are any file-size restrictions on the server that you are trying to upload ?
Regards:Vulcho.
Does that happens on your testing server or on the hosting server ?
If that happens only on the hosting server
Can you check if there are any file-size restrictions on the server that you are trying to upload ?
Regards:Vulcho.
Replied 20 Dec 2012 09:06:54
20 Dec 2012 09:06:54 MX Addict replied:
Hi Vulcho,
Indeed file-size restriction is the problem. IIS 7.5 has a standard 30mb file restriction. I changed the configuration with web.config. Now it works fine
Indeed file-size restriction is the problem. IIS 7.5 has a standard 30mb file restriction. I changed the configuration with web.config. Now it works fine
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <security> <requestFiltering> <requestLimits maxAllowedContentLength="50000000"/> </requestFiltering> </security> </system.webServer> </configuration>