NT4, Win2k, XP, IIS will not accept an HTTP POST without a filename in the URL. The sever returns a 403 (Method not allowed) error.
Also; passing parameters using GET without a filename results in default behaviour of the page.
Note:
I got it working by adding $PHP_SELF in place of $base_url but I know that this would break CLEAN URL's
Comments
Comment #1
moshe weitzman commentedI think you mean '405' error instead of 403. I've seen these too.
I have fixed this using URL Replacer: http://www.pstruh.cz/help/urlrepl/library.htm, which is a free ISAPI filter. The only pattern I have configured in URL Replacer is
If you want to enable clean URLs, use the folowing pattern instead (note that the '41'below can be any virtual directory you want. I am unable to get this to work with Drupal running in the home directory of a site).
One known problem with the above pattern is that it performs replacements even on requests to existing directories like 'misc'. this causes images not to load and admin pages to look bad.
Comment #2
jsloan commentedWell - I see that the HTML filter mangled the form() sample code; so here it is again:
Fix the form tag and you're ready to test
Comment #3
dries commentedMoshe has been working on this: see also http://lists.drupal.org/pipermail/drupal-devel/2003-April/023689.html.
Comment #4
moshe weitzman commentedI submitted patch today to Dries which fixes this.
Comment #5
moshe weitzman commentedfixed with today's commit. closed.