简体   繁体   中英

How to remove the default upload capacity limit of 40MB in joomla?

I am a new to joomla, I use xampp to install joomla, because the default upload file size of joomla is 40MB, if the file is too large, how to solve it? Is there a way to remove the 40MB default upload capacity of Joomla?

The picture is as follows: enter image description here

Joomla does not restrict file upload size for extension installation. You need to increase the upload_max_filesize and post_max_size PHP variables.

You can do this via cPanel -> Select PHP Version -> Options if you are using cPanel or you may be able to edit the php.ini file in the root folder of your website eg /public_html/php.ini as follows:

upload_max_filesize = 128M
post_max_size = 128M

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM