Okay, so I just installed Ruby and rails on my pc. Windows XP service pak 3.
Got it running and went to the 127.0.0.1:3000 url and got the welcome aboard page, but when I click to check the Application Environment I get an undefined error.
any ideas
thanks
The first thing to do is look in your app's log file.
Most common first problem is that you haven't got the database enabled. Check the file "config/database.yml" and you will see something like:
# SQLite version 3.x # gem install sqlite3-ruby (not necessary on OS X Leopard) development: adapter: sqlite3 database: db/development.sqlite3 pool: 5 timeout: 5000
In order for this to work you need both the sqlite3 executable and the sqlite3-ruby gem.