Welcome to MobyThreads.com!
FAQFAQ      ProfileProfile    Private MessagesPrivate Messages   Log inLog in
All support for the MobyThreads Threaded phpBB MOD can now be found on welsolutions at this forum

HTTP Error 405-HTTP verb used to access this page is not a..

 
   Web Hosting and Web Master Forums (Home) -> IIS RSS
Next:  IIS Configuration  
Author Message
user3437

External


Since: Jan 12, 2005
Posts: 1



(Msg. 1) Posted: Wed Jan 12, 2005 6:28 am
Post subject: HTTP Error 405-HTTP verb used to access this page is not allowed
Archived from groups: microsoft>public>inetserver>iis (more info?)

Why am I getting an "HTTP Error 405 - The HTTP verb used to access this
page is not allowed. Internet Information Services (IIS)" error when
passing a form from html to cgi page? As a client, is there an IIS
setting that I need to change on my computer? or permissions?

 >> Stay informed about: HTTP Error 405-HTTP verb used to access this page is not a.. 
Back to top
Login to vote
user641

External


Since: Aug 22, 2003
Posts: 1637



(Msg. 2) Posted: Wed Jan 12, 2005 9:45 am
Post subject: Re: HTTP Error 405-HTTP verb used to access this page is not allowed [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

"ontheRock" <melly.ontherock DeleteThis @gmail.com> wrote in message
news:1105540137.744023.213620@c13g2000cwb.googlegroups.com...
 > Why am I getting an "HTTP Error 405 - The HTTP verb used to access this
 > page is not allowed. Internet Information Services (IIS)" error when
 > passing a form from html to cgi page? As a client, is there an IIS
 > setting that I need to change on my computer? or permissions?

From the IIS MMC, are you allowing executables on the folder?<!-- ~MESSAGE_AFTER~ -->

 >> Stay informed about: HTTP Error 405-HTTP verb used to access this page is not a.. 
Back to top
Login to vote
someone9

External


Since: Aug 25, 2003
Posts: 2419



(Msg. 3) Posted: Tue Jan 18, 2005 2:08 am
Post subject: Re: HTTP Error 405-HTTP verb used to access this page is not allowed [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

The target URL which is receiving the form data must be considered "script"
or "executable" by IIS, or else you will get a 405.

In other words, if .htm is a static file, it makes no sense to POST to a
..htm because it's not as if the static file will do anything with the POST'd
dynamic data, so IIS returns 405. However, if the URL is an .ASP file or
..EXE/.DLL AND IIS is configured to allow scripts/executables execution
permission, THEN IIS considers the URLs OK to POST to.

I suspect that you either:
1. Did not declare the CGI page extension to be a ScriptMap
2. Did not allow Scripts/Executables execution option in the directory
containing the CGI page.

--
//David
IIS
http://blogs.msdn.com/David.Wang
This posting is provided "AS IS" with no warranties, and confers no rights.
//
"ontheRock" <melly.ontherock.RemoveThis@gmail.com> wrote in message
news:1105540137.744023.213620@c13g2000cwb.googlegroups.com...
Why am I getting an "HTTP Error 405 - The HTTP verb used to access this
page is not allowed. Internet Information Services (IIS)" error when
passing a form from html to cgi page? As a client, is there an IIS
setting that I need to change on my computer? or permissions?
 >> Stay informed about: HTTP Error 405-HTTP verb used to access this page is not a.. 
Back to top
Login to vote
mbstone99

External


Since: Feb 22, 2005
Posts: 1



(Msg. 4) Posted: Tue Feb 22, 2005 10:09 am
Post subject: Re: HTTP Error 405-HTTP verb used to access this page is not allowed [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

 > I suspect that you either:
 > 1. Did not declare the CGI page extension to be a ScriptMap
 > 2. Did not allow Scripts/Executables execution option in the
 > directory
 > containing the CGI page.
 >

I am having the same issue here with that 405 error. We are running
IIS on a Win 2003 Server. I checked all the NT file persmissions to
make sure they were correct as well as I made sure that web permissions
has scripting and executables execution option for the directory. The
only part that I don't understand where to turn it on is declaring the
CGI page extension to be a ScriptMap. Could you please elaborate on
how I set that up.

Thanks
Matt



--
mbstone99
------------------------------------------------------------------------
Posted via <a style='text-decoration: underline;' href="http://www.webservertalk.com" target="_blank">http://www.webservertalk.com</a>
------------------------------------------------------------------------
View this thread: <a style='text-decoration: underline;' href="http://www.webservertalk.com/message875349.html" target="_blank">http://www.webservertalk.com/message875349.html</a><!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: HTTP Error 405-HTTP verb used to access this page is not a.. 
Back to top
Login to vote
someone9

External


Since: Aug 25, 2003
Posts: 2419



(Msg. 5) Posted: Tue Feb 22, 2005 5:32 pm
Post subject: Re: HTTP Error 405-HTTP verb used to access this page is not allowed [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

In IIS Manager UI, right click on the application and select Properties.
There should be a "Virtual Directory" or "Home Directory" tab. On the tab,
there is a button called "Configuration..." and if you have an application
configured, it will be enabled. Then, in the "mappings" tab, make sure the
CGI page extension is listed there with a ScriptMap engine.

POST to a CGI or ISAPI should work by default as soon as you allow "Scripts
and Executables", have the right ACLs, and enabled the CGI EXE/ ISAPI DLL in
Web Service Extensions. POST to a Script need the additional configuration
in the "mappings" tab (which declares which CGI/ISAPI runs for the given
extension, at which point it is the same case as POST'ing to a CGI/ISAPI).

--
//David
IIS
<a style='text-decoration: underline;' href="http://blogs.msdn.com/David.Wang" target="_blank">http://blogs.msdn.com/David.Wang</a>
This posting is provided "AS IS" with no warranties, and confers no rights.
//
"mbstone99" <mbstone99.1kvpp3.TakeThisOut@mail.webservertalk.com> wrote in message
news:mbstone99.1kvpp3@mail.webservertalk.com...

 > I suspect that you either:
 > 1. Did not declare the CGI page extension to be a ScriptMap
 > 2. Did not allow Scripts/Executables execution option in the
 > directory
 > containing the CGI page.
 >

I am having the same issue here with that 405 error. We are running
IIS on a Win 2003 Server. I checked all the NT file persmissions to
make sure they were correct as well as I made sure that web permissions
has scripting and executables execution option for the directory. The
only part that I don't understand where to turn it on is declaring the
CGI page extension to be a ScriptMap. Could you please elaborate on
how I set that up.

Thanks
Matt



--
mbstone99
------------------------------------------------------------------------
Posted via <a style='text-decoration: underline;' href="http://www.webservertalk.com" target="_blank">http://www.webservertalk.com</a>
------------------------------------------------------------------------
View this thread: <a style='text-decoration: underline;' href="http://www.webservertalk.com/message875349.html" target="_blank">http://www.webservertalk.com/message875349.html</a><!-- ~MESSAGE_AFTER~ -->
 >> Stay informed about: HTTP Error 405-HTTP verb used to access this page is not a.. 
Back to top
Login to vote
Display posts from previous:   
Related Topics:
Error 405 http verb not allowed - Hello all! I am trying to get a form to post on an IIS 6.0 server (also tried it on IIS 5.0) and keep getting "The page you are looking for cannot be displayed because an invalid method (HTTP verb) was used to attempt access." "HTTP Er...

HTTP error 404: The page cannot be found - I have a Internal Website with directory that contains different files formats that our users should be able to download or view directly. The files are mostly with extensions doc, xsl, ppt, msg, rtf, pdf. The server is Win2K3 with IIS 6.0. My users...

http 500 error , can't open asp page - I just install a win2k server, but i can not brower localhost web page, prompt server aplication error, http 500 error. I have turned off friendly errors, no other error information.it was always prompt server aplication error, in the event log, there....

IIS HTTP 500 Error - Not Page Related - We are getting an HTTP 500 in our IIS logs that looks similar to the following: 2003-09-04 17:39:17 IP ADDR - IP ADDR 80 - - - 500 - These are usually found following a GET to a PDF document. I setup a custom error handler for IIS and the HTTP 500 ..

Event ID 2236 when trying to view .csp page, http error 500 - IIS6 and Windows server 2003 and Crystal Enterprise WHen I try to view a web page that I believe is .csp file I get an http error 500. When I look at the even log that attempt to look at the web page generates event id 2236 The server failed to load..
   Web Hosting and Web Master Forums (Home) -> IIS All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]