From: seebs@... (Peter Seebach) Date: 2007-05-14T03:19:30+09:00 Subject: Re: Can't get basic CGI and Form submission working In message <93ab45c89b36bb0934def101c1a81917@ruby-forum.com>, Toby Rodwell writes: >... would run the script indicated. Instead I get a '404' "The >requested URL was not found on this server." The path you give must be the path within the web server's view, not the filesystem path. So, "/home/bob/src/test.rb" won't work, for instance. Typical would be to put the program in your server's CGI directory, and specify "/cgi-bin/test.rb". -s