I'm getting this error:
Connection: Close HTTP/1.1 405 Method not allowed Server: Microsoft-IIS/5.0 Date: Wed, 25 Aug 2004 20:43:49 GMT Allow: OPTIONS, TRACE, GET, HEAD Content-Length: 3923 Content-Type: text/html
when trying to submit a form (method - post)
using php5 (just installed) / IIS 5
.php is configured to allow all verbs in IIS config
here are some relevant php.ini settings - anything stand out here or other settings I should check? :
DATA HANDLING:
variables_order = "GPCS"
register_globals = on (turned this on just to check)
register_long_arrays = Off
register_argc_argv = Off
magic_quotes_gpc = Off
magic_quotes_runtime = Off
COOKIES:
session.use_cookies = 1
; session.use_only_cookies = 1
session.name = PHPSESSID
session.auto_start = 0
session.cookie_lifetime = 0
session.cookie_path = /
session.cookie_domain =
Also, should I allow all the php_xxx.dll files?
Any help would be GREATLY appreciated as we're pulling out our hair over this one.Looks more like an IIS configuration problem that doesn't allow the post method. What happens if you change the method to get?
Connection: Close HTTP/1.1 405 Method not allowed Server: Microsoft-IIS/5.0 Date: Wed, 25 Aug 2004 20:43:49 GMT Allow: OPTIONS, TRACE, GET, HEAD Content-Length: 3923 Content-Type: text/html
when trying to submit a form (method - post)
using php5 (just installed) / IIS 5
.php is configured to allow all verbs in IIS config
here are some relevant php.ini settings - anything stand out here or other settings I should check? :
DATA HANDLING:
variables_order = "GPCS"
register_globals = on (turned this on just to check)
register_long_arrays = Off
register_argc_argv = Off
magic_quotes_gpc = Off
magic_quotes_runtime = Off
COOKIES:
session.use_cookies = 1
; session.use_only_cookies = 1
session.name = PHPSESSID
session.auto_start = 0
session.cookie_lifetime = 0
session.cookie_path = /
session.cookie_domain =
Also, should I allow all the php_xxx.dll files?
Any help would be GREATLY appreciated as we're pulling out our hair over this one.Looks more like an IIS configuration problem that doesn't allow the post method. What happens if you change the method to get?