Getting page not found error
Hi,
I just created a page, then I moved it under another parent page called "Books" and I am getting this error:
An unhandled exception was generated during the execution of the
current web request. Information regarding the origin and location of the
exception can be identified using the exception stack trace below.
|
|
Every time I create a page under parent page "Books" I keep getting page not found for the new page? what is going on?
Hi,
I'm getting a relatively similar error. A page that used to work now gives a "Page not found" exception. The page has not been moved or modified. When previewing the page from the back office, then it works. Republishing the page or restarting the site did not help.
I'll post back if I find anything interesting.
Hi Annie,
I have answered you in the support ticket.
Kind regards,
Victor Velev
the Telerik team
Hi Victor,
If you could post the solution in the forum as well instead of saying that you have replied to the ticket - it would be more helpful to other people who run into the same problem and come across this post.
I am running into the same issue currently. Using SF 5.3.3900. I moved a page from under a published page to the root and now the old url which should redirect to the new url throws me the Page Not Found exception. The old url is added as an additional url.
Thanks,
-Nidhi
Hi Nidhi,
The problem you are encountering may be coming from a number of different areas but in most cases it is related to the fact that you have more than 100 pages under one page node. In order to resolve the problem, you need to add a maxPageNodes property to 500 for example in your webconfig, as per the following sample:
<
siteMapdefaultProvider
=
"SitefinitySiteMap"
>
<
providers
>
<
addname
=
"SitefinitySiteMap"
type
=
"Telerik.Sitefinity.Web.SitefinitySiteMap, Telerik.Sitefinity"
taxonomyProvider
=
"OpenAccessDataProvider"
pageTaxonomy
=
"Pages"
rootNode
=
"FrontendSiteMap"
pageProvider
=
"OpenAccessDataProvider"
maxPageNodes
=
"500"
/>
</
providers
>
</
siteMap
>