david63 wrote: Beta 2 has been superceded by beta 3 and therefore should not be needed for testing - or are we talking about a live forum here?
UTF-8 Support
The decision to support UTF-8 (prior to a long period of discussing and evaluating) was made due to other problems we encountered and which would have taken longer to properly fix than introducing UTF-8. We know that this is not normal during beta phases and represents a drastic change, therefore this Beta release; to test the new functionality because it basically affects every single area of the software.
We encourage you to test with User names like ťĕsťůsĕř or ťĕsťůs'ĕř (note the single quote) to spot problems better. People already using UTF-8 encoding for their language packs should report every single problem they encounter.
John Hjorth wrote: karlake,
Is your question releated to a Swedish language package under development ?
Code: Select all
AddDefaultCharset UTF-8
John Hjorth wrote: Naturally, it does not.
I might be server setup related, try upload a .htaccess to your root on server for your Beta 3 board containing the line :
Code: Select all
AddDefaultCharset UTF-8
karlake wrote: I have one forum based on Beta2 and just installed another based on Beta3. Got one problem with the character encoding. In beta2 it works just fine with our Swedish characters and if one looks at the source of the pages it says:
"<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />"
If I look at the source from the beta3 it says:
"<meta http-equiv="content-type" content="text/html; charset=UTF-8" />"
Why the difference and what shall I do to fix it?
usually a bad idea.John Hjorth wrote: Naturally, it does not.
I might be server setup related, try upload a .htaccess to your root on server for your Beta 3 board containing the line :
Code: Select all
AddDefaultCharset UTF-8
Code: Select all
AddDefaultCharset Off
SHS` wrote: There is nothing to do to "fix it" per se since betas should not be used in a live environment, however... to eliminate user error from an actual edge-case regression bug within phpBB3 Beta3 due to the encoding switch, at the very least go through the following list:
- Is the Beta3 install a fresh install? (Overwriting files of a Beta2 install yet pointing it to an existing Beta2 DB will not work, due to collation changes)
- On a phpBB3 Beta3 clean install, though the source obviously says "UTF-8" is the character encoding, what does your browser detect it as? Your browser may for some reason be forced to ISO-8859-1 and thus render everything else incorrectly.
- Does your PHP config for some reason force a particular encoding, breaking any attempt at set a different encoding (eg: UTF-8)? This may be why encoding detection by browsers are broken, since the explicit HTTP header may override the equivalent http-equiv within the HTML.
- How did you transfer the files to the dev site, is your FTP client for sopme strange reason changing the encoding of files?
- etc...