I'm assuming this is possible in the applicationhost.config file but I did not see a parent paths setting.

How do you allow parent paths for a specific site running under IIS Express?

The reason WHY I need to do this was not part of my question. I am working on a legacy Classic ASP project and they used FILE instead of Virtual for all the includes. Last time I checked this is still a QUESTION and answer site and not a forum.

link|improve this question

feedback

2 Answers

up vote 9 down vote accepted

Browse to C:\Documents and Settings\$your user name$\My Documents\IISExpress\config

Open applicationHost.config

Find the <system.webServer> section

Change the <asp> section to the following… By default it only had the cache and empty limits bits but feel free to adjust any parameters you don't want.

<asp 
     enableParentPaths="true" 
     bufferingOn="true" 
     errorsToNTLog="true" 
     appAllowDebugging="true" 
     appAllowClientDebug="true" 
     scriptErrorSentToBrowser="true">

     <session allowSessionState="true" />
     <cache diskTemplateCacheDirectory="%TEMP%\iisexpress\ASP Compiled Templates" />
     <limits />
</asp>

Save and restart iis express.

link|improve this answer
Thanks! What Windows OS does your answer apply? – Brian Boatright Mar 23 '11 at 2:07
This solved the problem for me. Win7 64bits – Eduardo Molteni Apr 8 '11 at 14:52
this was actually on windows xp but should apply anywhere as I believe this is the default install settings for iis express – Flapper Apr 13 '11 at 7:57
feedback

The following should get you going.

  • On 32bit system "%programfiles%\iis express\appcmd" set config "Default Web Site/myapp -section:asp -enableParentPaths:true

  • On 64 bit system"%programfiles(x86)%\iis express\appcmd" set config "Default Web Site/myapp -section:asp -enableParentPaths:true

Link to related IIS 7 config reference: http://www.iis.net/ConfigReference/system.webServer/asp

link|improve this answer
thanks very much. I tried to find that very page but was not successful. – Brian Boatright Jan 26 '11 at 14:13
"Default Web Site/myapp -- where's the closing " go? – sarnold Mar 27 '11 at 1:48
Can you be more specific. I got Can not set attribute "enableParentPaths" to value "true".. Reason: This configuration section cannot be used at this path. This happens when the section is locked at a parent level. Locking is either by default (overrideModeDefault="Deny"), or set explicitly by a location tag with overrideMode="Deny" or the legacy allowOverride="false". – Eduardo Molteni Apr 8 '11 at 14:48
@Eduardo, try adding /commit:apphost – Dave Cluderay Jun 24 '11 at 16:21
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.