How to Convert Character Set and Collation of WordPress Database How to convert character set und Zusammenstellung von WordPress-Datenbank

Since Seit WordPress 2.2 WordPress 2,2 , WordPress supports feature that allows the user to define both the , WordPress unterstützt die Funktion, mit der der Benutzer zu definieren, die sowohl WordPress database character set and collation WordPress Datenbank-Zeichensatz und Sortierfolge with DB_CHARSET and DB_COLLATE values in wp-config.php file. mit DB_CHARSET und DB_COLLATE Werte in wp-config.php Datei. With these values defined, WordPress will use the designated database characterset (charset) and database collation (ie sort order of the letters, numbers, and symbols of a character set) when connecting a database tables. Mit diesen Werten definiert, WordPress wird die benannten Datenbank Zeichensatz (charset) und Datenbank-Zusammenstellung (dh Sortierung der Buchstaben, Zahlen und Symbole der einen Zeichensatz), wenn die Anbindung eines Datenbank-Tabellen.

However, in existing WordPress installations that are upgraded from earlier version of WordPress or not explicitly set a Unicode UTF-8 charset collation, the default database character set is normally set up as Latin1 (default on almost all MySQL installation) with latin1_swedish_ci collation. Allerdings in die bereits bestehenden WordPress-Installationen, die ein Upgrade von früheren Versionen von WordPress oder nicht ausdrücklich eine Unicode UTF-8-Zeichensatz Zusammenstellung, die Standard-Datenbank-Zeichensatz wird normalerweise als latin1 (standardmäßig auf fast alle MySQL-Installation) mit latin1_swedish_ci Sortierung. If you run a bilingual or multilingual blog with WordPress, you may face problem on character encoding when your blog posts are written in other foreign languages, or when you export and backup the database and later attempt to re-import the database dump in the event of database failure or server migration and moving. Wenn Sie eine zwei-oder mehrsprachigen Blog mit WordPress, denen Sie begegnen könnten Problem auf Zeichencodierung, wenn Ihre Blog-Posts sind in anderen Fremdsprachen, oder beim Export und Backup der Datenbank und später Versuch, Re-Import der Datenbank-Dump im Falle der Ausfall oder Datenbank-Server Migration und ergreifend. The symptom is obvious, your WordPress posts or pages will contains garbled, weird and funny characters, sometime just lots of ????? Das Symptom ist offensichtlich, Ihre WordPress Beiträge oder Seiten enthält, wird verstümmelt, seltsame und lustige Figuren, irgendwann einfach viel ????? (question marks), rendering the WordPress database with your hard work useless and output unreadable. (Fragezeichen), so dass die Datenbank mit WordPress Ihre harte Arbeit nutzlos und Ausgang nicht mehr lesbar ist. (May cause also by (Mai dazu führen, dass auch durch wrong charset collation charset falsche Sortierung )

The best solution to the character encoding problem in WordPress is to convert the charset or database and collation to UTF-8 or Unicode. Die beste Lösung für die Zeichencodierung Problem bei WordPress ist die Umwandlung der charset oder Datenbank und Sortierung auf UTF-8 oder Unicode. However, you CANNOT simply connect to MySQL via shell or phpMyAdmin and hoping all your scripts will convert nicely. Sie können jedoch nicht einfach eine Verbindung zum MySQL-Shell oder über phpMyAdmin und in der Hoffnung, alle Ihre Skripte konvertiert schön. As explain by Wie erklären durch WordPress database conversion guide WordPress Datenbank Konvertierung Führer , convert character sets requires using the the MySQL ALTER TABLE command. , Konvertieren Zeichensätze erfordert die Nutzung des MySQL-ALTER TABLE-Befehl. When converting the character sets, all TEXT (and similar) fields are converted to UTF-8, but that conversion will BREAK existing TEXT because the conversion expects the data to be in latin1, but WordPress may have stored unicode characters in a latin1 database, and as a result, data could end up as garbage after a conversion! Bei der Umwandlung der Zeichensätze, wird der gesamte Text (und ähnliche) Felder werden in UTF-8, aber dass die Umstellung brechen bestehenden Textes, weil die Umstellung erwartet, dass die Daten, die in latin1, aber WordPress haben können gespeichert Unicode-Zeichen in einer Datenbank latin1, und als Folge die Daten könnten am Ende als Müll nach einer Umrechnung!

The guide provides a very rough and vague guide as a solution on how to actually convert WordPress MySQL database tables from one character set to another, usually UTF-8. Der Leitfaden bietet eine sehr raue und vage Führer als eine Lösung, wie man eigentlich konvertieren WordPress MySQL-Datenbank-Tabellen von einem Zeichensatz in einen anderen, in der Regel UTF-8. However, the guide actually works, although the process can be lengthy. Allerdings ist die Anleitung tatsächlich funktioniert, allerdings lässt sich der Prozess langwierig. To convert, the steps involved generally are to alter each and every TEXT and related fields inside every WP tables to BLOB, then alter the character set of database and finally change the BLOB fields back to TEXT. Umzuwandeln, die Schritte sind im Allgemeinen zu ändern jeden TEXT und verwandten Bereichen im Inneren jeder WP-Tabellen auf BLOB, dann ändert den Zeichensatz der Datenbank ändern und endlich den BLOB-Feldern zurück zum Text. Looks easy, but how long it would take to convert so many fields on so many tables? Sieht einfach, aber wie lange würde es zum Umwandeln so viele Felder auf so vielen Tischen? Furthermore, you will also need to remember the original type and length or values of all fields. Darüber hinaus müssen Sie auch nicht vergessen, die ursprüngliche Art und Länge der Werte oder alle Felder aus.

andersapt has posted a conversion script named hat eine Conversion-Skript namens convert_to_utf8_sql_generator.txt which automatically generates a list of SQL statements and commands need to fully convert your WordPress database to UTF8 based on the guide. die automatisch generiert eine Liste von SQL-Anweisungen und Kommandos müssen vollständig konvertieren WordPress Ihre Datenbank zu UTF8 basiert auf der Führung. However, there seems to be a minor bug with the script, although the author claimed it worked, where in my case, it simply won’t generate the list of SQL commands to run due to the error “PHP Fatal error: Call to a member function get_results() on a non-object in convert.php on line 37″. Allerdings scheint es einen kleinen Bug mit dem Skript, auch wenn der Autor behauptet, es funktionierte, wo in meinem Fall ist es einfach nicht erzeugen, die Liste der SQL-Befehle ausgeführt aufgrund der Fehlermeldung "PHP Fatal error: Call auf einen Mitglied Funktion get_results () in einem Nicht-Objekt in convert.php on line 37 ". Once fixed, with this script in hand we can easily and quickly convert the database, tables and fields to use utf8_general_ci collation. Einmal festgelegt, mit dem Skript in der Hand können wir einfach und schnell umwandeln der Datenbank, Tabellen und Felder zu verwenden utf8_general_ci Sortierung.

Note: I have tried out Anmerkung: Ich habe versucht, UTF-8 Database Converter plugin UTF-8 Datenbank-Konverter-Plugin , but it’sa failure. , Aber es ist ein Misserfolg. It seemed like the author change to character set directly. Es schien wie der Autor zu ändern Zeichensatz direkt.

Guide to Convert WordPress Database Character Set to UTF8 (Unicode) Guide to Convert Database WordPress Zeichensatzunterstützung auf UTF8 (Unicode)

  1. Take the WordPress blog offline by placing a out-of-service or maintenance notice. Nehmen Sie die WordPress-Blog offline, indem Sie eine Out-of-Service oder die Wartung Hinweis.
  2. Backup database - this is very important, nothing is guaranteed to work. Backup-Datenbank - das ist sehr wichtig, nichts ist garantiert. If you’re using cPanel or other control panel, it’s best to perform a database backup from the control panel itself, where you can restore the database in one piece instead of by SQL statements, in the case of normal dump. Wenn Sie cPanel oder andere Control Panel, ist es am besten, um eine Datenbank-Backup über das Bedienfeld selbst, wo können Sie die Datenbank in einem Stück anstatt von SQL-Anweisungen, im Falle der normalen Dump.
  3. Download the fixed Downloaden Sie das Festnetz convert_to_utf8_sql_generator.txt script and save it with a PHP extension. Skript und speichern Sie sie mit einem PHP-Erweiterung.
  4. Modify the script to input the database name your WordPress blog is using. Ändern Sie das Skript zur Eingabe der Namen Ihrer Datenbank WordPress Blog verwendet. Locate the following text: Suchen Sie den folgenden Text:

    Tables_in_ DATABASENAME Tables_in_ DatabaseName

    The DATABASENAME in red is the only thing that you need to change to match your WordPress database name. Die DatabaseName in rot ist die einzige Sache, die Sie ändern müssen, um Ihren Datenbankname WordPress. It should looks like this after change, for instance, Es sieht aus wie sollten diese nach dem Wechsel, zum Beispiel,

    Tables_in_wp_mydigitallife

  5. Upload the convert_to_utf8_sql_generator.php (or you can rename to a shorter name such as convert.php) to the base root WordPress installation directory, where wp-config.php is also located. Laden Sie die convert_to_utf8_sql_generator.php (oder Sie können den Namen auf einen kürzeren Namen wie convert.php) an die Basis-Installation WordPress root-Verzeichnis, wo wp-config.php befindet sich ebenfalls.
  6. Now, call and browse the script from any web browser. Nun, rufen Sie stöbern und das Skript von jedem beliebigen Web-Browser. To do this, simply add convert_to_utf8_sql_generator.php (or any name you give to the script) to the end of your blog URL (ie http://www.mywebsite.com/convert_to_utf8_sql_generator.php) and press Enter. Um dies zu tun, fügen Sie einfach convert_to_utf8_sql_generator.php (oder einen beliebigen Namen geben Sie an das Skript) bis zum Ende Ihrer Blog-URL (dh http://www.mywebsite.com/convert_to_utf8_sql_generator.php), und drücken Sie Enter. A long list of SQL statements will be generated on the web page. Eine lange Liste von SQL-Anweisungen generiert werden auf der Webseite.
  7. Ensure that your post_content and post title fields on wp_posts table DOES NOT belongs to any indexes or FULLTEXT indexes. Stellen Sie sicher, dass Ihre post_content und Post-Titel Felder auf wp_posts Tabelle nicht gehört zu jedem FULLTEXT-Indizes oder Indizes. Else the type of the fields may not be converted to BLOB with one of the errors list below. Else die Art der Felder können nicht konvertiert werden BLOB mit einem der unten stehenden Liste Fehler. Some plugins, such as related posts tend to add indexes to these fields. Manche Plugins, wie Stellen neigen, um Indizes zu diesen Bereichen. In this case, temporarily drop the indexes. In diesem Fall vorübergehend Rückgang der Indizes.

    ERROR 1170 (42000): BLOB/TEXT column ‘post_content’ used in key specification without a key length ERROR 1170 (42000): BLOB / TEXT-Spalte "post_content" in key specification ohne Schlüssel Länge

    ERROR 1283 (HY000): Column ‘post_content’ cannot be part of FULLTEXT index ERROR 1283 (HY000): Spalte 'post_content' kann nicht Teil von FULLTEXT-Index

  8. Login to your server shell by Telnet or SSH. Melden Sie sich bei Ihrem Shell-Server von Telnet oder SSH. You can skip this part of using Unix shell if you intend to use phpMyAdmin to do the dirty work, but I have not tried it. Können Sie diesen Teil der Verwendung von Unix-Shell, wenn Sie beabsichtigen zu verwenden phpMyAdmin zu tun, das schmutzige Arbeit, aber ich habe nicht versucht. So if you do, do feedback on whether it can be done. Also, wenn Sie das tun, tun Feedback darüber, ob es getan werden kann.
  9. Connect to MySQL server from the shell. Verbindung zum MySQL-Server von der Shell aus.
  10. Issue the following command first in MySQL prompt: Ausgabe der ersten folgenden Befehl in MySQL-Prompt:

    use DATABASENAME ; Verwendung databaseName;

    Again, replace DATABASENAME in red to the actual WordPress database name. Auch hier: Ersetzen Sie DatabaseName in Rot auf die tatsächlichen Datenbanknamen WordPress.

  11. Then copy and paste the whole list of SQL statements auto generated by the conversion script, and paste them into the MySQL prompt. Dann kopieren, und dann die ganze Liste von SQL-Anweisungen automatisch generiert durch die Umwandlung Skript, und fügen Sie sie in die MySQL-Prompt. Each and every SQL command should now be processed and executed by MySQL one by one. Jede und jeder SQL-Befehl sollte nun verarbeitet und ausgeführt von MySQL eins nach dem anderen. You may need to press Enter key to finish off the last one. Möglicherweise müssen Sie drücken Sie Enter-Taste Zum Schluß noch der letzte.
  12. During the processing, the similar error messages related to key length as mentioned may appears. Während der Verarbeitung, die ähnliche Fehlermeldungen im Zusammenhang mit Schlüssellänge wie erwähnt Mai erscheint. In my case, the conversion to BLOB failed with such message in the following fields: In meinem Fall, die Umstellung auf BLOB nicht mit einer solchen Nachricht in den folgenden Bereichen:

    wp_categories.category_nicename
    wp_comments.comment_approved
    wp_links.link_visible
    wp_options.option_name
    wp_postmeta.meta_key
    wp_posts.post_status
    wp_posts.post_name
    wp_posts.post_type
    wp_usermeta.meta_key
    wp_users.user_login

    All these fields are unlikely to contains non-ASCII characters. Alle diese Felder sind unwahrscheinlich, dass die Nicht-ASCII-Zeichen. And fields such as category_nicename (category slug) and post_name (post slug) have been URL encoded (where your URL with unsafe non-alphanumeric characters will be replaced with a percent (%) sign followed by two hex digits and spaces encoded as plus (+) signs). Und Bereichen wie Category_nicename (Kategorie Metallklumpen) und post_name (Post slug) wurden URL-codiert (wo Ihre URL mit unsicheren Nicht-alphanumerische Zeichen ersetzt werden, mit einem Prozent (%) Zeichen gefolgt von zwei Hex-Ziffern und Leerzeichen codiert als plus ( +) Zeichen). Initial encoding of byte codes and character assignments for UTF-8 is consistent with ASCII, so direct conversion of these fields to UTF8 should not bring too much problem. Erste Kodierung von Byte-Codes und Charakter Zuweisungen für UTF-8 steht im Einklang mit ASCII, so dass direkte Umwandlung von diesen Bereichen auf UTF8 sollte nicht zu viel bringen Problem.

  13. Edit the wp-config.php file to add in DB_CHARSET and DB_COLLATE definitions. Bearbeiten Sie die wp-config.php Datei hinzufügen DB_CHARSET und DB_COLLATE Definitionen. Add the following two lines, preferably under the section of MySQL Settings: Fügen Sie die folgenden zwei Zeilen, vorzugsweise unter dem Abschnitt der MySQL-Einstellungen:

    define(’DB_CHARSET’, ‘utf8′); define ( 'DB_CHARSET', 'utf8');
    define(’DB_COLLATE’, ”); define ( 'DB_COLLATE ",");

    As explained in Wie in WordPress Codex WordPress Codex , DB_COLLATE is left blank (null) so that the database collation will be automatically assigned by MySQL based on the database character set. , DB_COLLATE bleibt leer (NULL), so dass die Datenbank Sortierung wird automatisch zugewiesen von MySQL basiert auf der Datenbank-Zeichensatz.

  14. Recreate the indexes and/or FULLTEXT indexes been dropped, if any. Neuaufbau der Indizes und / oder FULLTEXT-Indizes fallengelassen worden ist, wenn überhaupt.
  15. Activate the blog back into production mode. Aktivieren Sie das Blog wieder in Produktion.
  16. Check your blog to see if everything and every characters is okay. Überprüfen Sie Ihr Blog, um zu sehen, wenn alles und jedes Zeichen ist okay.
  17. Delete the PHP script. Löschen Sie das PHP-Skript.

IMPORTANT : This is a machine translated page which is provided "as is" without warranty. WICHTIG: Es handelt sich um eine Maschine der Seite übersetzt wird "as is" ohne Garantie. Machine translation may be difficult to understand. Maschinelle Übersetzung ist vielleicht schwierig zu verstehen. Please refer to Bitte wenden Sie sich an original English article Original Englisch Artikel whenever possible. wann immer dies möglich ist.

Share and contribute or get technical support and help at Aktie und einen Beitrag oder erhalten technische Unterstützung und Hilfe an My Digital Life Forums Meine digitalen Lebens Foren . Werden.



17 Responses to “How to Convert Character Set and Collation of WordPress Database” 17 Responses to "How to convert character set und Zusammenstellung von WordPress Database"

  1. g30rg3_x
    June 23rd, 2007 04:27 23. Juni 2007 04:27
    1

    Hi… Hallo…
    I have to say (in my favor) that m not changing directly the database character set, please review my plugin and you will see that first it will convert your database binary and them to utf8 and finally it will put everything like before encoding but obviously with the UTF-8 character set… Ich muss sagen (zu meinen Gunsten), dass m nicht ändern direkt die Datenbank-Zeichensatz, lesen Sie bitte mein Plugin und Sie werden sehen, dass es erste konvertiert Ihre Datenbank Binär-und ihnen zu utf8 und schließlich wird alles wie vor der Codierung aber offensichtlich mit der UTF-8-Zeichensatz…

    I prefer to do and a.. Ich ziehe zu tun und a..
    ALTER TABLE table_name CONVERT TO CHARACTER SET binary ALTER TABLE table_name zu konvertieren Zeichensatz Binär
    Than just make a mysql sentence for every text/string field, because as you can see the problems comes with key and some index value and the BLOB field type change. Als nur ein mysql-Satz für jeden Text / string Bereich, denn wie Sie sehen können, die Probleme mit einigen Schlüssel-und Index-Wert und die BLOB-Feld-Typ ändern.
    Converting truth the sentence that my plugin use will transform all char to binary, all varchar to varbinary, all text (tynitext, text, mediumtext, longtext) to his binary representations (tinyblob, blob, mediumblob, longblob) and finally just set enum and set types with the collation binary. Converting Wahrheit der Satz, dass mein Plugin-Nutzung werden alle char-Transformation zu binär, alle auf varbinary varchar, wird der gesamte Text (tynitext, Text, MEDIUMTEXT, LONGTEXT) zu seinen Binär-Darstellungen (TINYBLOB, BLOB, MEDIUMBLOB, LONGBLOB) und schließlich gerade ENUM und Set-Typen mit der binären Sortierung.

    I just came here to say this in favor and by the way the majority of the problems of my plugins are related to host configurations and other things that obviously i can control. Ich kam hierher, das zu sagen und zu Gunsten übrigens die Mehrheit der Probleme meiner Plugins sind im Zusammenhang mit Host-Konfigurationen und andere Dinge, die ich natürlich kontrollieren kann.

    BTW its a better to solution to avoid problems of key and index by just setting the correct binary representation rather than using blob in all the way. BTW seine auf eine bessere Lösung zur Vermeidung von Problemen der Schlüssel und Inhalt nur durch die richtige Einstellung binäre Repräsentation als vielmehr mit Blob in allen den Weg.

    Greetings from mexico and sorry for all mistyping problems. Grüße aus Mexiko und Leid für alle mistyping Probleme.

  2. fotizo φωτίζω » Blog Archive » Wordpress 2.1 -> 2.2.1 fotizo φωτίζω »Blog Archiv» Wordpress 2,1 -> 2.2.1
    July 11th, 2007 16:00 11. Juli 2007 16:00
    2

    [...] MySQL 本身的問題,便一知半解地去亂 set,結果一樣。。。 (5:00) 直至我讀完這篇文章,發現是 WP 由 2.1 升至 2.2.1 之後,閱讀 db 的 script 真的變了,讀不了 SQL db [...] [...] MySQL本身的问题,便一知半解地去乱gesetzt,结果一样... (5:00)直至我读完这篇文章,发现是WP由2,1升至2.2.1之后,阅读db的Skript真的变了,读不了SQL db [...]

  3. How to Backup and Restore (Export and Import) MySQL Databases Tutorial » My Digital Life Wie Backup-und Restore (Export und Import) Datenbanken MySQL Tutorial »Mein Digital Life
    July 21st, 2007 15:33 21. Juli 2007 15:33
    3

    [...] If this case, use –default-character-set=charset_name option to specify the character set or convert the database to UTF8. [...] Wenn dieser Fall, verwenden Sie-default-character-set = charset_name Option, um den Zeichensatz konvertieren oder die Datenbank in UTF8. Get help or contribute tips or tricks at My Digital Life [...] Hier finden Sie Hilfe oder Tipps dazu beitragen oder Tricks in My Digital Life [...]

  4. Wordpress 2.2 UTF Konvertierung | Blog[CHA] v2 Wordpress 2,2 UTF Konvertierung | Blog [CHA] v2
    September 4th, 2007 18:57 September 4th, 2007 18:57
    4

    [...] die Schnauze. [...] Die Schnauze. Mit etwas mehr Hartnäckigkeit bei der Suche konnte ich am Ende dann doch noch eine passende Konvertierungsanleitung finden, die auf mystische Art und Weise sowohl auf das fehlerhafte Plugin hinweist, als auch die [...] Mit etwas mehr Hartnäckigkeit bei der Suche konnte ich am Ende dann doch noch eine passende Konvertierungsanleitung finden, die auf mystische Art und Weise Sowohl auf das fehlerhafte Plugin hinweist, als auch sterben [...]

  5. Chris
    September 16th, 2007 02:04 16. September 2007 02:04
    5

    Why don’t you just link the file directly here? Warum tun Sie nicht nur die Link-Datei direkt hier?

    It is pain to register just to download the file. Es ist Schmerz nur zu registrieren, um die Datei herunterzuladen.

  6. curo.dk » Blog Archive » Wordpress charset problem and solution curo.dk »Blog Archiv» Wordpress charset Problem und Lösung
    September 16th, 2007 03:15 16. September 2007 03:15
    6

    [...] to convert my database to UTF8 so my blog doesn’t look funny. [...] Zum Umwandeln von meiner Datenbank zu UTF8, so mein Blog sieht nicht lustig. The plugin didn’t work, another site requires registration (how lame), so I came up with my own solution which is KISS all the [...] Das Plugin funktionierte nicht, eine andere Website erfordert Registrierung (wie lame), so kam ich mit meiner eigenen Lösung, die alle die KISS [...]

  7. admin
    September 16th, 2007 03:59 16. September 2007 03:59
    7

    Hi Chris, sorry for inconveniences, it’s so that users can discuss any bugs on the script on the forum when needed. Hi Chris, sorry für die Unannehmlichkeiten, ist es so, dass die Nutzer diskutieren können etwaige Fehler in dem Skript auf das Forum, wenn es erforderlich ist.

  8. Isotipo
    September 29th, 2007 03:23 29. September 2007 03:23
    8

    [...] la codificación de acentos, ñ y símbolos para que funcionara bien. [...] La codificación de acentos, ñ símbolos y para que funcionara bien. Para problemas recomiendo este artículo que indica los pasos para convertir tu bbdd a codificación [...] Um die Probleme recomiendo este artículo que indica los pasos para tu Konvertieren bbdd ein codificación [...]

  9. Octaedro » Una soluci Octaedro »Una soluci
    November 17th, 2007 07:55 17. November 2007 07:55
    9

    [...] ponga, siempre hay algo que me va a salir desconfigurado: los posts o los comentarios. [...] Ponga, siempre hay algo que me va ein salir desconfigurado: Beiträge o los los comentarios. He probado Er probado

  10. Back on track! BACK ON TRACK! | isa costa * the geek side | Isa costa * die geek Seite
    November 19th, 2007 03:35 19. November 2007 03:35
    10

    [...] ficheiro wp-config.php e deixar os valores das constantes DB_CHARSET e DB_COLLATE em branco. [...] Ficheiro wp-config.php e deixar os Werte das constantes DB_CHARSET e DB_COLLATE em branco. Outra solução é converter a base de dados toda para UTF-8, o que para mim já soa a [...] Outra Solução é-Wandler eine Basis de dados para toda UTF-8, o que já para mim soa ein [...]

  11. Sergio Nascimento Sergio Nascimento
    December 14th, 2007 03:05 14. Dez 2007 03:05
    11

    Hi, it worked fine for me using MyPHPAdmin. Hallo, es funktionierte gut für mich mit MyPHPAdmin.

    Thanks for the article. Vielen Dank für den Artikel.

  12. Media Addicted Media Addicted
    February 27th, 2008 01:20 27. Februar 2008 01:20
    12

    I’m using PHPmyAdmin and try to convert my database to utf-8, but…PHPmA interrupts the process with the first error message (concering key length as mentioned in ur guide). Ich verwende phpMyAdmin und versuchen Sie es zu konvertieren meiner Datenbank auf UTF-8, aber… PHPmA unterbricht den Prozess mit der ersten Fehlermeldung (bezüglich der Schlüssellänge wie in ur Reiseführer).

    Is there a way to make PHPmA ignore errors / to proceed the other tables? Gibt es eine Möglichkeit, um PHPmA ignorieren Fehler / zu gehen die anderen Tabellen?

    Thx in advance! Danke im Voraus!

  13. // If I have absolutely nothing to say : 2008030101 / / Wenn ich habe absolut nichts zu sagen: 2008030101
    March 2nd, 2008 01:52 2. März, 2008 01:52
    13

    [...] How to convert character set and collation of wordpress database?  [...] [...] Wie konvertieren Zeichensatz und Sortierung von WordPress Datenbank?  [...]

  14. Larry Hirscg Larry Hirscg
    March 19th, 2008 03:32 19. März, 2008 03:32
    14

    I must applaud you for publishing this. Ich begrüße Sie müssen für die Veröffentlichung. After hours of searching for an easy solution, when my provider moved my database to an “upgraded” platform, I was able to follow your instructions and and get the character set changed. Nach Stunden der Suche nach eine einfache Lösung, wenn mein Provider umgezogen meiner Datenbank zu einem "Upgrade"-Plattform, konnte ich Ihre Anweisungen folgen und sich und den Zeichensatz geändert. I used the phpmyadmin to execute the code and deleted the lines that had errors. Ich benutzte die phpmyadmin zur Ausführung des Codes und strich die Zeilen, die Fehler. It ran perfectly and I only needed to edit a few slugs that had odd character in them. Es lief perfekt und ich nur noch benötigt, zum Bearbeiten von ein paar Schnecken, dass Zeichen ungeraden hatte in ihnen. Fabulous!

  15. Links for 2008-03-30 [del.icio.us] » Festival BD-Comminges Links für 2008-03-30 [del.icio.us] »Festival BD-Comminges
    March 31st, 2008 13:09 31. März, 2008 13:09
    15

    [...] How to Convert Character Set and Collation of WordPress Database Guide to Convert WordPress Database Character Set to UTF8 (Unicode) — » My Digital Life [...] [...] Wie convert character set und Zusammenstellung von WordPress Database Guide to Convert WordPress Database Character Set auf UTF8 (Unicode) - »Meine Digital Life [...]

  16. … @ a distance … » UTF-8 … @ Einer Entfernung… »UTF-8
    June 19th, 2008 12:19 19. Juni 2008 12:19
    16

    [...] with troubleshooting the issue of not able to use the 2 lines in the wp-config.php file. [...] Die Behandlung von Problemen mit der Frage der nicht in der Lage, verwenden Sie die 2 Zeilen in die wp-config.php Datei. Tried this method, but it didn’t work. Versucht diese Methode, aber es hat nicht funktioniert. Then I read up the idea of converting the SQL in a text editor. Dann lese ich die Idee der Umwandlung der SQL in einem Texteditor. [...]

  17. something2
    July 24th, 2008 18:53 24. Jul 2008 18:53
    17

    I’ve uploaded an extended script to the thread. Ich habe einen längeren hochgeladen Skript zur Themenübersicht. It handles cases where the tables and columns are utf8 but the strings inside are latin1. Es bearbeitet Fälle, in denen die Tabellen und Spalten sind utf8, sondern die Saiten im Inneren sind latin1. This happens when the tables are created as utf8 but the wp-config.php is missing DB_CHARSET and DB_COLLATE variables. Dies passiert, wenn die Tabellen werden als utf8, aber die wp-config.php fehlt DB_CHARSET und DB_COLLATE Variablen.

Leave a Reply Leave a Reply

You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> Sie können diese Tags: <a href= title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime = ""> <em> <i> <q Cite=""> <strike> <strong>

Subscribe without commenting Abonnieren ohne zu kommentieren


Custom Search

New Articles Neue Artikel

Incoming Search Terms for the Article Eingehender Suchbegriffe für den Artikel

phpmyadmin change Collation phpMyAdmin ändern Sortierfolge - -- MySQL convert collation MySQL konvertieren Sortierung - -- mysql convert character set MySQL Zeichensatz konvertieren - -- convert collation konvertieren Sortierung - -- mysql convert encoding MySQL-Kodierung konvertieren - -- mysql convert charset MySQL konvertieren charset - -- oracle COLLATE Oracle COLLATE - -- convert charset charset konvertieren - -- php convert characters PHP konvertieren Zeichen - -- mysql convert MySQL konvertieren - -- change collation phpmyadmin Sortierfolge ändern phpMyAdmin - -- phpmyadmin character set phpMyAdmin-Zeichensatz - -- wordpress collation WordPress Sortierung - -- phpmyadmin change table collation phpMyAdmin ändern Tabelle Sortierung - -- wordpress charset charset WordPress - -- wordpress latin1_swedish_ci WordPress latin1_swedish_ci - -- mysql convert utf8 MySQL konvertiert utf8 - -- oracle convert character set Oracle convert character set - -- phpmyadmin change encoding phpMyAdmin ändern Codierung - -- oracle convert Oracle konvertieren - -- mysql convert database encoding MySQL Datenbank-Kodierung konvertieren - -- collation convert Sortierung konvertieren - -- mysql convert table encoding MySQL-Tabellen konvertieren Codierung - -- convert collation mysql konvertieren Sortierung MySQL - -- php convert character set PHP konvertieren Zeichensatz - -- mysql convert character encoding MySQL konvertieren Zeichencodierung - -- oracle character set Oracle-Zeichensatz - -- phpmyadmin collation phpMyAdmin Sortierung - -- phpmyadmin change database collation phpMyAdmin-Datenbank Sortierung ändern - -- convert latin1_swedish_ci to utf8 latin1_swedish_ci zu konvertieren utf8 - -- convert mysql collation konvertieren, MySQL Sortierung - -- mysql convert character MySQL konvertieren Charakter - -- convert collate konvertieren sammeln - -- mysql convert database charset MySQL Datenbank umwandeln charset - -- php convert charset PHP konvertieren charset - -- latin1_swedish_ci wordpress latin1_swedish_ci WordPress - -- php convert character encoding PHP konvertieren Zeichencodierung - -- characterset Zeichensatz - -- sql convert charset charset SQL konvertieren - -- mysql convert char MySQL konvertieren char - -- wordpress database encoding WordPress Datenbank-Codierung - -- sql php convert chinese SQL PHP konvertieren Chinesisch - -- mysql charset converter charset MySQL-Konverter - -- how to convert Object of class wpdb to string in php Wie konvertiert Objekt der Klasse zu wpdb String in php - -- funny characters phpmyadmin lustige Figuren phpMyAdmin - -- latin1_swedish_ci wordpress database latin1_swedish_ci WordPress-Datenbank - -- mysql convert database character set MySQL Datenbank umwandeln Zeichensatz - -- mysql collation conversion MySQL Sortierung Conversion - -- mysql convert characters MySQL konvertieren Zeichen - -- change collation mysql Sortierfolge ändern MySQL - -- mysql CONVERT TO CHARACTER SET MySQL zu konvertieren Zeichensatz - -- convert character set convert character set - -- mysql change collation for all tables mysql ändern Sortierung für alle Tabellen - -- php convert text encoding PHP konvertieren Text-Kodierung - -- php convert latin1 to utf8 PHP latin1 zu konvertieren utf8 - -- convert table collation mysql Tabelle konvertieren Sortierung MySQL - -- convert_to_utf8_sql_generator.txt convert_to_utf8_sql_generator.txt - -- collation change Sortierfolge ändern - -- wordpress charset problem with bulgarian WordPress charset Problem mit der bulgarischen - -- wordpress database convert WordPress Database Convert - -- wordpress database collation WordPress-Datenbank Sortierung - -- convert character encoding convert character encoding - -- php convert latin1 PHP konvertieren latin1 - -- wordpress change collation WordPress Sortierung ändern - -- CONVERT DATABASE TO UTF8 Datenbank zu konvertieren utf8 - -- MySQL convert to unicode MySQL-Konvertierung in Unicode - -- auto convert latin1 to utf-8 mysql php function auto konvertieren latin1 auf UTF-8 MySQL PHP-Funktion - -- wordpress database name WordPress Datenbanknamen - -- convert mysql charset MySQL Zeichensatz konvertieren - -- mysql change collation MySQL Sortierung ändern - -- mysql "cannot be part of FULLTEXT index" mysql "kann nicht Teil der FULLTEXT index" - -- wordpress character sets WordPress Zeichensätze - -- mysql change database encoding MySQL Datenbank-Codierung ändern - -- oracle collation Oracle Sortierung - -- latin1_swedish_ci to utf8 latin1_swedish_ci zu utf8 - --