From: seebs@... (Peter Seebach) Date: 2007-05-14T03:35:26+09:00 Subject: Re: Can't get basic CGI and Form submission working In message <3e9167458ab931a96ea7d6bac880ee7b@ruby-forum.com>, Toby Rodwell writes: >Thanks 's', that did the trick. I've now progressed one step to a new >error message: "405 - POST Method not allowed for the URL " >Anyone any ideas? I'm guessing either its another web server config >issue or I'm not using 'POST' correctly ... Sounds like the web server isn't allowing POSTs to that directory. Try changing the form to a GET and see whether it works; if it does, that's the issue. This has fairly little to do with Ruby per se, and a lot to do with whatever web server you're running. -s