Hi, I am completely new to the world of IIS 8 so please bear with me. I have a page and trying to upload files up to a size of 50 MB. I get the following error: "The page was not displayed because the request entity is too large." I did some Googling and discovered that I need to set the uploadReadAheadSize.
The problem is that I'm not quite sure how to do that because I don't where settings files are located or where I do anything in IIS so after much head banging, I navigated to:
C:\Windows\system32\inetsrv
And ran the following command in command line:
appcmd.exe set config -section:system.webserver/serverruntime /uploadreadaheadsize:50000 /commit:apphost
I got the message:
"Applied configuration changes to section "system.webServer/serverRuntime" for "MACHINE/WEBROOT/APPHOST" at configuration commit path "MACHINE/WEBROOT/APPHOST"
Okay...I figured it was done and tried the upload again but unfortunately, that didn't work for me so now I am unsure what to do. If anyone wouldn't mind walking me through exactly where the settings files are that I need to edit would be great. I am running IIS 8 on Windows Server 2012 R2.