Thanks to this weekend’s BlueHost upgrade (without any notice to their
customers) to rails version 2.0.2 my application broke. Since they seem
incapable of fixing the issue, I decided to try and upgrade the
application to version 2.0.2.
In doing this, I updated all gems, etc. The webbrick server comes up
just fine and the application starts.
However, when the application attempts to update a database record, I
get the following error trace:
Thanks to this weekend’s BlueHost upgrade (without any notice to their
customers) to rails version 2.0.2 my application broke. Since they seem
incapable of fixing the issue
All they have to do is install the version of Rails your app uses.
It’s completely possible to have multiple versions of Rails
installed.
gem list --local|grep rails
rails (2.0.2, 2.0.1, 1.2.5, 1.2.4, 1.2.3)
You also have the option of freezing your app to a specific version of
Rails.
And then at my first convenience I would move to a smarter host.
Greg, thanks for the input. You can bet I’ll be looking around for
another hosting service. However, in the meantime, I’d still like to
get this application back up and running. Do you have any idea why
“questionnaire.update” would fail?
Thanks to this weekend’s BlueHost upgrade (without any notice to their
customers) to rails version 2.0.2 my application broke. Since they seem
incapable of fixing the issue
All they have to do is install the version of Rails your app uses.
It’s completely possible to have multiple versions of Rails
installed.
gem list --local|grep rails
rails (2.0.2, 2.0.1, 1.2.5, 1.2.4, 1.2.3)
You also have the option of freezing your app to a specific version of
Rails.
And then at my first convenience I would move to a smarter host.