Undefined error on the 'Welcome Aboard' page

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

On Mon, Oct 12, 2009 at 1:59 PM, Ken K.
[email protected] wrote:

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

The first thing to do is look in your app’s log file.


Hassan S. ------------------------ [email protected]
twitter: @hassan

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.

On Oct 12, 4:59 pm, Ken K. [email protected]