404 Error in Admin Section (Pages)
I just did a clean install of 4.0.962.0 on a clean build of Win 2008.
Hello Matthew,
It looks like the problem is related to the defined verbs in your IIS. Please take a look at Error message when you visit a Web site that is hosted on IIS 7.0: "HTTP Error 404.6 – VERB_DENIED"
All the best,
Ivan Dimitrov
the Telerik team
Hi Ivan,
<
verbs
allowUnlisted
=
"false"
applyToWebDAV
=
"true"
>
<
add
verb
=
"GET"
allowed
=
"true"
/>
<
add
verb
=
"HEAD"
allowed
=
"true"
/>
<
add
verb
=
"POST"
allowed
=
"true"
/>
<
add
verb
=
"OPTIONS"
allowed
=
"true"
/>
</
verbs
>
<
verbs
allowUnlisted
=
"true"
applyToWebDAV
=
"true"
/>
Hi Matthew,
WebDAVModule should not be used. It has to be removed.
<remove name="WebDAVModule" />
The same applies for the handler.
<handlers>
<remove name="WebDAV" />
All the best,
Ivan Dimitrov
the Telerik team
Hi Ivan,
<
verbs
allowUnlisted
=
"false"
>
<
add
verb
=
"GET"
allowed
=
"true"
/>
<
add
verb
=
"HEAD"
allowed
=
"true"
/>
<
add
verb
=
"POST"
allowed
=
"true"
/>
<
add
verb
=
"OPTIONS"
allowed
=
"true"
/>
</
verbs
>
<
verbs
allowUnlisted
=
"true"
/>
Hello Matthew,
We require GET,HEAD, PUT, POST.
Kind regards,
Ivan Dimitrov
the Telerik team
Thanks Ivan!
<
verbs
allowUnlisted
=
"false"
>
<
add
verb
=
"GET"
allowed
=
"true"
/>
<
add
verb
=
"HEAD"
allowed
=
"true"
/>
<
add
verb
=
"POST"
allowed
=
"true"
/>
<
add
verb
=
"OPTIONS"
allowed
=
"true"
/>
<
add
verb
=
"PUT"
allowed
=
"true"
/>
</
verbs
>
I found this post while trying to resolve an error in SF 6.0 with content items getting locked and not being able to unlock them. I discovered that the verb DELETE also needs to be added. This article explains how to do it through IIS if you have request filtering turned on:
Hope that helps somebody!
The IIS error I was getting was a 404.6.