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 -- Posted via http://www.ruby-forum.com/.
On Mon, Oct 12, 2009 at 1:59 PM, Ken Kinds <rails-mailing-list-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> 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 ideasThe first thing to do is look in your app''s log file. -- Hassan Schroeder ------------------------ hassan.schroeder-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org 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 Kinds <rails-mailing-l...-ARtvInVfO7ksV2N9l4h3zg@public.gmane.org> 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 > > thanks > -- > Posted viahttp://www.ruby-forum.com/.