0

I have a form that contains an album of photos. Each photo has a checkbox. When the user presses submit, the checked boxes are sent to another page for processing. So far this works fine for most albums, even up to 100 photo, but there is one album that has 262 photos.

If a user tries to submit that form, the error: an error occurred while processing this directive shows up. Any clue what may be causing this and why it only happens with larger albums?

Robert
  • 8,717
  • 2
  • 27
  • 34
jasonTakesManhattan
  • 167
  • 1
  • 3
  • 12

1 Answers1

0

Maybe you reach the maximum POST size or the GET size?

The 1st one is an option in your php.ini, the 2nd one is a limit in the size of an URL.

Community
  • 1
  • 1
napolux
  • 15,574
  • 9
  • 51
  • 70