On Tue, Mar 10, 2009 at 11:22 PM, Greg <gregplaysgui...@gmail.com> wrote: > I've checked the actual posted data and it is all being posted > correctly, which leads me to the conclusion that something in django > itself is choking...? Can anyone help me with this? Is there a limit > as to how many form fields you can have?
There's absolutely no limit that Django has in regards to the number of form fields; there's got to be something else going on. One thing I'd check: what form method are you using -- `GET`, or `POST`? Remember that there's a limit on the length of the query string used by `GET` (RFC 2068 suggests that anything over 255 characters is a bad idea), so double-check that you're using `POST` here. If it's not that, you should probably post more information -- your form class, view, and template would help us figure out what's going on. Jacob --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---