Hi, I recently downloaded typo 2.0.6 and rails 0.13 and tried to run them on OS 10.3.9 Mac using MySQL 4.1.7-standard.
I got the server up and running but when I visit `http://localhost:3000/`I get a messge: Not Found `/' not found. WEBrick/1.3.1 (Ruby/1.8.2/2004-11-03) at localhost:3000 Here's the steps I took: 1. $ sudo gem install rails Successfully installed rails-0.13.0 Successfully installed activesupport-1.1.0 Successfully installed activerecord-1.11.0 Successfully installed actionpack-1.9.0 Successfully installed actionmailer-1.0.0 Successfully installed actionwebservice-0.8.0 2. $ cd /tmp ; tar xf typo-2.0.6.tar 3. $ cd typo-2.0.6 4. $ vi config/databases.yml # Added password to development config 5. Set up a database called `typo_dev` in mysql. 6. $ mysql -u root -p typo_dev < db/schema.mysql.sql 7. $ ./script/server => Rails application started on http://0.0.0.0:3000 [2005-07-08 11:54:08] INFO WEBrick 1.3.1 [2005-07-08 11:54:08] INFO ruby 1.8.2 (2004-11-03) [powerpc-darwin7.5.0] [2005-07-08 11:54:08] INFO WEBrick::HTTPServer#start: pid=2901 port=3000 8. Pointed Safari to http://localhost:3000/ and got the error message `/' not found. The server spat out the following: #<NoMethodError: undefined method `new_session' for #<CGI::Session:0x279f530 @session_id="c71a572ebcdd816d">> ["/usr/local/lib/ruby/gems/1.8/gems/actionpack-1.9.0/lib/ action_controller/session/active_record_store.rb:244:in `initialize'", "/usr/local/lib/ruby/1.8/cgi/session.rb:266:in `new'", "/usr/local/lib/ruby/1.8/cgi/session.rb:266:in `initialize'", "/usr/local/lib/ruby/gems/1.8/gems/actionpack-1.9.0/lib/ action_controller/cgi_process.rb:94:in `new'", "/usr/local/lib/ruby/gems/1.8/gems/actionpack-1.9.0/lib/ action_controller/cgi_process.rb:94:in `session'", "/usr/local/lib/ruby/gems/1.8/gems/actionpack-1.9.0/lib/ action_controller/base.rb:729:in `assign_shortcuts'", "/usr/local/lib/ruby/gems/1.8/gems/actionpack-1.9.0/lib/ action_controller/base.rb:343:in `process'", "/usr/local/lib/ruby/gems/1.8/gems/actionpack-1.9.0/lib/ action_controller/rescue.rb:20:in `process_with_exception'", "/usr/local/lib/ruby/gems/1.8/gems/rails-0.13.0/lib/dispatcher.rb:34:in `dispatch'", "/usr/local/lib/ruby/gems/1.8/gems/rails-0.13.0/lib/webrick_server.rb: 103:in `handle_dispatch'", "/usr/local/lib/ruby/gems/1.8/gems/rails-0.13.0/lib/webrick_server.rb: 69:in `service'", "/usr/local/lib/ruby/1.8/webrick/httpserver.rb:97:in `service'", "/usr/local/lib/ruby/1.8/webrick/httpserver.rb:58:in `run'", "/usr/local/lib/ruby/1.8/webrick/server.rb:153:in `start_thread'", "/usr/local/lib/ruby/1.8/webrick/server.rb:147:in `start'", "/usr/local/lib/ruby/1.8/webrick/server.rb:147:in `start_thread'", "/usr/local/lib/ruby/1.8/webrick/server.rb:97:in `start'", "/usr/local/lib/ruby/1.8/webrick/server.rb:89:in `each'", "/usr/local/lib/ruby/1.8/webrick/server.rb:89:in `start'", "/usr/local/lib/ruby/1.8/webrick/server.rb:79:in `start'", "/usr/local/lib/ruby/1.8/webrick/server.rb:79:in `start'", "/usr/local/lib/ruby/gems/1.8/gems/rails-0.13.0/lib/webrick_server.rb: 55:in `dispatch'", "./script/server:48"] [2005-07-08 11:55:18] ERROR `/' not found. 127.0.0.1 - - [08/Jul/2005:11:55:16 EST] "GET / HTTP/1.1" 404 270 - -> / Any suggestions on what I'm doing wrong and how to fix it would be appreciated. Thanks, Mark.
