Uploading Files bigger the 64M

--_000_C9647F6120F4hibbardohioedu_
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

I am having all sorts of troubles uploading files bigger then 64M using mod=
_perl2.

Any file I try to upload that is bigger then 63M I get the following error.

(20014)Internal error: Content-Length header (723283299) exceeds configured=
max_body limit (67108864)

So I told myself lets do a little research .... It is Perl so this should b=
e easy to fix. After a little of researching I found the APREQ2_ReadLimit =
parameter for the httpd.conf. So I added this to my httpd.conf.

APREQ2_ReadLimit 1024M (1 Gig)

Restarted Apache and tried again .... Still no luck with same error message=
.. Back to researching.

I found 2 more things which I thought would solve my problem. I found POST=
_MAX:

my $req =3D Apache2::Request->new($r,POST_MAX =3D>100 * 1024 * 1024);

And also

$req->read_limit(100 * 1024 * 1024);

So I tried playing with these settings and all I get now is "Conflicting in=
formation" in my log files. As soon as I set POST_MAX or read_limit to any=
thing below 67108864 it works fine for all files less then 64M in size. Ho=
w can I get mod_perl2 to upload a 700mb file. If you need sample code of w=
hat I am doing I am more then happy to provide it.

Thanks in advance,

Tim Hibbard
Senior Program Engineer
Ohio University
Athens, Ohio 457-1

