Thanks
I just found a temporary work around putting in sitecustomize.pl the
following:
BEGIN{
if($ENV{"ProgramFiles(x86)"} ne "C:\\Program Files (x86)"){
$ENV{ProgramFiles} = "C:\\Program Files";
$ENV{"ProgramFiles(x86)"} = "C:\\Program Files (x86)";
$ENV{ProgramFilesW6432} = "C:\\Program Files";
$ENV{CommonProgramFiles} = "C:\\Program Files\\Common Files";
$ENV{"CommonProgramFiles(x86)"} = "C:\\Program Files (x86)\\Common Files";
$ENV{CommonProgramFilesW6432} = "C:\\Program Files\\Common Files";
exec { $^X } $^X, $0, @ARGV;
};
}
On Sat, Aug 8, 2015 at 8:33 PM, Eric Covener <[email protected]> wrote:
> On Sat, Aug 8, 2015 at 2:24 PM, Francesco Pasqualini <[email protected]>
> wrote:
> > Hi to all,
> >
> > Can someone help me ?
> >
> > I have a httpd in production on windows affected by this problem:
> >
> > https://bz.apache.org/bugzilla/show_bug.cgi?id=46751#c4
> >
> > Can someone compile for me a fixed (john proposal) version of mod_cgi.so
> ?
>
> That patch doesn't change mod_cgi, you need a new httpd.exe or
> libhttpd.lib (not sure what goes where on Windows). Might have more
> luck on ApacheLounge with a test build of the entire server.
>