8

Possible Duplicate:
PHP see only 20 uploading files at a time

I tried changing it in php.ini development and production. but still I am unable to upload files more than 20 at the same time. I have checked current setting using phpinfo(); but still showing max_file_uploads is 20 not showing changed value in php.ini.

Community
  • 1
  • 1
user1933652
  • 99
  • 1
  • 1
  • 3

1 Answers1

6

You have to change the values in php.ini file.Your php.ini file is in xampp\php\php.ini

You have to change both these values to be able to upload bigger files,

Example to change it into 100Mb set :

upload_max_filesize = 100M
post_max_size = 100M

Note: After you edit your php.ini file restart xampp or apache server to see the difference.

Mevin Babu
  • 2,405
  • 21
  • 34