haxe perl target
hi folks, am looking for some help from perl internals gurus since I want to contribute to the development of a perl target for the famous HaXe (http://haxe.org) compiler. anyone who might have an idea where else it would make sense to ask - please tell me about. Cordially, Axel
Re: decline and fall of modperl?
Marilyn Burgess schrieb: >From a fellow lurker to another, I would be interested in reading your perspective. - Marilyn me too, Axel
mod_perl specialchars form post data trouble
Hi, am stuck with a problem on mod_apreq2-20051231/2.6.0 mod_perl/2.0.3 Perl/v5.8.8 form data string with special chars like [EMAIL PROTECTED] POSTed to a handler is returned as: [EMAIL PROTECTED] by Apache2::Request::param to test if the form works well I tried with CGI.pm - there the data is returned like input. is there any way to get back the original Data with mod_perl? I tried different charsets and enctype settings in the form document and decode utf8 and charset(8) on the mod_perl handler but no success. Best, Axel
Re: APR::SockAddr
Philippe M. Chiasson schrieb: Axel Huizinga wrote: Hi, Suddenly on of my mod_perl handlers is broken with the following error: Can't locate object method "ip_get" via package "APR::SockAddr" at line: my $ip = $self->{r}->connection->remote_addr->ip_get; (temporary replaced by $ENV{'REMOTE_ADDR'} - now the handler works again) I didn't change the code before the error appeared - can the configuration cause this behavior? Missing: use APR::SockAddr (); somewhere ? Ok - thanks - works again. Axel
APR::SockAddr
Hi, Suddenly on of my mod_perl handlers is broken with the following error: Can't locate object method "ip_get" via package "APR::SockAddr" at line: my $ip = $self->{r}->connection->remote_addr->ip_get; (temporary replaced by $ENV{'REMOTE_ADDR'} - now the handler works again) I didn't change the code before the error appeared - can the configuration cause this behavior? Axel