How to increase slider image upload size?
-
How to increase slider image upload size?
-
Please answer
-
Hello,
To increase file upload size, you need to set the value of 'upload_max_filesize' and 'post_max_size' in your php.ini.
Path of this file in linux is -> /etc/php/7.2/apache2.; Maximum allowed size for uploaded files.
upload_max_filesize = 40M; Must be greater than or equal to upload_max_filesize
post_max_size = 40MFor more refference, please see this one - https://stackoverflow.com/questions/2184513/change-the-maximum-upload-file-size
Thanks
Rahul Shukla