Defect #1169
closedNoMethodError in IssuesController#new
0%
Description
Redmine 0.6.3 update to Redmine 0.7.0 RC1 . when click "New issue" ,system reply :
NoMethodError in IssuesController#new
Files
Updated by li wei over 16 years ago
NoMethodError message attachment.
Updated by li wei over 16 years ago
when add a file , system reply "+NoMethodError in IssuesController#edit+"
Updated by Jean-Philippe Lang over 16 years ago
- Status changed from New to Closed
You didn't migrate your database. See RedmineUpgrade.
Updated by li wei over 16 years ago
My Upgrading step is :
1. mysqldump redmine_production > redmine_production_v0.6.3.sql;
2. uninstall redmine(version 0.6.3);
2. reinstall redmine.0.7.0.RC1;
3. bin/mysql.exe source redmine_production_v0.6.3.sql;
I have not use "RedmineUpgrade" , and "RedmineUpgrade" is the only way ?
Updated by li wei over 16 years ago
After import redmine_production_v0.6.3.sql, all is ok, but "New issue" report "No Mehod Error".
Updated by Jean-Philippe Lang over 16 years ago
You have to migrate your Redmine database in order to make it work with the new version of Redmine.
Run this in your Redmine directory:
rake db:migrate RAILS_ENV="production"
And restart the application.