বৰ্ণনা
This plugin can convert your WordPress database (both tables and columns) to UTF-8 character set. It will be especially useful when you move your database from one server to another where the default CHARSET is not UTF-8.
ইনষ্টলেশ্যন
- Upload the directory
utf-8-db-converterto the/wp-content/plugins/directory - Activate the plugin through the
Pluginsmenu in WordPress - Then you’ll see the sub-menu
UTF-8 DB Converterunder thePluginsmenu - Follow the instructions – Done!
সঘনাই উত্থাপিত প্ৰশ্ন
- What’s happening “behind the scene”?
-
- Change tables:
ALTER TABLE $table DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci - Change columns:
ALTER TABLE $table CHANGE $field_name $field_name $field_type CHARACTER SET utf8 COLLATE utf8_general_ci
- Change tables:
- What about the WP version?
-
As you’ve seen, only MySQL and PHP are required. Roughly speaking, it has nothing to do with WordPress, so you can use almost any version of WordPress.
অৱদানকাৰী আৰু বিকাশকাৰীসকল
“Convert WP Database to UTF-8” হৈছে মুক্ত উৎসৰ ছফ্টৱেৰ। এইসকল লোকে এই প্লাগিনত অৱদান আগবঢ়াইছে।
অৱদানকাৰীসকলআপোনাৰ ভাষাত “Convert WP Database to UTF-8” অনুবাদ কৰক।
বিকাশৰ প্ৰতি আগ্ৰহী?
ক’ড ব্ৰাউজ কৰক, SVN ৰিপজিটৰী চাওক নাইবা RSS-দ্বাৰা বিকাশৰ পঞ্জী ছাবস্ক্ৰাইব কৰক।
সলনি-পঞ্জী
2011-10-14 version 1.0.2
- use COLLATE utf8_general_ci instead of utf8_bin
2009-06-20 version 1.0.0 released
