Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
Is the virtual directory just a virtual directory or it's own IIS Application?
Hi!
This is not all EPiServer but maybe someone here has an answer. I have an asp-script in a folder. I have created a virtual directory in IIS (7.5) pointing to my child map and I'm having some problems getting the script to run. I have added the following to the web.config (in the child map - mychildfolder - to my EPiServer solution map):
<location path="mychildfolder" inheritInChildApplications="false">
<system.webServer>
<directoryBrowse enabled="true" />
<handlers>
<add name="ASP" path="*.asp" verb="*" modules="IsapiModule" scriptProcessor="C:\Windows\System32\inetsrv\asp.dll" resourceType="Unspecified" preCondition="bitness64" />
</handlers>
<defaultDocument>
<files>
<add value="index.asp" />
</files>
</defaultDocument>
</system.webServer>
</location>
When I try to run the script I get 403 access problems... and the index.asp file doesn't run - I get returned to my default Page not found. The IIS_IUSER is added to the map and has read rights. Anyone with an idea of what the problem could be?