just random stuff

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.

 

» Similar Posts

  1. How do I get jQuery intellisense in Visual Studio 2008?
  2. Using locks when caching objects
  3. The new little guy

» Trackbacks & Pingbacks

    No trackbacks yet.
Trackback link for this post:
http://samdelagarza.com/trackback.ashx?id=17

» Comments

    There are no comments. Kick things off by filling out the form below.

» Leave a Comment