Upgrade wordpress 2.3.1
This is a reminder for me.
I’ve upgraded my wp from 2.1 to 2.3: the new version needs some changes:
- file index.php (template directory)
- file wp-config.php
<!-- correzione per aggiornamento wordpress 2.3.1 errore chiamata funzione in_category() in wp-includes/category-template.php -->
<?php if ( in_category($AsideId) && !is_single() ) : ?>
<?php if ( $AsideID != '' && in_category($AsideId) && !is_single() ) : ?>
//define('DB_CHARSET', 'utf8'); // default value
define('DB_CHARSET', 'latin1'); // update for WP 2.3.1
References:
- http://wordpress.org/support/topic/136343
- http://wordpress.org/support/topic/135658
- http://www.headrambles.com/2007/09/30/error-in-wordpress-23
- http://voiceofbragg.com/category/wordpress
- http://wordpress.pastebin.ca/719436
- http://www.levysoft.it/archivio/2007/10/17/come-ripristinare-correttamente-gli-accenti-dopo-lupgrade-a-wordpress-23
