lnxg33k / webhandler

Bash simulator to control a server using PHP system functions.
GNU General Public License v3.0
102 stars 32 forks source link

A solution for 414 error code within upload. #14

Closed lnxg33k closed 11 years ago

lnxg33k commented 11 years ago

Stage the data into chunks instead of sending all of the them at once.

 def chuncks(seq, length):
            return [seq[i:i + length] for i in xrange(0, len(seq), length)]