--_000_C9647F6120F4hibbardohioedu_
Content-Type: text/html; charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<HTML>
<HEAD>
<TITLE>Uploading Files bigger the 64M</TITLE>
</HEAD>
<BODY>
<FONT FACE=3D"Calibri, Verdana, Helvetica, Arial"><SPAN STYLE=3D'font-size:=
11pt'>I am having all sorts of troubles uploading files bigger then 64M usi=
ng mod_perl2.<BR>
<BR>
Any file I try to upload that is bigger then 63M I get the following error.=
<BR>
<BR>
(20014)Internal error: Content-Length header (723283299) exceeds configured=
max_body limit (67108864)<BR>
<BR>
So I told myself lets do a little research .... It is Perl so this should b=
e easy to fix.  After a little of researching I found the </SPAN></FON=
T><FONT SIZE=3D"1"><FONT FACE=3D"Helvetica, Verdana, Arial"><SPAN STYLE=3D'=
font-size:9pt'>APREQ2_ReadLimit parameter for the httpd.conf.  So I ad=
ded this to my httpd.conf.<BR>
<BR>
APREQ2_ReadLimit 1024M (1 Gig)<BR>
<BR>
Restarted Apache and tried again .... Still no luck with same error message=
..  Back to researching.<BR>
<BR>
I found 2 more things which I thought would solve my problem.  I found=
POST_MAX:<BR>
<BR>
<FONT COLOR=3D"#110094">my</FONT> <FONT COLOR=3D"#1800D1">$req</FONT> =3D A=
pache2::Request-><FONT COLOR=3D"#110094">new</FONT>(<FONT COLOR=3D"#1800=
D1">$r</FONT>,POST_MAX =3D>100 * 1024 * 1024);<BR>
<BR>
And also<BR>
<BR>
<FONT COLOR=3D"#1800D1">$req</FONT>->read_limit(100 * 1024 * 1024);<BR>
<BR>
So I tried playing with these settings and all I get now is “Conflict=
ing information” in my log files.  As soon as I set POST_MAX or =
read_limit to anything below </SPAN></FONT></FONT><FONT FACE=3D"Calibri, Ve=
rdana, Helvetica, Arial"><SPAN STYLE=3D'font-size:11pt'>67108864 it works f=
ine for all files less then 64M in size.  How can I get mod_perl2 to u=
pload a 700mb file.  If you need sample code of what I am doing I am m=
ore then happy to provide it.<BR>
<BR>
Thanks in advance,<BR>
<BR>
Tim Hibbard<BR>
Senior Program Engineer<BR>
Ohio University<BR>
Athens, Ohio 457-1</SPAN></FONT>
</BODY>
</HTML>


--_000_C9647F6120F4hibbardohioedu_--
hibbard [ Di, 25 Januar 2011 19:23 ] [ ID #2053807 ]

Re: Uploading Files bigger the 64M

--0-109997068-1295980266=:30338
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: quoted-printable

It's a bug in the merge code for mod_apreq2. Basically=0Ayou have to set A=
PREQ_ReadLimit to its max value=0Ain the main server's context (not in a vh=
ost or Location=0Aor Directory config).=0A=0AOtherwise use the code in apre=
q's trunk.=0A=0A=0A=0A>=0A>From: "Hibbard, Timothy" <hibbard [at] ohio.edu>=0A>T=
o: "modperl [at] perl.apache.org" <modperl [at] perl.apache.org>=0A>Sent: Tue, Januar=
y 25, 2011 1:23:45 PM=0A>Subject: Uploading Files bigger the 64M=0A>=0A>Upl=
oading Files bigger the 64M I am having all sorts of troubles uploading fil=
es =0A>bigger then 64M using mod_perl2.=0A>=0A>Any file I try to upload tha=
t is bigger then 63M I get the following error.=0A>=0A>(20014)Internal erro=
r: Content-Length header (723283299) exceeds configured =0A>max_body limit =
(67108864)=0A>=0A>So I told myself lets do a little research .... It is Per=
l so this should be =0A>easy to fix. After a little of researching I found=
the APREQ2_ReadLimit =0A>parameter for the httpd.conf. So I added this to=
my httpd.conf.=0A>=0A>APREQ2_ReadLimit 1024M (1 Gig)=0A>=0A>Restarted Apac=
he and tried again .... Still no luck with same error message. =0A> Back to=
researching.=0A>=0A>I found 2 more things which I thought would solve my p=
roblem. I found =0APOST_MAX:=0A>=0A>my $req =3D Apache2::Request->new($r,P=
OST_MAX =3D>100 * 1024 * 1024);=0A>=0A>And also=0A>=0A>$req->read_limit(100=
* 1024 * 1024);=0A>=0A>So I tried playing with these settings and all I ge=
t now is =E2=80=9CConflicting =0A>information=E2=80=9D in my log files. As=
soon as I set POST_MAX or read_limit to =0A>anything below 67108864 it wor=
ks fine for all files less then 64M in size. How =0A>can I get mod_perl2 t=
o upload a 700mb file. If you need sample code of what I =0A>am doing I am=
more then happy to provide it.=0A>=0A>Thanks in advance,=0A>=0A>Tim Hibbar=
d=0A>Senior Program Engineer=0A>Ohio University=0A>Athens, Ohio 457-1 =0A=
=0A=0A
--0-109997068-1295980266=:30338
Content-Type: text/html; charset=utf-8
Content-Transfer-Encoding: quoted-printable

<html><head><style type=3D"text/css"><!-- DIV {margin:0px;} --></style></he=
ad><body><div style=3D"font-family:courier,monaco,monospace,sans-serif;font=
-size:12pt"><div>It's a bug in the merge code for mod_apreq2.  Basical=
ly<br>you have to set APREQ_ReadLimit to its max value<br>in the main serve=
r's context (not in a vhost or Location<br>or Directory config).<br><br>Oth=
erwise use the code in apreq's trunk.<br><br></div><blockquote style=3D"bor=
der-left: 2px solid rgb(16, 16, 255); margin-left: 5px; padding-left: 5px;"=
><div style=3D"font-family: courier,monaco,monospace,sans-serif; font-size:=
12pt;"><br><div style=3D"font-family: times new roman,new york,times,serif=
; font-size: 12pt;"><font face=3D"Tahoma" size=3D"2"><b><span style=3D"font=
-weight: bold;">From:</span></b> "Hibbard, Timothy" <hibbard [at] ohio.edu>=
;<br><b><span style=3D"font-weight: bold;">To:</span></b> "modperl [at] perl.apa=
che.org" <modperl [at] perl.apache.org><br><b><span style=3D"font-weight:
bold;">Sent:</span></b> Tue, January 25, 2011 1:23:45 PM<br><b><span style=
=3D"font-weight: bold;">Subject:</span></b> Uploading Files bigger the 64M<=
br></font><br><meta http-equiv=3D"x-dns-prefetch-control" content=3D"off"><=
title>Uploading Files bigger the 64M</title>=0A=0A=0A=0A<font face=3D"Calib=
ri, Verdana, Helvetica, Arial"><span style=3D"font-size: 11pt;">I am having=
all sorts of troubles uploading files bigger then 64M using mod_perl2.<br>=
=0A<br>=0AAny file I try to upload that is bigger then 63M I get the follow=
ing error.<br>=0A<br>=0A(20014)Internal error: Content-Length header (72328=
3299) exceeds configured max_body limit (67108864)<br>=0A<br>=0ASo I told m=
yself lets do a little research .... It is Perl so this should be easy to f=
ix.  After a little of researching I found the </span></font><font siz=
e=3D"1"><font face=3D"Helvetica, Verdana, Arial"><span style=3D"font-size: =
9pt;">APREQ2_ReadLimit parameter for the httpd.conf.  So I added this =
to my httpd.conf.<br>=0A<br>=0AAPREQ2_ReadLimit 1024M (1 Gig)<br>=0A<br>=0A=
Restarted Apache and tried again .... Still no luck with same error message=
..  Back to researching.<br>=0A<br>=0AI found 2 more things which I tho=
ught would solve my problem.  I found POST_MAX:<br>=0A<br>=0A<font col=
or=3D"#110094">my</font> <font color=3D"#1800d1">$req</font> =3D Apache2::R=
equest-><font color=3D"#110094">new</font>(<font color=3D"#1800d1">$r</f=
ont>,POST_MAX =3D>100 * 1024 * 1024);<br>=0A<br>=0AAnd also<br>=0A<br>=
=0A<font color=3D"#1800d1">$req</font>->read_limit(100 * 1024 * 1024);<b=
r>=0A<br>=0ASo I tried playing with these settings and all I get now is =E2=
=80=9CConflicting information=E2=80=9D in my log files.  As soon as I =
set POST_MAX or read_limit to anything below </span></font></font><font fac=
e=3D"Calibri, Verdana, Helvetica, Arial"><span style=3D"font-size: 11pt;">6=
7108864 it works fine for all files less then 64M in size.  How can I =
get mod_perl2 to upload a 700mb file.  If you need sample code of what=
I am doing I am more then happy to provide it.<br>=0A<br>=0AThanks in adva=
nce,<br>=0A<br>=0ATim Hibbard<br>=0ASenior Program Engineer<br>=0AOhio Univ=
ersity<br>=0AAthens, Ohio 457-1</span></font>=0A<meta http-equiv=3D"x-dns-p=
refetch-control" content=3D"on"></div></div></blockquote>=0A</div><br>=0A=
=0A=0A=0A=0A=0A=0A=0A </body></html>
--0-109997068-1295980266=:30338--
Joe Schaefer [ Di, 25 Januar 2011 19:31 ] [ ID #2053808 ]

Re: Uploading Files bigger the 64M

This is a multi-part message in MIME format.
--------------020907080401020908040900
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit

1) You may lower the limit, not raise it. If you are trying to raise
it, you will get "Conflicting information".

2) Your server config trumps your virtual-host config. If you have not
set APREQ2_ReadLimit outside of your VirtualHost, then it is set for you
(64M).

