When i edit product and give new option to attributes to product it gives following error.
Validation error, please try again. If this error persists, please contact the site administrator.

Else all site is working fine
actually may be we have too much attribute options and jquery dragable also give error and i have to stop js running.

Comments

tr’s picture

Priority: Critical » Normal
Status: Active » Closed (works as designed)

This is a Drupal error message, not related to Ubercart. Try googling site:drupal.org "validation error, please try again". There are some ideas in there for what can cause this and how to clear it up.

stockliasteroid’s picture

For future Googlers, I was having this problem with a client who has a massive number of options on an attribute. The form to update the attributes was failing with this error, and I found the solution here: http://drupal.org/node/1087650#comment-4265774. We're running a Debian 6 VPS with the Suhosin patch, which was limiting the # of possible post variables. As a result, Drupal was getting an incomplete form back, which was triggering the form CSRF protection. I updated it to a pretty large number (3000) for both post.max_vars and request.max_vars, restarted Apache, and that took care of it.