Redmine - cyrilic (russion) symbols looks like ‘???’
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Click below to sign up and get $100 of credit to try our products over 60 days!
I’ve updated the image so that it’s set to utf8 by default.
Great quick fix, helped me too. You’re the man!
Thank you !!! You realy help me.
Run the following commands to fix that: <br><pre># Do a backup: <br> <br>mysqldump redmine > redmine_backup.sql <br> <br># Convert to utf8 <br> <br>mysql --database=redmine -B -N -e “SHOW TABLES” | awk ‘{print “ALTER TABLE”, $1, “CONVERT TO CHARACTER SET utf8 COLLATE utf8_general_ci;”}’ | mysql --database=redmine</pre>