Extend qs parameter limit in upload.js

@patrick

Similar to what you did here:

Can you extend the parameter limit as well, or make one/both of these configurable?

From upload.js:

        req.body = qs.parse(encoded, {
            arrayLimit: 100,
            parameterLimit: 10000
        });

I’ve tested this and it fixes a large form post a client has, so I know this works.

From the repository:

@patrick Thoughts on this request?

Do you really pass more then 1000 parameters?

Yep, I really do. Ultimately, I would like to redesign the whole thing and just send a json object back to the server, but yes today there are over 1,000 hidden inputs for large recipes (Each recipe has dozens of ingredients, and each ingredient has 40 nutritional values that are returned from an api, plus other input values.)