0

I have developed a custom form that is actually a MARKSHEET report in MOODLE, with increase in number of students and marks columns that input field quantity may rise upto 1000 and above.

Whenever the form input fields go above 1000, the form does not submit and goes to 404 NOT FOUND page.

I have updated the value of max_input_vars to 3000 and restarted my APACHE, even after which it is not working.

Any clues or suggestion ?

Try the HTML version of that form over here: http://scarsdale.edu.pk/testing.php

Its attempting to submit through ajax ON LOAD but fails.

1 Answers1

0

Although the specification of the HTTP protocol does not specify any maximum length, practical limits are imposed by web browser and server software.

Check this answer: What is the maximum possible length of a query string?

Community
  • 1
  • 1
MillaresRoo
  • 3,808
  • 1
  • 31
  • 37
  • not possible. because all limits are in 1000s of characters and I am only submitting empty form which is not going because of number of fields. – Danish Jalbani Oct 10 '14 at 19:14
  • But input names also counts for the limit of characters. – MillaresRoo Oct 10 '14 at 19:17
  • http://scarsdale.edu.pk/testing.php ....... this is the form in its HTML form, on its load im trying to submit it to a test file through ajax. You can check out its SOURCE... but its not submitting through ajax also – Danish Jalbani Oct 10 '14 at 19:24