I've been trying to get Rails working, but whenever I try to create my own view, it returns a 500 error.
So, here's the steps I've followed to get where I am:
I installed Ruby to C:\Ruby
I installed Rubygems to C:\Ruby\rubygems-1.3.5 and ran ruby setup.rb
In the cmd prompt, I installed rails using gem install rails
.
I created a Projects folder in C:\Ruby, and navigated to it in the cmd prompt
In the cmd prompt, I ran rails project1
, then cd project1
In the cmd prompt, I ran ruby script/generate controller home index
In the cmd prompt, I ran ruby script/server
I haven't gotten any errors at all yet.
I go to http://localhost:3000, and everything is looking good.
I navigate to http://localhost:3000/home/index, and get this:
We're sorry, but something went wrong.
We've been notified about this issue and we'll take a look at it shortly.
I have no clue why. Is there any troubleshooting I can do?