I have DNN installed in root directory.
I have another ASP.NET application in the "calendar" directory that runs off of a MS Access database in the same directory. It also has it's own web.config in the calendar directory.
It seems like the application in the calendar directory is trying to inherit the DNN web.config in the root.
I think I need to set the property like this:
- <location path="." inheritInChildApplications="false">
- <system.web>
- ...
- </system.web>
- </location>
However, I do not know where exactly to put it in the web.config for DNN. Do I need to change the path? I tried putting
<location path="." inheritInChildApplications="false"> right before system.web and then closing the tag after system.web closed, but to no avail.
There's an article about this:
http://www.kowitz.net/archive/2007/05/16/stopping-asp.net-web.config-inheritance.aspx
Anyone know how to do this specifically for DNN? Also, if I disable inheritance in web.config, would it screw up all of the other directories needed by DNN?