Re: missing POST data but not GET.....

2008-05-14 Thread Rob French
Hi, POST data is read directly from the socket and can only be read once. You must save the POST'd data in a data structure that is passed or available to the different handlers in order to access it multiple times. Here is a good explanation of the process, they use a different method than the

[mp1] Can't get UTF8 input streams to automatically be decoded using PERL_UNICODE under mod_perl

2008-03-19 Thread Rob French
I have recently started converting one of our webapps to make it fully UTF-8 compliant. All input/output from the webapp will be encoded as UTF-8. As such, I am trying to use the PERL_UNICODE env variable to enable UTF-8 flagging on all input/output streams. This works with standalone Perl scripts

Re: [mp1] Can't get UTF8 input streams to automatically be decoded using PERL_UNICODE under mod_perl

2008-03-19 Thread Rob French
you need to use PerlSetEnv ? - Original Message - From: Rob French [EMAIL PROTECTED] To: André Warnier [EMAIL PROTECTED] Cc: modperl@perl.apache.org Sent: Wednesday, March 19, 2008 2:41 PM Subject: Re: [mp1] Can't get UTF8 input streams to automatically be decoded using

Re: [mp1] Can't get UTF8 input streams to automatically be decoded using PERL_UNICODE under mod_perl

2008-03-19 Thread Rob French
, that works. Rob, that should probably help you. The difference with PERL_UNICODE SAD seems to be that it will not automatically consider @ARGV as utf-8. Rob French wrote: Setting the environment variable has always worked. mod_perl can see the PERL_UNICODE variable is set based