WordPress Charset Encoding Problem After Upgrading to Version 2.2 WordPress charset encoding Problem nach der Aktualisierung auf Version 2,2

WordPress blogs that upgraded to Wordpress version 2.2 may encounter strange character set (charset) encoding problem where several characters especially apostrophes (’), quotation marks (”), and hyphens or dashes (—) are displayed as strange characters such as ’ or simply as question marks (?) when the posts are output to web pages. WordPress Blogs, Wordpress Upgrade auf Version 2.2 Mai seltsame Begegnung Zeichensatz (charset) Codierung Problem, wenn mehrere Zeichen vor allem Apostrophe ( '), Anführungszeichen ( "), und Bindestriche oder Bindestriche (-) werden als seltsame Zeichen wie â € ™ oder einfach nur als Fragezeichen (?), wenn die Stellen ausgegeben werden zu Web-Seiten. As you have probably suspected, the issue is caused by character encoding method used by Da hat man wahrscheinlich im Verdacht, das Problem wurde dadurch verursacht, dass Zeichencodierung Methode WordPress 2.2 which supports setting of database collation and character set WordPress 2,2 unterstützt die Einstellung der Datenbank Zusammenstellung und Zeichensatz in WordPress config file. in WordPress config-Datei.

The error happens because up to and including WordPress ver 2.1.3, almost all WordPress databases were created using the latin1 character set and the latin1_swedish_ci collation. Der Fehler tritt auf, weil bis einschließlich Version 2.1.3 WordPress, die fast alle WordPress-Datenbanken wurden mit der latin1 Zeichensatz und die Sortierung latin1_swedish_ci. Beginning WordPress v2.2, WordPress allows the user to define both the database character set and the collation in wp-config.php file, using DB_CHARSET and DB_COLLATE values. Anfang WordPress v2.2, WordPress erlaubt es dem Benutzer zu definieren sowohl die Datenbank-Zeichensatz und die Sortierung in wp-config.php Datei, mit DB_CHARSET und DB_COLLATE Werte. With these values set to another encoding, WordPress assumes that the databases are indeed using the charset and collation too, where it’s not the case for existing WordPress installation. Mit diesen Werten zu einer anderen Codierung, WordPress geht davon aus, dass die Datenbanken sind in der Tat mit den Zeichensatz und Sortierfolge zu, wo es nicht der Fall für bestehende WordPress-Installation. So if you’re upgrading WordPress to 2.2 using the default wp-config.php, or have manually modified the file to include the new variables, or upgrading by using Fantastico which automatically update the wp-config.php file to include these two definitions which values set as Unicode UTF-8 by default, you will need to remove these definitions to solve the character encoding error. Also, wenn Sie ein Upgrade auf WordPress 2,2 Verwendung des Standard-wp-config.php, oder manuell verändert die Datei auf die neuen Variablen, oder Umrüstung Fantastico, indem Sie die automatisch aktualisiert werden die wp-config.php Datei, um diese beiden Definitionen die Werte als Unicode UTF-8 standardmäßig, müssen Sie sie entfernen Sie diese Definitionen zur Lösung der Zeichencodierung Fehler.

Open and edit your WordPress wp-config.php file. Öffnen und Bearbeiten Ihrer WordPress wp-config.php Datei. Then locate the following two lines: Dann suchen Sie die beiden folgenden Zeilen:

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

You can simply delete these 2 lines away, or just remove the utf8 from the first line to make them looks like this: Sie können einfach gelöscht werden 2 Zeilen weg, oder entfernen Sie einfach das utf8 aus der ersten Zeile, damit sie sieht wie folgt aus:

define(’DB_CHARSET’, ”); define ( 'DB_CHARSET ",");
define(’DB_COLLATE’, ”); define ( 'DB_COLLATE ",");

With no charset and collation values set, WordPress will fall back to the old default, latin1 which matched the databases. Ohne charset und Zusammenstellung Werte gesetzt, WordPress fallen zurück auf die alten standardmäßig mit der latin1 der Datenbanken.

A possible better solution is Eine mögliche bessere Lösung ist convert the Wordpress database to UTF8 Unicode Wordpress konvertieren die Datenbank auf Unicode UTF8 . Werden.

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.



32 Responses to “WordPress Charset Encoding Problem After Upgrading to Version 2.2” 32 Responses to "WordPress Charset Encoding Problem Nach dem Upgrade auf Version 2,2"

Pages: [2] Seiten: [2] 1 » Show All Alle anzeigen

  1. Ates Goral Ates Goral
    August 24th, 2008 11:20 24. Aug 2008 11:20
    32

    Thanks! Danke! Saved me a lot of time. Ersparte mir eine Menge Zeit.

  2. Rodrigo
    August 23rd, 2008 05:24 23. Aug 2008 05:24
    31

    thanks Danke

  3. Endolith Endolithe
    June 18th, 2008 08:42 18. Juni 2008 08:42
    30

    Isn’t UTF8 much better? Ist das nicht UTF8 viel besser? Why would you limit yourself to Latin1 just because it used to be the default? Warum würden Sie beschränken Sie sich Latin1, nur weil sie einmal die Standard?

  4. Tom Clarke Tom Clarke
    June 6th, 2008 20:56 6. Juni 2008 20:56
    29

    Just wanted to say: this had afflicted me for months. Wollte nur sagen: Diese leiden hatte mich seit Monaten. Never found a workable solution. Niemals fand eine praktikable Lösung. Stumbled on your site today and it worked perfectly. Stolperten auf Ihrer Website noch heute und es funktionierte perfekt. Thanks so much! Thanks so much!

  5. Josh
    February 19th, 2008 05:04 19. Februar 2008 05:04
    28

    Hi, thanks for doing this. Hallo, danke, dies zu tun. it’s the only thing I’ve found. es ist das Einzige, was ich gefunden habe. I remove the utf8 and a lot of my posts still have the question marks. Ich entfernen Sie die utf8 und eine Menge meine Posts immer noch die Fragezeichen. any ideas what I may need to do? irgendwelche Ideen, was ich tun müssen?

  6. Marthin
    February 17th, 2008 03:44 17. Februar 2008 03:44
    27

    thanks for the help, it worked out for me Dank für die Hilfe, hat prima funktioniert für mich :)

  7. Bruno Silva Bruno Silva
    January 5th, 2008 06:55 5. Januar 2008 06:55
    26

    Thx a lot! Thx a lot!
    You saved me hours! Sie hat mich gerettet Stunden!

Pages: [2] Seiten: [2] 1 » Show All Alle anzeigen

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

wordpress charset charset WordPress - -- wordpress encoding WordPress-Codierung - -- charset wordpress charset WordPress - -- wordpress utf8 WordPress utf8 - -- wordpress utf-8 WordPress UTF-8 - -- wordpress DB_COLLATE WordPress DB_COLLATE - -- wordpress change charset WordPress ändern charset - -- wordpress encoding problem WordPress encoding Problem - -- wordpress weird characters WordPress seltsame Zeichen - -- wordpress character encoding WordPress Zeichencodierung - -- wordpress apostrophes WordPress Apostrophe - -- all alle - -- utf-8 wordpress UTF-8 WordPress - -- utf8 wordpress utf8 WordPress - -- encoding wordpress Codierung WordPress - -- Charset Encoding Charset Encoding - -- rendering apostrophe in wordpress Rendering-Apostroph in WordPress - -- problem with Iphone after upgrading to version 2 Problem mit Iphone nach der Aktualisierung auf Version 2 - -- wordpress DB_CHARSET WordPress DB_CHARSET - -- wordpress utf WordPress UTF - -- wordpress 2.6 charset WordPress 2,6 charset - -- wordpress charset problem upgrade WordPress charset Problem Upgrade - -- wordpress 2.6 charset problema WordPress 2,6 charset Problem - -- wordpress korean WordPress Koreanisch - -- remove cech characters utf8 entfernen Cech Zeichen utf8 - -- Windows japanese charset encoding problem characters Windows japanisch charset encoding Problem Zeichen - -- php charset encoding utf PHP charset UTF-Codierung - -- DB_CHARSET Wordpress DB_CHARSET Wordpress - -- wordpress change encoding WordPress-Codierung ändern - -- "WordPress" "charset" "WordPress" "charset" - -- wordpress character support WordPress Charakter Unterstützung - -- wordpress encoding collation WordPress-Codierung Sortierung - -- wordpress charset problem WordPress charset Problem - -- encoding method used in the wordpress for password Kodierung verwendete Methode in der wordpress für Passwort - -- wordpress upgrade character encoding problem WordPress Upgrade Zeichencodierung Problem - -- wordpress strange characters WordPress seltsame Zeichen - -- charset charset - -- wordpress utf 8 WordPress UTF 8 - -- change wordpress encoding WordPress-Codierung ändern - -- wordpress upgrade charset WordPress Upgrade-charset - -- wordpress bilingual post korean WordPress zweisprachige Post Koreanisch - -- wordpress text encoding problem WordPress Text Encoding Problem - -- DB_COLLATE wordpress DB_COLLATE WordPress - -- info about UTF8&a Infos über UTF8 & a - -- norwegian characters wordpress Norwegisch Zeichen WordPress - -- utf-8 wordpress 2.6 UTF-8 WordPress 2,6 - -- wordpress+charset WordPress charset + - -- wordpress nextpage multilingual WordPress nextpage mehrsprachige - -- wordpress 2.6 encoding WordPress 2,6-Codierung - -- wordpress character WordPress Charakter - --