Cannot upload more than 20 images via a single submission of item form

  • Published by
    George Papadakis
  • Last modified
    28 November 2017
  • Up to date
    Yes
  • Profile concerned
    End user
  • Concerns
    Component
  • Since Version
    1.5.6
  • Voting
    Average rating
    1 vote
    • 1
    • 2
    • 3
    • 4
    • 5
  • Favourites
    516 Cannot upload more than 20 images via a single submission of item form /documentation/tutorials-english/75-basic-usage/516-cannot-upload-more-than-20-images-via-a-single-submission-of-item-form.html

The reason is that your server is posing a limit via PHP configuration variable:
max_file_uploads

1. Either edit you php.ini

max_file_uploads=100

2. Or edit you .htaccess

php_value  max_file_uploads  100

 

NOTE: if your server is using suhosin.upload.max_uploads
then add to .htaccess

php_value  suhosin.upload.max_uploads  100