From: Douglas Livingstone Date: 2005-01-29T06:08:35+09:00 Subject: Re: Best ways to accelerate Ruby's popularity > p.s Did I mention I was still getting 500 errors from apache whenever I > used rails. Can you get plain Ruby files to load? My setup: Get xampp (now you have PHP, MySQL, pache all set up.. perhaps someone who knows their stuff can make a Ruby module for xampp?) edit xampp/apache/conf/httpd.conf add AddHandler cgi-script .rb at the bottom install Ruby using one click installer add the ruby binary to your %PATH% At the top of ruby files, add this line: #!ruby And at the top of the main ruby.rb file: print "Content-type: text/html\n\n" print "\n\n" # your ruby app... That seems to be working, though I only just managed to get it working today... rails has been working by itself, not sure how though :( Douglas