Re: [Rails] Heroku problem

2014-01-07 Thread Thomas Murphy
This isn't a Rails problem. It's a very straightforward Heroku error. Go to Heroku and delete some of your sample apps, or pay for an account. On Tue, Jan 7, 2014 at 10:46 AM, pramod gupta wrote: > While deploying a new app on heroku i got this error > > !You've reached the limit of 5 apps

[Rails] Heroku problem

2014-01-07 Thread pramod gupta
While deploying a new app on heroku i got this error !You've reached the limit of 5 apps for unverified accounts. !Add a credit card to verify your account. how to overcome this?? -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.

[Rails] Re: [Rails Heroku] Problem with saving object (on heroku hosting)

2010-06-08 Thread Roman Catz
Thanks Frederick, but I still do not understand what's going on here. I changed this line to belongs_to :contact_type .. The result is the same. Controller was generated as standart scaffold. def create @contact = Contact.new(params[:contact].merge(:user => current_user)) respond_to do |forma

Re: [Rails] [Rails Heroku] Problem with saving object (on heroku hosting)

2010-06-08 Thread Frederick Cheung
On 8 Jun 2010, at 08:37, Roman Catz wrote: > Hi All, > > I have some strange problem which appears only on heroku hosting 2.3.5 > default stack (not on my local computer) > I have some models. Here they are: > > class Contact < ActiveRecord::Base > belongs_to :user > belongs_to :type, :clas

[Rails] [Rails Heroku] Problem with saving object (on heroku hosting)

2010-06-08 Thread Roman Catz
Hi All, I have some strange problem which appears only on heroku hosting 2.3.5 default stack (not on my local computer) I have some models. Here they are: class Contact < ActiveRecord::Base belongs_to :user belongs_to :type, :class_name => "ContactType", :foreign_key => "type_id" validates