Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Howdy... I have a form that may contain several hundred fields. $CGI::POST_MAX = -1. In the Apache httpd.conf file, we have this line:
LimitRequestBody 2147483647
Yet when I submit the form, I only get the first 8k (field names + data). I'm running ActiveState perl 5.6.1 on Windows XP (don't ask). Here's the code.

Can anyone *please* help me out? I have no idea why this is happening. Yes, I have tried Apache forums.
Thank you Thank you Thank you.
#!C:\perl\bin\perl -w use CGI; use strict; $| = 1; my $query = new CGI; print $query->header("text/html"); print "<html><body>\n"; for my $val ($query->param){ my $ct = 1; print "<BR>submitted $val: "; foreach ($query->param($val)) { print "<BR>$ct [" . $query->param($val) . "]\n"; $ct += 1; } } print "<form name=frmSize method=Post>\n"; #The input field "x" has a value 100 bytes long. for (my $i = 0; $i < 200; $i++){ print "<BR>input box $i:<input type=text size=110 name=\"x\" value +=\"012345678901234567890123456789012345678901234567890123456789012345 +6789012345678901234567890123456789\">\n"; } print "<BR><input type=submit></form>\n"; print "</body></html>\n"; exit 0;

In reply to Form POST Size by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (2)
As of 2024-04-26 01:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found