I, [2017-03-19T19:46:23.258443 #12441] INFO -- : Completed 500 Internal Server Error in 29ms (ActiveRecord: 3.5ms) F, [2017-03-19T19:46:23.260961 #12441] FATAL -- : ActionView::Template::Error (invalid byte sequence in UTF-8): 1: <% if @notes %> 2: <fieldset class="preview"><legend><%= l(:field_notes) %></legend> 3: <%= textilizable @notes, :attachments => @attachments, :object => @issue %> 4: </fieldset> 5: <% end %> 6: lib/redmine/wiki_formatting/markdown/formatter.rb:62:in `gsub!' lib/redmine/wiki_formatting/markdown/formatter.rb:62:in `to_html'
"last_journal_id"=>"4983" mysql> update journals set notes="" where id=4983;
ActionView::Template::Error (undefined method `close_duplicate_issues'
it looks like config/settings.yml is from the old version, did you follow http://www.redmine.org/projects/redmine/wiki/RedmineUpgrade ?
Missing `secret_token` and `secret_key_base` for 'development' environment, set these values in `config/secrets.yml`
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'identified by 'password'' at line 1
mysql> create user 'user'@'localhost' identified by 'password'; mysql> grant all privileges on db.* to 'user'@'localhost';
mysqldump: Error: 'Access denied; you need (at least one of) the PROCESS privilege(s) for this operation' when trying to dump tablespaces
GRANT PROCESS ON *.* TO "backup-user"@localhost;