in reply to Re: mod_perl STDOUT
in thread mod_perl STDOUT

should'nt it be UTF8 cappable by default or rather what directive in apache or mod_perl would make UTF8 default for STDOUT ?

Replies are listed 'Best First'.
Re^3: mod_perl STDOUT
by Tanktalus (Canon) on Oct 17, 2012 at 15:24 UTC
    ++ for a good question, but, no. Perl can't tell if you're sending utf8 text or a binary file (e.g., you have a mod_perl script that generates a PDF and sends that instead of html). Only you as the programmer know enough context to decide what format to set the output to.

      I agree in general but here is the thing. I come to the conclusion that this is related to my locales on the Ubuntu machine that is running this particular site. All i could make out so far was that the ENV VARS

      LC_ALL, LANG and LANGUAGE

      are set to en_US even if they should be en_US.UTF-8 or POSIX.

      On my local system i run apache on gentoo (yeah i know) and all related ENV vars are set to POSIX and the default output on STDOUT in mod_perl is UTF8. I get the job done with perl ... but this makes me sick. If i get that solved i will report back