Project

General

Profile

HTML tags not parsed after restoring

Added by julian Garcia almost 9 years ago

Hi,

I've done a fresh installation of redmine 3.0.3 under ubuntu 14.04 following these instructions: https://niccomatik.de/2015/03/installing-redmine-3-0-on-clean-ubuntu-14-04/
After installed I restored my current DB (from a Redmine 2.6) but all the editions that we made in our projects are showing the HTML tags. Seems that the browsers (firefox, chrome and IE) are dealing tags as text.

To restore the DB I did:
mysql> drop database redmine;
mysql> CREATE DATABASE redmine CHARACTER SET utf8;
mysql> GRANT ALL PRIVILEGES ON redmine.* TO 'redmine'@'localhost' IDENTIFIED BY 'password';

$ mysql -u root -p -Dredmine < /vagrant/redmine_backup.sql
$ RAILS_ENV=production bundle exec rake db:migrate

someone could give a clue?

Thanks