Hi Andy, At Wed, 17 May 2000 23:43:27 -0400, Andrew Hunt <Andy / Toolshed.Com> wrote: > I've been trying to get mod_ruby to work with the latest version > of Ruby from CVS, and it's just not happening for me. I'm on a RedHat > Linux system, 2.0.35 kernel and such, Apache 1.3.12. > > When I point the browser to a .rb script, all I get in the error log > is: > > ruby: [BUG] Segmentation fault Can I see your script? mod_ruby-0.1.8 is working with ruby-1.5.4(2000-05-18) and apache-1.3.12 on my machine. ------------- $ cat ~shugo/public_html/test.rb require "cgi" cgi = CGI.new print cgi.header("type"=>"text/plain") print "hello world\n" $ lynx -mime_header http://localhost/~shugo/test.rb HTTP/1.1 200 OK Date: Thu, 18 May 2000 09:02:12 GMT Server: Apache/1.3.12 (Unix) Debian/GNU mod_ruby/0.1.8 Ruby/1.5.4(2000-05-18) Connection: close Content-Type: text/plain hello world ------------- FYI, you can get the latest version of mod_ruby from CVS. $ cvs -d :pserver:anonymous / cvs.netlab.co.jp:/home/cvs login (Logging in to anonymous / cvs.netlab.co.jp) CVS password: guest $ cvs -d :pserver:anonymous / cvs.netlab.co.jp:/home/cvs checkout mod_ruby Shugo