Personally, I do this:

A) Set APREQ2_ReadLimit in /etc/httpd/conf.d/apreq.conf to the largest
value I would allow for any virtual host.

B) Set APREQ2_ReadLimit to the largest upload value appropriate for the
client inside their VirtualHost container.

C) Set $req->read_limit inside a PerlResponseHandler depending on the
logical type of request:

# The Apache request library only allows lowering the read limit
(POST_MAX).
# The default is 64M (64 * 1024 * 1024) so if larger uploads are
desired, one
# must raise the limit by setting APREQ2_ReadLimit in the Apache
configuration.
# When using VirtualHosts, the larger limit *must* be specified in
server
# configuration, and then optionally reduced in the vhost config.
# http://marc.info/?l=apreq-dev&m=115829354028472&w=2
my $limit = $req->read_limit();
my $max = $rr->max_post_size; # the max post size allowed for the
current request
if ($max > $limit) {
$Log->warn(sprintf('Cannot raise read_limit from %d to %d', $limit,
$max));
} else {
$req->read_limit($max) or die $!;
$limit = $req->read_limit();
$Log->error('Error setting read_limit') unless $limit == $max;
}



On 01/25/2011 01:23 PM, Hibbard, Timothy wrote:
> I am having all sorts of troubles uploading files bigger then 64M
> using mod_perl2.
>
> Any file I try to upload that is bigger then 63M I get the following
> error.
>
> (20014)Internal error: Content-Length header (723283299) exceeds
> configured max_body limit (67108864)
>
> So I told myself lets do a little research .... It is Perl so this
> should be easy to fix. After a little of researching I found the
> APREQ2_ReadLimit parameter for the httpd.conf. So I added this to my
> httpd.conf.
>
> APREQ2_ReadLimit 1024M (1 Gig)
>
> Restarted Apache and tried again .... Still no luck with same error
> message. Back to researching.
>
> I found 2 more things which I thought would solve my problem. I found
> POST_MAX:
>
> my $req = Apache2::Request->new($r,POST_MAX =>100 * 1024 * 1024);
>
> And also
>
> $req->read_limit(100 * 1024 * 1024);
>
> So I tried playing with these settings and all I get now is
> "Conflicting information" in my log files. As soon as I set POST_MAX
> or read_limit to anything below 67108864 it works fine for all files
> less then 64M in size. How can I get mod_perl2 to upload a 700mb
> file. If you need sample code of what I am doing I am more then happy
> to provide it.
>
> Thanks in advance,
>
> Tim Hibbard
> Senior Program Engineer
> Ohio University
> Athens, Ohio 457-1

