* Thus wrote Tom Sommer:
Hey Guys,
Converting livedocs to UTF8 has completely broken the danish manual. Is it the intention that the translators should convert chars like ïïï into htmlentities, or what is the procedure?
In any case, the danish (and other international?) manual does not play well with the change to UTF8, so please advise :)
Ref: http://phpdoc.tsn.dk/da/function.mail.html
Your server is returning: Content-Type: text/html; charset=iso-8859-1
It needs to send: Content-Type: text/html; charset=UTF-8
AllowOverride was not set to "All" for the livedocs directory, fixing that solved the problem (because now the .htaccess file is read).
However once the page has been generated, the php_value is nolonger in effect, because now it's just a plain .html file that is opened and not a PHP file, which makes the webserver send the content-type "iso-8859-1" and again produces the problem above?
-- Tom