Why aren't my other web apps working after installing Graffiti CMS at /[root]
Now that I'm at Telligent I'm exploring their product offering and in doing so I broke a small personal web application that has been working for a while now. This web app is configured as such in IIS and is two folders below my root.
Because graffiti intercepts your http requests it didn't like that I was looking for a folder that it thought belong to it. Jayme Davis who's on the team helped me fix it by wrapping graffiti's <system.web> tag in the web.config with a location element that specifies to NOT inherit children applications.
<location inheritinchildapplications="false" path="."> <system.web>
:
: [all the graffiti stuff] : </system.web> </location>
Awesome! This fixed it. Hope it helps.
