utf8 urls

2008-03-19 Thread Eli Shemer
Hey there For some reason the following test doesn’t print anything out to the screen Do I need to change something in the apache configuration, or mod_perl’s ? /articles_read.pl?id=חוזרת ## get http parameters $r = shift; $apr = Apache2::Request-new($r); print $apr-param('id');

Re: utf8 urls

2008-03-19 Thread John ORourke
Eli Shemer wrote: For some reason the following test doesn’t print anything out to the screen Do I need to change something in the apache configuration, or mod_perl’s ? /articles_read.pl?id=חוזרת ## get http parameters $r = shift; $apr = Apache2::Request-new($r); print

Re: utf8 urls

2008-03-19 Thread André Warnier
From a previous message by Adam Prime in this same list : [...] SetHandler modperl doesn't bind 'print' to '$r-print'. Try SetHandler perl-script, or change your code to pass in the request object and use $r-print instead of print. [...] or, more verbously and explicitly : if in your Apache

Re: utf8 urls

2008-03-19 Thread Geoffrey Young
John ORourke wrote: Eli Shemer wrote: For some reason the following test doesn’t print anything out to the screen Do I need to change something in the apache configuration, or mod_perl’s ? /articles_read.pl?id=חוזרת ## get http parameters $r = shift; $apr =