if they start with /base/... your paths are in conflict with a functionality in umbraco called base. You can disable this in the web.config by removing /base from the reserved paths list.
Because /base tries to match a url to a serverside method and no matter what it always needs a url with a certain amounts of '/' in it in to work. So if it just ignores requests if it doesn't have a welformed url.
The wiki has an explaination on how /base works, which also explains why some urls get caught and some doesn't
Extension not found or permission denied Error
Hello,
I'am using Umbraco 4.0.2.1 on ASP.NET 3.5.
It's juste on pages that have a specific docType (but it's working on preview), others pages with an other docType works.
My docTypes are:
Any idea about the problem ?
Thank's in advance
Little problem with my poste:
When I try to access to some pages, I have this error:
"<error>Extension not found or permission denied</error>"
What are the url to the pages that do not work?
if they start with /base/... your paths are in conflict with a functionality in umbraco called base. You can disable this in the web.config by removing /base from the reserved paths list.
That was the problem, thanks to you.
But I don't understand why it's working with /base/home.aspx and not with /base/home/page.aspx
Because /base tries to match a url to a serverside method and no matter what it always needs a url with a certain amounts of '/' in it in to work. So if it just ignores requests if it doesn't have a welformed url.
The wiki has an explaination on how /base works, which also explains why some urls get caught and some doesn't
http://our.umbraco.org/wiki/reference/umbraco-base
Ok,
Thanks for your help, I will pay attention to this in the futur
is working on a reply...