There is that little web app at work which was based on Rails 1.0 and uses the upload progress indicator. This feature was marked as experimental in the Rails 1.0 API documentation.
After upgrading to Rails 1.1 following the simple instructions in the Rails blog and restarting the Apache web server, the Rails app didn’t start up anymore. After a lot of useless thinking I stumbled upon this blog entry which solved the problem. If you use the upload prograss feature of Rails 1.0 and want to upgrade to Rails 1.1, follow these two steps:
- Run
script/plugin install upload_progress
(because the upload progress is now a plug-in) - Remove
ActionController::Base.enable_upload_progress
fromconfig/environment.rb
technorati tags: rubyonrails, upgrade, upload, progress
One Response to Upgrading to Ruby On Rails 1.1