This is a discussion on "The page you are looking for cannot be displayed because the page address is incorrect. " within the PHP General forums, part of the PHP Programming Forums category; Hi, I'm trying to post from an asp page to a php and I get this error: The page ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hi,
I'm trying to post from an asp page to a php and I get this error: The page you are looking for cannot be displayed because the page address is incorrect. then later on in the same page I get the error: http 405 resource not allowed internet information services. I have no experience with php so any advice on what is causing this would be greatly appreciated (and please excuse any bone-head mistakes). Both pages reside in the same directory. Thanks, AC |
|
|||
|
--- AMC <aboehme@netgate.net> wrote:
> I'm trying to post from an asp page to a php and I get this error: > > The page you are looking for cannot be displayed because the page > address is incorrect. > > then later on in the same page I get the error: > > http 405 resource not allowed > internet information services. > > I have no experience with php so any advice on what is causing > this would be greatly appreciated (and please excuse any bone-head > mistakes). My only guess is: 1. You are using IIS 2. IIS doesn't know that 405 is the status code for Method Not Allowed 3. IIS is configured to not allow the POST request method That's truly a guess, but I might be right. :-) Chris ===== My Blog http://shiflett.org/ HTTP Developer's Handbook http://httphandbook.org/ RAMP Training Courses http://www.nyphp.org/ramp |
|
|||
|
* Thus wrote Chris Shiflett (shiflett@php.net):
> --- AMC <aboehme@netgate.net> wrote: > > I'm trying to post from an asp page to a php and I get this error: > > > > The page you are looking for cannot be displayed because the page > > address is incorrect. > > > > then later on in the same page I get the error: > > > > http 405 resource not allowed > > internet information services. > > > > I have no experience with php so any advice on what is causing > > this would be greatly appreciated (and please excuse any bone-head > > mistakes). > > My only guess is: > > 1. You are using IIS > 2. IIS doesn't know that 405 is the status code for Method Not Allowed > 3. IIS is configured to not allow the POST request method > hmm.. I thought 'only' implied singular :) IIRC, the manual under the installation of the OS the php is installed on explains this issue. Curt -- "My PHP key is worn out" PHP List stats since 1997: http://zirzow.dyndns.org/html/mlists/ |
|
|||
|
--- Curt Zirzow <php-general@zirzow.dyndns.org> wrote:
> > My only guess is: > > > > 1. You are using IIS > > 2. IIS doesn't know that 405 is the status code for Method Not Allowed > > 3. IIS is configured to not allow the POST request method > > hmm.. I thought 'only' implied singular :) It was a composite guess. :-) Plus, why pass up the opportunity to point out stupid things about Microsoft software (like putting the wrong description for a response status code)? > IIRC, the manual under the installation of the OS the php is > installed on explains this issue. I'm not sure if Google is broken, but a search for "405 site:www.php.net" returns zero results. I would give a specific link in the manual if I could find one. Chris ===== My Blog http://shiflett.org/ HTTP Developer's Handbook http://httphandbook.org/ RAMP Training Courses http://www.nyphp.org/ramp |