I upgrade OMP from 1.0B to 1.1.1.1 and the upgrade ends ok. But when I go to Management->Settings->Users & Roles there are users that have no firstname nor surname (is blank) but in database there still are.
The problem is with names like José, this names is UTF-8
Can you check that the charset_normalization option in config.inc.php is turned Off?
What are the connection and database character set in your config.inc.php? Did you dump and reload the database during the upgrade process?
Regards,
Alec Smecher
Public Knowledge Project Team
Yes, the charset_normalization is set to Off and the database character is utf-8.
; Default locale
locale = en_US
; Client output/input character set
client_charset = utf-8
; Database connection character set
; Must be set to “Off” if not supported by the database server
; If enabled, must be the same character set as “client_charset”
; (although the actual name may differ slightly depending on the server)
connection_charset = Off
; Database storage character set
; Must be set to “Off” if not supported by the database server
database_charset = Off
; Enable character normalization to utf-8 (recommended)
; If disabled, strings will be passed through in their native encoding
charset_normalization = Off
Your connection_charset and database_charset look suspect to me. Is that what they were in your old installation? Generally speaking, those should be “utf8”.
Regards,
Alec Smecher
Public Knowledge Project Team
Yes is that in my old installation.
Thanks for all, I solve the problem.