so in php 5.3 there's this cap on how many elements a form can contain, and I think I'm running into problem with image upload when I'm trying to send a big image directly from showCamera (~1.4 mb) to the server. On the server side, I'm getting: Unknown: Input variables exceeded 1000. To increase the limit change max_input_vars in php.ini. in Unknown on line 0, anybody else has the same issue? I'm thinking that since e.media is a blob stream, when sending it over the network with xhr.send, perhaps it's sending it bit by bit, therefore a larger image would fail but when I tried smaller images (~50-60k) it worked perfectly?
Your Answer
Think you can help? Login to answer this question!