Displaying 1 result from an estimated 1 matches for "productionn".
Did you mean:
production
2006 Apr 13
1
Uninitialized constant in a template for production server only
...in the various environments *.rb file
One of them is a link to another product. It changes based on what
environments for example we have in development.rb the following set:
OTHER_PRODUCT = "localhost:3002"
in staging.rb we have:
OTHER_PRODUCT = "stage.server.url"
and in productionn.rb we have:
OTHER_PRODUCT = "production.server.url"
In the first two instances everything is fine, but in the production
server we always get a 500 error on any page that has a link_to set
to use that variable.
All servers are running rails 1.1.2 and ruby 1.8.4 any thoughts?
Andre...