|
|
Rank: Enthusiast
Joined: 2/6/2007 Posts: 10
|
My current site is built in .Net but I want to add some pages which can be content managed.
Is there anyway I can install Umbraco to an existing site and let all the old pages run as normal but use Umbraco on top of the existing site?
The problem I get now is I get the "No node found" error when I navigate to any of them.
Thanks
|
|
 Rank: Umbracoholic
Joined: 9/8/2006 Posts: 1,831 Location: MA, USA
|
It can be done. You simply need to tell Umbraco which files and folders it should ignore. This is done in the web.config file. Just add the appropriate details to these two entries: Code: <add key="umbracoReservedUrls" value=",/umbracoTextGen.aspx,"/> <add key="umbracoReservedPaths" value="/umbraco/,/install"/>
cheers, doug.
MVP 2007-2009 - Percipient Studios
|
|
Rank: Enthusiast
Joined: 2/6/2007 Posts: 10
|
Easy as that, nice one
|
|
Rank: Newbie
Joined: 11/6/2006 Posts: 8
|
i tried the same but not working :( "no node found"... can you tell me more, please?
Thanks
|
|
 Rank: Fanatic
Joined: 7/25/2006 Posts: 433 Location: Silkeborg, Denmark
|
|
|
Rank: Newbie
Joined: 11/6/2006 Posts: 8
|
<add key="umbracoReservedUrls" value="test.aspx"/>
also tried with <add key="umbracoReservedUrls" value=",/test.aspx"/> and <add key="umbracoReservedUrls" value=",/umbracoTextGen.aspx,/test.aspx,"/>
And the result is (for the first value):
No node found (http://localhost/default.aspx?umbPage=/test.aspx&umbDebugShowtrace=true, '/root/node [@urlName = "test"] | /root/node/node [@urlName = "test"]')
PATH_INFO /default.aspx PATH_TRANSLATED C:\ROOT\test.aspx QUERY_STRING umbPage=/test.aspx&umbDebugShowtrace=true
for the rest the PATH_TRANSLATED is changed into C:\ROOT\default.aspx
|
|
|
Guest |