Form working locally, and not in heroku? Rails 3?

You should remove the space between the method call form_for and the opening parenthesis ( As a general rule, never do this. It's ambiguous and may result in the parser thinking that you're calling form_for with one argument, like this: %= form_for((@item, :url => @company, @item)) do |item_form| % which would be a syntax error, resulting in the errors you're seeing (e.g. Unexpected comma) it should be: @company, @item) do |item_form| %> # or, remove the parentheses altogether (up to your usage tastes): @company, @item do |item_form| %.

You should remove the space between the method call form_for and the opening parenthesis (. As a general rule, never do this. It's ambiguous and may result in the parser thinking that you're calling form_for with one argument, like this: @company, @item)) do |item_form| %> ... which would be a syntax error, resulting in the errors you're seeing (e.g. Unexpected comma) # it should be: @company, @item) do |item_form| %> # or, remove the parentheses altogether (up to your usage tastes): @company, @item do |item_form| %.

Ahh, what a silly mistake! Thanks! – Elliot Sep 24 at 22:39.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions