I have a custom CMS i\'ve built that works perfectly on my dev box (Ubuntu/PHP5+/MySQL5+).
I just moved it up to the production box for my client and now all form su
Make sure that, in php.ini:
track_vars (it's only available on very old PHP versions) is set to Onvariables_order contains the letter Ppost_max_size is set to a reasonable value (e.g. 8 MB)suhosin.post.max_vars and suhosin.request.max_vars are large enough.I suppose the second suggestion of mine will solve your problem.