How Can I Change The Maximum Size Of Uploaded files

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
Using the Concrete Migration Tool Addon
Apr 27, 2023

How to use the Concrete CMS Migration Tool

How To Add Page Last Updated To Your Concrete CMS Pages
Mar 7, 2023

Concrete CMS has a page attribute you can add to a global area called "Page Date Modified." Here's how to add it

How To Exclude Subpages from Navigation
Dec 24, 2022

How to exclude subpages from navigation - useful for a news or blog link in your main navigation where you don't want all the subpages to appear in a drop down menu.

How Can I Change The Maximum Size Of Uploaded files
Dec 13, 2022

This tutorial explains how to update your php settings.

Updating Concrete Themes from Version 8 to Version 9
Nov 24, 2022

This tutorial covers commonly encountered issues when upgrading a Concrete CMS theme from version 8 to version 9

Transferring ownership of an add-on and a theme
Nov 15, 2022
By katzueno.

If you encounter a Concrete CMS add-on or theme that you love but not being maintained, you may want to ask the author to help or take over the add-on or theme. Here is the quick step-by-step guide of how to transfer the ownership.

Was this information useful?
Thank you for your feedback.