Unknown: The object identifier does not represent a valid object. (Exception from HRESULT: 0x800710D8) When creating a new website and using umbraco

25. June 2015

Unknown: The object identifier does not represent a valid object. (Exception from HRESULT: 0x800710D8) When creating a new website and using umbraco

Solution which worked for me was

1. Remove the website which shows this error .

2. Now open command prompt

3. Goto C:\Windows\Microsoft.NET\Framework64\v4.0.30319> and run this command aspnet_regiis.exe -i  ( If it gives some administrator rights error then you will have restart command prompt with run as administrator option.)

4. After installation is finished , try again adding a new website and run the umbraco after copying the code in that website .

 

umbraco , ,

Virtual Directory looking at parent web.config

11. October 2014

Virtual Directory looking at parent web.config

Web Application inside a virtual directory refers web.Config of parent directory and error related to that configuration file encountered .

Solution for this is to include a statement : 

<location path="." inheritInChildApplications="false"> 
<system.web>
 ...
</system.web>
</location>

You have to insert the <location> tag as mentioned above in the parent web.Config .

For Reference : http://forums.asp.net/t/1164283.aspx?Virtual+Directory+looking+at+parent+web+config

 

IIS , ,

Running IIS and Apache in Same computer simultaneously using different ports

8. April 2013

Running IIS and Apache in Same computer simultaneously using different ports

The following posts were beneficial in this case :

http://altafhussainbd.wordpress.com/2011/12/22/running-iis-and-apache-in-same-box/

IIS ,