database in redmine appliance image created in latin1 encoding instead utf8

Bug #494202 reported by iav
This bug report is a duplicate of:  Bug #496746: Support Unicode/UTF8 by default. Edit Remove
6
This bug affects 1 person
Affects Status Importance Assigned to Milestone
TurnKey Linux
New
Undecided
Unassigned

Bug Description

Database in "redmine" appliance image created in latin1 encoding instead utf8.
This cause non-latin1 characters can't be used, at leas in forums, wiki, project and themes descriptions.

I correct that by dump all databases, replace codepage from latin1 to utf8, and restore bases from this dump.

Redmine-related databases shuold be created with utf8 encoding, and sql server default encoding should be utf8.

iav (iav)
description: updated
summary: - database in redmine appliance imace created in latin1 encoding instead
+ database in redmine appliance image created in latin1 encoding instead
utf8
Revision history for this message
iav (iav) wrote :

Possible solutions for already-created systems:

1. dump mysql databases, replace all "CHARSET=latin1" to "CHARSET=utf8", delete redmine databases, restore redmine databases.

2. convert in-place, for every column:

ALTER TABLE `bitnami_redmine`.`issues` MODIFY COLUMN `subject` BLOB NOT NULL,
MODIFY COLUMN `description` BLOB DEFAULT NULL;

ALTER TABLE `bitnami_redmine`.`issues` MODIFY COLUMN `subject` VARCHAR(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
 MODIFY COLUMN `description` TEXT CHARACTER SET utf8 COLLATE utf8_general_ci.

To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.