This topic is locked
[SOLVED]

Up load file size on 10.5 37251 Document Template

1/22/2022 10:05:36 AM
ASPRunnerPro General questions
bajrai author

Hi I try to look in so many file to see how to change the up load file size,

in IIS7 max file are 3521478366.

is there other file or way that I need to look and change, now only upload file less 126kb, try to check on dropzone.js but I think better ask the people with Knowledge. Any support and help with be very much appreciate. Kind regards.

admin 1/24/2022

ASPRunnerPro doesn't add any restrictions on its own, it is all handled by IIS limitations set in web.config file or in IIS directly.

Check this article for inspiration.

It will also help if you can show us the exact error message.

bajrai author 1/26/2022

Thank you for your reply:
this is what is say when you put mouse over the fail upload:

img alt

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">; <html xmlns="http://www.w3.org/1999/xhtml">; <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/> <title>500 - Internal server error.</title> <style type="text/css"> <!-- body{margin:0;font-size:.7em;font-family:Verdana, Arial, Helvetica, sans-serif;background:#EEEEEE;} fieldset{padding:0 15px 10px 15px;} h1{font-size:2.4em;margin:0;color:#FFF;} h2{font-size:1.7em;margin:0;color:#CC0000;} h3{font-size:1.2em;margin:10px 0 0 0;color:#000000;} #header{width:96%;margin:0 0 0 0;padding:6px 2% 6px 2%;font-family:"trebuchet MS", Verdana, sans-serif;color:#FFF; background-color:#555555;} #content{margin:0 0 0 2%;position:relative;} .content-container{background:#FFF;width:96%;margin-top:8px;padding:10px;position:relative;} --> </style> </head> <body> <div id="header"># Server Error</div> <div id="content"> <div class="content-container"><fieldset> ## 500 - Internal server error. ### There is a problem with the resource you are looking for, and it cannot be displayed. </fieldset></div> </div> </body> </html>

IIS :

img alt

and when the file is small :

img alt

bajrai author 1/26/2022
bajrai author 1/26/2022

web.config file: This is in root director out the doc output.

<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<security>
<requestFiltering allowDoubleEscaping="false" allowHighBitCharacters="true">
<requestLimits maxAllowedContentLength="2147483648" />
<fileExtensions>
</fileExtensions>
</requestFiltering>
</security>
</system.webServer>
</configuration>

bajrai author 1/26/2022

Thank you Serguy,

The problem was in IIS ASP setting :
Maximum Requesting Entry Body Limit
After changing the value to100MB it work fine.

Thank you sir