I have a file upload system which, in PHP, limits to 20 files at once, even though I select 25-30 files it only uploads 20. I would like to know why this problem exists and if there is a fix to this either from php.ini or from anywhere.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
change max_file_uploads to whatever value you like in your php.ini. but beware of few gotchas
max_file_uploads counts empty upload fields as if they were being used
there is a good article on this that you should read