Re: POST large amount of data causes segmentation fault

2020-02-14 Thread wesley
ussell Lundberg mailto:lundberg.russ...@gmail.com> > Betreff: Re: POST large amount of data causes segmentation fault Datum: 09.02.2020, 19:22 Uhr An: Scott Alexander mailto:scott.alexan...@humak.fi> > CC: modperl@perl.apache.org mailto:modperl@perl.apache.org> > You might want t

Re: POST large amount of data causes segmentation fault

2020-02-10 Thread Ruben Safir
On Sun, Feb 09, 2020 at 04:26:31PM +0100, Vincent Veyron wrote: > On Sun, 9 Feb 2020 10:57:04 + > Scott Alexander wrote: > > > I meant I'm posting data from a form, javascript is collecting a series of > > numbers from a as a string. > > Not really clear what happens here? I guess Javascri

Re: POST large amount of data causes segmentation fault

2020-02-10 Thread tomcat/perl
On 09.02.2020 16:26, Vincent Veyron wrote: On Sun, 9 Feb 2020 10:57:04 + Scott Alexander wrote: I meant I'm posting data from a form, javascript is collecting a series of numbers from a as a string. Not really clear what happens here? I guess Javascript writes the content of the text

Re: POST large amount of data causes segmentation fault

2020-02-09 Thread Vincent Veyron
On Sun, 9 Feb 2020 10:57:04 + Scott Alexander wrote: > I meant I'm posting data from a form, javascript is collecting a series of > numbers from a as a string. Not really clear what happens here? I guess Javascript writes the content of the text input? > Javascript seperates each number

Re: POST large amount of data causes segmentation fault

2020-02-09 Thread Russell Lundberg
t; Tel. +358 (0)50 411 9556 > > scott.alexan...@humak.fi > > ---------- > *From:* Russell Lundberg > *Sent:* 09 February 2020 12:12 > *To:* Scott Alexander > *Cc:* modperl@perl.apache.org > *Subject:* Re: POST large amount of data causes segmentation

Re: POST large amount of data causes segmentation fault

2020-02-09 Thread Scott Alexander
lt;mailto:scott.alexan...@humak.fi> From: Russell Lundberg Sent: 09 February 2020 12:12 To: Scott Alexander Cc: modperl@perl.apache.org Subject: Re: POST large amount of data causes segmentation fault Scott, Are you saying that the incoming request has a length of

Re: POST large amount of data causes segmentation fault

2020-02-09 Thread Russell Lundberg
Scott, Are you saying that the incoming request has a length of 42,000+ characters? Apache docs say 8,192 characters is the maximum length of a URL. Would it be possible to reduce the length of the request until the segmentation fault stops occurring? -- Russell Lundberg Latest Blog Post for Tel

POST large amount of data causes segmentation fault

2020-02-09 Thread Scott Alexander
Hi, I have in my code $req = Apache2::Request->new($r); My code gets to line 41 then causes a "child pid 13766 exit signal Segmentation fault (11)" $r->log_error("LINE 41") ; @number = split /\//, $req->param("numbers") ; $r->log_error("LINE 43") ; the incoming numbers contains a string of mo