There's a log file in log/development.log
that displays the complete error.
You can see what went wrong by analyzing the last request there.
Damien MATHIEU
2009-10-24 09:55:28
There's a log file in log/development.log
that displays the complete error.
You can see what went wrong by analyzing the last request there.
This screen shot looks like you're running in production mode; if you were in development mode, it would show the error on the page as well as in the log. Try setting the environment variable RAILS_ENV=development and restarting webrick. As dmathieu commented, you'll probably see a database error.
Also, try avoiding webrick. See this discussion.