--------------020907080401020908040900
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html; charset=ISO-8859-1"
http-equiv="Content-Type">
</head>
<body text="#000000" bgcolor="#ffffff">
<tt>1) You may lower the limit, not raise it.  If you are trying to
raise it, you will get "Conflicting information".<br>
<br>
2) Your server config trumps your virtual-host config.  If you have not
set APREQ2_ReadLimit outside of your VirtualHost, then it is set for
you (64M).<br>
<br>
Personally, I do this:<br>
<br>
A) Set APREQ2_ReadLimit in /etc/httpd/conf.d/apreq.conf to the largest
value I would allow for any virtual host.<br>
<br>
B) Set APREQ2_ReadLimit to the largest upload value appropriate for the
client inside their VirtualHost container.<br>
<br>
C) Set $req->read_limit inside a PerlResponseHandler depending on
the logical type of request:<br>
<br>
  # The Apache request library only allows lowering the read limit
(POST_MAX).<br>
  # The default is 64M (64 * 1024 * 1024) so if larger uploads are
desired, one<br>
  # must raise the limit by setting APREQ2_ReadLimit in the Apache
configuration.<br>
  # When using VirtualHosts, the larger limit *must* be specified in
server <br>
  # configuration, and then optionally reduced in the vhost config.<br>
  # <a class="moz-txt-link-freetext" href="http://marc.info/?l=apreq-dev&m=115829354028472&w=2">http://marc.info/?l=apreq-dev&m=115829354028472&w=2</a><br>
  my $limit = $req->read_limit();<br>
  my $max = $rr->max_post_size; # the max post size allowed for the
current request<br>
  if ($max > $limit) {<br>
    $Log->warn(sprintf('Cannot raise read_limit from %d to %d',
$limit, $max));<br>
  } else {<br>
    $req->read_limit($max) or die $!;<br>
    $limit = $req->read_limit();<br>
    $Log->error('Error setting read_limit') unless $limit == $max;<br>
  }<br>
</tt><br>
<br>
<br>
On 01/25/2011 01:23 PM, Hibbard, Timothy wrote:
<blockquote cite="mid:C9647F61.20F4%25hibbard [at] ohio.edu" type="cite">
<title>Uploading Files bigger the 64M</title>
<font face="Calibri, Verdana, Helvetica, Arial"><span
style="font-size: 11pt;">I am having all sorts of troubles uploading
files bigger then 64M using mod_perl2.<br>
<br>
Any file I try to upload that is bigger then 63M I get the following
error.<br>
<br>
(20014)Internal error: Content-Length header (723283299) exceeds
configured max_body limit (67108864)<br>
<br>
So I told myself lets do a little research .... It is Perl so this
should be easy to fix.  After a little of researching I found the </span></font><font
size="1"><font face="Helvetica, Verdana, Arial"><span
style="font-size: 9pt;">APREQ2_ReadLimit parameter for the httpd.conf.
 So I added this to my httpd.conf.<br>
