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
How to Automate the Copyright Year
Dec 27, 2024

Learn how to keep your website's copyright year updated automatically in Concrete CMS.

How to change the path of a group of pages
Dec 23, 2024
By myq.

Change the canonical path without breaking things

Bi-directional Express associations
Dec 18, 2024
By myq.

Set up associations between Express entries in both directions

Display Express Data Across Multiple Sites
Dec 17, 2024
By myq.

A guide to configuring Express entities and the Express Entry List block to ensure proper data display across multiple sites.

Customize locale icons
Oct 29, 2024
By myq.

How to customize locale (language region) flags

Concrete CMS Caching Guide
Oct 16, 2024

An overview of types of caching in Concrete and considerations when using them.

Improvements?

Let us know by posting here.