Changeset 363928
- Timestamp:
- 03/23/2011 08:19:38 PM (15 years ago)
- Location:
- gts-translation
- Files:
-
- 4 edited
-
tags/1.1.3/lib/db/GtsDbSchema.php (modified) (3 diffs)
-
tags/1.1.3/readme.txt (modified) (1 diff)
-
trunk/lib/db/GtsDbSchema.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
gts-translation/tags/1.1.3/lib/db/GtsDbSchema.php
r305620 r363928 46 46 modified_time timestamp not null default now(), 47 47 UNIQUE KEY (local_id, language) 48 ) ",48 ) CHARACTER SET 'utf8'", 49 49 50 50 … … 62 62 UNIQUE KEY (local_id, language), 63 63 UNIQUE KEY (post_slug(255), language) 64 ) ",64 ) CHARACTER SET 'utf8'", 65 65 66 66 … … 77 77 UNIQUE KEY (local_name, language), 78 78 UNIQUE KEY (slug, language) 79 ) "79 ) CHARACTER SET 'utf8'" 80 80 ); 81 81 -
gts-translation/tags/1.1.3/readme.txt
r363906 r363928 108 108 Once the translated content is approved by a moderator, it is stored on your own server in your WordPress database. 109 109 We'll also keep a copy in our database in case the moderators or editors decide to make more changes. 110 111 112 = When I switch my blog to Russian, all I see are question marks...what gives? 113 This happens when the data is stored in MySQL with the wrong character encoding. Execute the following (being sure to 114 replace 'wp_' with the prefix specified in wp-config.php if you've changed that value): 115 116 ALTER TABLE wp_gts_translated_options CONVERT TO CHARACTER SET 'utf8'; 117 ALTER TABLE wp_gts_translated_posts CONVERT TO CHARACTER SET 'utf8'; 118 ALTER TABLE wp_gts_translated_terms CONVERT TO CHARACTER SET 'utf8'; 119 120 Then get in touch with us so that we can help you reload your content. 110 121 111 122 -
gts-translation/trunk/lib/db/GtsDbSchema.php
r305620 r363928 46 46 modified_time timestamp not null default now(), 47 47 UNIQUE KEY (local_id, language) 48 ) ",48 ) CHARACTER SET 'utf8'", 49 49 50 50 … … 62 62 UNIQUE KEY (local_id, language), 63 63 UNIQUE KEY (post_slug(255), language) 64 ) ",64 ) CHARACTER SET 'utf8'", 65 65 66 66 … … 77 77 UNIQUE KEY (local_name, language), 78 78 UNIQUE KEY (slug, language) 79 ) "79 ) CHARACTER SET 'utf8'" 80 80 ); 81 81 -
gts-translation/trunk/readme.txt
r363907 r363928 108 108 Once the translated content is approved by a moderator, it is stored on your own server in your WordPress database. 109 109 We'll also keep a copy in our database in case the moderators or editors decide to make more changes. 110 111 112 = When I switch my blog to Russian, all I see are question marks...what gives? 113 This happens when the data is stored in MySQL with the wrong character encoding. Execute the following (being sure to 114 replace 'wp_' with the prefix specified in wp-config.php if you've changed that value): 115 116 ALTER TABLE wp_gts_translated_options CONVERT TO CHARACTER SET 'utf8'; 117 ALTER TABLE wp_gts_translated_posts CONVERT TO CHARACTER SET 'utf8'; 118 ALTER TABLE wp_gts_translated_terms CONVERT TO CHARACTER SET 'utf8'; 119 120 Then get in touch with us so that we can help you reload your content. 110 121 111 122
Note: See TracChangeset
for help on using the changeset viewer.