> In /path/to/apache1.3.24/bin/apachectl add a -DAPACHE_1_3_24 to the > httpd command. > > In your httpd.conf add > > <IfDefined APACHE_1_3_24> > ProxyIOBufferSize 1000000000 > </IfDefined> > > I think that should work....
you could also do something hackish like this to avoid command line switches
<Perl>
my ($version) = Apache::Constants::SERVER_VERSION =~ m/(\d{2})/;
$ProxyIOBufferSize = 10000 if $version >= 24
</Perl>
good luck
---Geoff
