How Can I Change The Maximum Size Of Uploaded files

This tutorial is over a year old and may not apply to your version of Concrete CMS.
Dec 13, 2022

To change the maximum size of uploaded files in Concrete CMS, you can follow these steps:

Check your current PHP settings by navigating to Concrete CMS Dashboard > System & Settings > Environment > Environment Information. Make note of the existing values for memory_limit, post_max_size, and upload_max_filesize.

If you are using cPanel, you can edit these settings in the multi-PHP editor. Login to cPanel Navigate to cPanel > Software > MultiPHP INI Editor for cPanel.

Choose the Editor Mode tab and add the desired values for memory_limit, post_max_size, and upload_max_filesize.

If you are not using cPanel, you can edit the .htaccess file to adjust these settings. Access the .htaccess file via SFTP or your hosting provider's file manager and add the following code at the bottom of the file:

php_value memory_limit = 128M php_value post_max_size = 100M php_value upload_max_filesize = 100M php_value max_execution_time = 30

Remember to replace the example values with your desired values, and ensure that memory_limit is larger than post_max_size and upload_max_filesize.

Recent Tutorials
Create custom Site Health tasks
Apr 19, 2024
By myq.

This tutorial will guide you through the creation of a new Site Health task

Reusing the same Express entity in multiple associations
Apr 11, 2024
By myq.

How to create and manage multiple associations in Express

Express Form Styling
Apr 11, 2024
By myq.

Different ways to style Express forms

Setting addon/theme version compatibility in the marketplace
Jan 9, 2024

For developers worn out with setting the latest addon or theme version manually across too many core versions, here is a JavaScript bookmarklet to do it for you.

How to get the locale of a page
Jan 8, 2024
By wtfdesign.

Now, why don't we just have a getLocale() method on Page objects beats me, but here's how you work around it

Using a Redis Server
Jun 16, 2023
By mlocati.

How to configure Concrete to use one or more Redis servers to persist the cache.

Improvements?

Let us know by posting here.