<br>
APREQ2_ReadLimit 1024M (1 Gig)<br>
<br>
Restarted Apache and tried again .... Still no luck with same error
message.  Back to researching.<br>
<br>
I found 2 more things which I thought would solve my problem.  I found
POST_MAX:<br>
<br>
<font color="#110094">my</font> <font color="#1800d1">$req</font> =
Apache2::Request-><font color="#110094">new</font>(<font
color="#1800d1">$r</font>,POST_MAX =>100 * 1024 * 1024);<br>
<br>
And also<br>
<br>
<font color="#1800d1">$req</font>->read_limit(100 * 1024 * 1024);<br>
<br>
So I tried playing with these settings and all I get now is
“Conflicting information” in my log files.  As soon as I set POST_MAX
or read_limit to anything below </span></font></font><font
face="Calibri, Verdana, Helvetica, Arial"><span
style="font-size: 11pt;">67108864 it works fine for all files less
then 64M in size.  How can I get mod_perl2 to upload a 700mb file.  If
you need sample code of what I am doing I am more then happy to provide
it.<br>
<br>
Thanks in advance,<br>
<br>
Tim Hibbard<br>
Senior Program Engineer<br>
Ohio University<br>
Athens, Ohio 457-1</span></font>
</blockquote>
</body>
</html>

--------------020907080401020908040900--
Ryan Gies [ Di, 25 Januar 2011 19:46 ] [ ID #2053809 ]

Re: Uploading Files bigger the 64M

--_000_C964940620FEhibbardohioedu_
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

Worked like a charm. I had APREQ_ReadLimit in a vhost ... Once moving it o=
ut of the vhost I can now upload bigger files. Should have used the mailin=
g list before making an indentation in the brick wall with my forehead.

Many thanks!

Tim Hibbard


On 1/25/11 1:31 PM, "Joe Schaefer" <joe_schaefer [at] yahoo.com> wrote:

It's a bug in the merge code for mod_apreq2. Basically
you have to set APREQ_ReadLimit to its max value
in the main server's context (not in a vhost or Location
or Directory config).

Otherwise use the code in apreq's trunk.


From: "Hibbard, Timothy" <hibbard [at] ohio.edu>
To: "modperl [at] perl.apache.org" <modperl [at] perl.apache.org>
Sent: Tue, January 25, 2011 1:23:45 PM
Subject: Uploading Files bigger the 64M

Uploading Files bigger the 64M I am having all sorts of troubles uploading =
files bigger then 64M using mod_perl2.

Any file I try to upload that is bigger then 63M I get the following error.

(20014)Internal error: Content-Length header (723283299) exceeds configured=
max_body limit (67108864)

So I told myself lets do a little research .... It is Perl so this should b=
e easy to fix. After a little of researching I found the APREQ2_ReadLimit =
parameter for the httpd.conf. So I added this to my httpd.conf.

APREQ2_ReadLimit 1024M (1 Gig)

Restarted Apache and tried again .... Still no luck with same error message=
.. Back to researching.

I found 2 more things which I thought would solve my problem. I found POST=
_MAX:

my $req =3D Apache2::Request->new($r,POST_MAX =3D>100 * 1024 * 1024);

And also

$req->read_limit(100 * 1024 * 1024);

So I tried playing with these settings and all I get now is "Conflicting in=
formation" in my log files. As soon as I set POST_MAX or read_limit to any=
thing below 67108864 it works fine for all files less then 64M in size. Ho=
w can I get mod_perl2 to upload a 700mb file. If you need sample code of w=
hat I am doing I am more then happy to provide it.

Thanks in advance,

Tim Hibbard
Senior Program Engineer
Ohio University
Athens, Ohio 457-1



