# PHP see only 20 uploading files at a time
# There are limits as to how much PHP can post. See the upload_max_filesize, max_file_uploads, and post_max_size directives.
max_file_uploads = 100
post_max_size =100
upload_max_filesize = 100
# http://stackoverflow.com/questions/6083179/php-see-only-20-uploading-files-at-a-time
# http://stackoverflow.com/a/6083210/2618535