I have created an application using Umbraco CMS, with .net framework 4.0 and hosting in IIS6. I have developed a blog for the application using dasblog (.net frame work 2.0)
I need to set the blog as virtual directory under the main application and I am not able to set due to some inheritance.
If I enter the below in parent application web-config, the main application throws 500 server error: inheritInChildApplications="false"
Let me know what other options I could try and set this up.
Expecting an answer at the earliest as I would need to set up the application at the earliest due to its urgency.
Thanks and Regards, Alex Varghese
Thanks for the suggestion, When i setup the same environment on Windows Server 2008 and IIS 7, without mentioning the inheritance tag in my parent application, i receive the below error. HTTP Error 500.19 - Internal Server Error
The requested page cannot be accessed because the related configuration data for the page is invalid. Config Error: the configuration section 'system.web.extensions' cannot be read because it is missing a section. I didnt add no inheritance tag because my parent application is built using .Net framework 4.0 and blog as child application is using 2.0 framework.
Even, If i would add inheritInChildApplications in parent application like below:
<location inheritInChildApplications="false">
<system.web>
</system.web>
</location>
I received the same Internal Server Error, I strongly belive this might be because of inheritance or .net framework versions behavior on this server.
Please explain, how should i narrow down this issue.