--_000_C964940620FEhibbardohioedu_
Content-Type: text/html; charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<HTML>
<HEAD>
<TITLE>Re: Uploading Files bigger the 64M</TITLE>
</HEAD>
<BODY>
<FONT FACE=3D"Calibri, Verdana, Helvetica, Arial"><SPAN STYLE=3D'font-size:=
11pt'>Worked like a charm.  I had APREQ_ReadLimit in a vhost ... Once =
moving it out of the vhost I can now upload bigger files.  Should have=
used the mailing list before making an indentation in the brick wall with =
my forehead.<BR>
<BR>
Many thanks!<BR>
<BR>
Tim Hibbard<BR>
<BR>
<BR>
On 1/25/11 1:31 PM, "Joe Schaefer" <<a href=3D"joe_schaefer [at] ya=
hoo.com">joe_schaefer [at] yahoo.com</a>> wrote:<BR>
<BR>
</SPAN></FONT><BLOCKQUOTE><FONT FACE=3D"Courier, Courier New"><SPAN STYLE=
=3D'font-size:12pt'>It's a bug in the merge code for mod_apreq2.  Basi=
cally<BR>
you have to set APREQ_ReadLimit to its max value<BR>
in the main server's context (not in a vhost or Location<BR>
or Directory config).<BR>
<BR>
Otherwise use the code in apreq's trunk.<BR>
<BR>
</SPAN></FONT><BLOCKQUOTE><FONT FACE=3D"Courier, Courier New"><SPAN STYLE=
=3D'font-size:12pt'><BR>
</SPAN></FONT><FONT FACE=3D"Tahoma, Verdana, Helvetica, Arial"><SPAN STYLE=
=3D'font-size:11pt'><B>From:</B></SPAN><SPAN STYLE=3D'font-size:12pt'> &quo=
t;Hibbard, Timothy" <<a href=3D"hibbard [at] ohio.edu">hibbard [at] ohio.edu<=
/a>><BR>
<B>To:</B> "<a href=3D"modperl [at] perl.apache.org">modperl [at] perl.apache.or=
g</a>" <<a href=3D"modperl [at] perl.apache.org">modperl [at] perl.apache.org=
</a>><BR>
<B>Sent:</B> Tue, January 25, 2011 1:23:45 PM<BR>
<B>Subject:</B> Uploading Files bigger the 64M<BR>
</SPAN></FONT><SPAN STYLE=3D'font-size:12pt'><FONT FACE=3D"Times New Roman"=
><BR>
Uploading Files bigger the 64M </FONT></SPAN><FONT FACE=3D"Calibri, Verdana=
, Helvetica, Arial"><SPAN STYLE=3D'font-size:11pt'>I am having all sorts of=
troubles uploading files bigger then 64M using mod_perl2.<BR>
<BR>
Any file I try to upload that is bigger then 63M I get the following error.=
<BR>
<BR>
(20014)Internal error: Content-Length header (723283299) exceeds configured=
max_body limit (67108864)<BR>
<BR>
So I told myself lets do a little research .... It is Perl so this should b=
e easy to fix.  After a little of researching I found the </SPAN></FON=
T><FONT SIZE=3D"1"><FONT FACE=3D"Helvetica, Verdana, Arial"><SPAN STYLE=3D'=
font-size:9pt'>APREQ2_ReadLimit parameter for the httpd.conf.  So I ad=
ded this to my httpd.conf.<BR>
<BR>
APREQ2_ReadLimit 1024M (1 Gig)<BR>
<BR>
Restarted Apache and tried again .... Still no luck with same error message=
..  Back to researching.<BR>
<BR>
I found 2 more things which I thought would solve my problem.  I found=
POST_MAX:<BR>
<BR>
<FONT COLOR=3D"#110094">my</FONT> <FONT COLOR=3D"#1800D1">$req</FONT> =3D A=
pache2::Request-><FONT COLOR=3D"#110094">new</FONT>(<FONT COLOR=3D"#1800=
D1">$r</FONT>,POST_MAX =3D>100 * 1024 * 1024);<BR>
<BR>
And also<BR>
<BR>
<FONT COLOR=3D"#1800D1">$req</FONT>->read_limit(100 * 1024 * 1024);<BR>
<BR>
So I tried playing with these settings and all I get now is “Conflict=
ing information” in my log files.  As soon as I set POST_MAX or =
read_limit to anything below </SPAN></FONT></FONT><FONT FACE=3D"Calibri, Ve=
rdana, Helvetica, Arial"><SPAN STYLE=3D'font-size:11pt'>67108864 it works f=
ine for all files less then 64M in size.  How can I get mod_perl2 to u=
pload a 700mb file.  If you need sample code of what I am doing I am m=
ore then happy to provide it.<BR>
<BR>
Thanks in advance,<BR>
<BR>
Tim Hibbard<BR>
Senior Program Engineer<BR>
Ohio University<BR>
Athens, Ohio 457-1</SPAN></FONT><FONT FACE=3D"Times New Roman"><SPAN STYLE=
=3D'font-size:12pt'> <BR>
</SPAN></FONT></BLOCKQUOTE><FONT FACE=3D"Calibri, Verdana, Helvetica, Arial=
"><SPAN STYLE=3D'font-size:11pt'><BR>
 <BR>
</SPAN></FONT></BLOCKQUOTE>
</BODY>
</HTML>


--_000_C964940620FEhibbardohioedu_--
hibbard [ Di, 25 Januar 2011 20:51 ] [ ID #2053810 ]
Webserver » gmane.comp.apache.mod-perl » Uploading Files bigger the 64M

Vorheriges Thema: Dollar Self Storage (aka mod_perl children sharing/updating data on a schedule)
Nächstes Thema: question on installing perl modules