Yes I am a very newbie to Ruby on Rails. Just few hours back installed
- Ruby 1.8.6 (on windows XP) - Installed MySQL - installed Rails 2.2.2 (using gem "gem install rails") - created a sample application following the OnLamp article advice ("rails demo") (article link - Radar – O’Reilly ) - changed the default database to be used as MySQL using ( "rails demo -d mysql") - started WEBrick ("ruby script/server") - Created a new controller ( "ruby script/generate controller Book")
When I try to use the root url http://localhost:3000/ I see the defualt page correctly .. but when I try to http://localhost:3000/Book and I get an error page:
CGI::Session::CookieStore::TamperedWithCookie in BookController#index
CGI::Session::CookieStore::TamperedWithCookie
Response
Headers:
{"cookie"=>, "Content-Type"=>"", "Cache-Control"=>"no-cache"}
I have no clue what is going on.. please HELP. I am completely blocked.
Thanks, CG