Hide Forgot
Description of problem: bz-5.0 server will show 500 error if edit summary or comment with UTF8 string. See bug https://bugzilla.redhat.com/show_bug.cgi?id=1272137 Version-Release number of selected component (if applicable): 5.0.2.rh2 How reproducible: 100% Steps to Reproduce: 1. Go to enter bug page 2. Edit the summary or description with urf8 string and save bug 3. Actual results: It will show 500 error message Expected results: The bug should be saved without error Additional info:
[Thu Apr 07 02:51:01.491648 2016] [:error] [pid 5415] Wide character in subroutine entry at /var/www/html/bugzilla/Bugzilla/Object.pm line 531.\n
*** Bug 1320004 has been marked as a duplicate of this bug. ***
*** Bug 1328678 has been marked as a duplicate of this bug. ***
After far to much debugging inside of DBD::Pg, it turns out this is a database server misconfiguration edit the postgresql.conf file, look for a setting called 'client_encoding' It's probably set to something like 'sql_ascii'. It should be set to UTF8. EG: client_encoding = 'UTF8' Restart the database server and it should work.
QE also changed this setting against QE server, and it could save UTF8 string now.