Concrete5 5.6's config file (/config/site.php) allows us to easily customise some additional features in the CMS.
Here is a list of some useful config settings for Concrete5 v5.6:
<code>// Connect to a remote DB server define('DB_SERVER', '23.100.62.31'); //Page list teasers intro area define('PAGE_LIST_TEASERS_AREA', 'Intro'); //Disable concrete5 marketplace integration. define('ENABLE_MARKETPLACE_SUPPORT', false); //Disable help searches in the intelligent search. define('ENABLE_INTELLIGENT_SEARCH_HELP', false); //Disable marketplace add-ons appear in intelligent search results. define('ENABLE_INTELLIGENT_SEARCH_MARKETPLACE', false); //Disable newsflow define('ENABLE_NEWSFLOW_OVERLAY', false); //Disable Newsflow connect to concrete5.org to retrieve latest updates. define('ENABLE_APP_NEWS', false); // Set default email address and site name from website define('FORM_BLOCK_SENDER_EMAIL', '[email protected]'); define('EMAIL_DEFAULT_FROM_ADDRESS', '[email protected]'); define('EMAIL_DEFAULT_FROM_NAME', 'My Whiz-Bang Site'); // Page Title Format define('PAGE_TITLE_FORMAT', '%2$s');</code>
Want to have your say on this topic? Start by posting your comment below...
Related Articles
09 July 2025
Concrete CMS comes with very flexible, granular user permissions. When setting permissions to advanced, we can give users access to edit as much or… Read more
16 October 2024
Caching is essential for making web pages load fast, but you also need an acceptable level of control to avoid other issues. Concrete CMS features a… Read more
13 May 2024
As a website owner you will want to add 301 redirects when you have a page or product that has been discontinued. If you don't do this, your users… Read more
Keep up to date