Hi there,

I am having an issue with a webform on my site.

Even before the form is submitted an error appears saying "This form could not be submitted because it exceeds the server configuration. Contact the administrator.".

I have had a look at my php.ini file and the max_input_vars is set at 3000 so I don't think this is the issue.

Can anyone advise?

Kind regards.

Comments

DanChadwick’s picture

Status: Active » Fixed

You are certainly not using 7.x-4.0. The latest dev with fix this. Or you aren't looking at the right .ini file.

BangAustralia’s picture

I am using 7.34?

BangAustralia’s picture

Status: Fixed » Active
DanChadwick’s picture

Status: Active » Fixed

webform version, not Drupal.

BangAustralia’s picture

Webform 7.x-4.3

Webform Rules 7.x-1.6

BangAustralia’s picture

Version: 7.x-4.0 » 7.x-4.3
Status: Fixed » Active
DanChadwick’s picture

Status: Active » Fixed

Try the latest dev, not the latest stable. 7.x-4.x-dev.

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.

develway’s picture

Got the same problem, webform doesn't work with 7.x-4.x-dev and 7.x-4.12, all the time: This form could not be submitted because it exceeds the server configuration.
We changed the message, but if possible to find solution it would be greate!
Check this website with error: http://www.hotel-nova.de/en/reservation

develway’s picture

Status: Closed (fixed) » Active
wOOge’s picture

I was having the same issue using a custom theme template webform-form-NID.tpl.php (where NID = the webform node id). I had to add the following lines of code to the beginning of the template:

print render($form['form_id']);
print render($form['form_build_id']);
print render($form['form_token']);
DanChadwick’s picture

Version: 7.x-4.3 » 7.x-4.x-dev
Status: Active » Fixed

Problem is either that you are removing the form_id, possibly with a custom theme, or you PHP configuration is not allowing enough input vars. See https://www.drupal.org/node/2417757#comment-10104084

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.