> I was getting exception code 0xC0FD (Stack overflow) in Classify.dll
(Params::Classify?)
Well. This goes to show that desperation is the mother of invention :)
I went so far as to look at the code for Params::Classify, and noticed that
there is a pure Perl version if the XS load fails, so I
Recompiling perl and producing a shared library seems to have worked. Thanks!
-Original Message-
From: Dave Hodgkinson [mailto:daveh...@gmail.com]
Sent: Wednesday, January 25, 2012 3:50 PM
To: Jacobs, David (NIH/NCI) [C]
Cc: modperl@perl.apache.org
Subject: Re: mod_perl.so: undefined
On Thursday, 26 January 2012 13:02:09 Idel Fuschini wrote:
> $f->headers_out->set(Location => $location);
err_headers_out?
Torsten Förtsch
--
Need professional modperl support? Hire me! (http://foertsch.name)
Like fantasy? http://kabatinte.net
Hello, I am running apache2-mpm-prefork on ubuntu 11.04 with mod_perl. I have
googled as much as possible and it seems that in most cases its when there
is an upload that times out. I am not uploading anything but small json
objects. I only see this in my logs I have not been able to recreate it.
I do not use the httpd.conf to redirect instead I use the following code:
use Apache2::Const qw(HTTP_MOVED_TEMPORARILY);
$r->headers_out->add(Location => "http://someplace.come/index.html?iphone=yes";);
$r->status( HTTP_MOVED_TEMPORARILY);
return HTTP_MOVED_TEMPORARILY;
From: Idel Fuschini mail
I've got this issue, in httpd.conf:
PerlTransHandler +Apache2::MyRedirect
RewriteRule ^/$ /home/index.html [R=301]
my mod_perl2 module in some condition need to redirect the browser to
another site. But my web server ignored my module.
This is the code:
use Apache2::RequestRec ();
use Ap