Re: [Rails] Action Controller: Exception caught.

2020-03-23 Thread SM Ehsan
Hello, I think you misconfigure the database. There is no database username named root. Please check the database.yml file. Thank you On Mon, Mar 23, 2020, 9:57 PM Walter Lee Davis wrote: > It appears that you have configured a database, but that database isn't > running correctly, or doesn't

Re: [Rails] Action Controller: Exception caught.

2020-03-23 Thread Walter Lee Davis
It appears that you have configured a database, but that database isn't running correctly, or doesn't have a user named "root". That name is commonly used in a default MySQL install. If you're using a different database engine, then the default user may be named differently. That's where I

[Rails] Action Controller : Exception Caught

2012-01-24 Thread Anand Srinivasan
I had opened an existing ROR project in Netbeans 7.0. (Rails 3.1.3/Ruby 1.9.3) I was able to open the index home page of the project after compiling and and uploading to Webrick server. After I enter the URL as: http://localhost:3000/attachment/attach (server/controller/view-file), I receive a

Re: [Rails] Action Controller : Exception Caught

2012-01-24 Thread Colin Law
On 24 January 2012 11:55, Anand Srinivasan li...@ruby-forum.com wrote: I had opened an existing ROR project in Netbeans 7.0. (Rails 3.1.3/Ruby 1.9.3) I was able to open the index home page of the project after compiling and and uploading to Webrick server. After I enter the URL as:

[Rails] Action Controller: Exception caught

2011-12-13 Thread Scott Sewares
Hello, I am trying to this project to work but I ran into this issue, the project is from a book called Beginning Ruby on Rails E-Commerce: From Novice to Professional. It references stuff from Rails 1.0. I am still new at using Ruby and Rails. Thanks for any help. NoMethodError in

Re: [Rails] Action Controller: Exception caught

2011-12-13 Thread Frederick Cheung
Error messages for was removed in rails 3. It was extracted to a plugin, don't remember exactly what the plugin was called but it's in the rails GitHub repo. Rails has changed massively since 1.0 - I really would try and find some more up to date material to work from. Fred. Sent from my

[Rails] Action Controller: Exception caught

2011-11-15 Thread Scott Sewares
Hello All, I am taking a programming class and I am running into some problems with a Rail program I am working on from a book called Beginning Rails 3, Updated. The book is having me create a blog application and I get to the point where I run the rails web server. When the page loads there is a

Re: [Rails] Action Controller: Exception caught

2011-11-15 Thread kevin
You do not have title column in your database , try generate a migration to add the missing columns -- kevin Sent with Sparrow (http://www.sparrowmailapp.com/?sig) On Wednesday, November 16, 2011 at 11:12 AM, Scott Sewares wrote: Hello All, I am taking a programming class and I am

Re: [Rails] Action Controller: Exception caught

2011-11-15 Thread Gomzi Pai
go to your app root folder and try running rake db:migrate On Wed, Nov 16, 2011 at 8:42 AM, Scott Sewares li...@ruby-forum.com wrote: Hello All, I am taking a programming class and I am running into some problems with a Rail program I am working on from a book called Beginning Rails 3,