Skip to content

Instantly share code, notes, and snippets.

@hissy
Last active April 12, 2022 09:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hissy/736b247fd76071ace1707c5c3e31f86c to your computer and use it in GitHub Desktop.
Save hissy/736b247fd76071ace1707c5c3e31f86c to your computer and use it in GitHub Desktop.
#concrete5 Disable getting external resources from concretecms.org

You can disable network connection to concretecms.org by setting some config values in your application/config/concrete.php if you want to use Concrete CMS on the server that can't connect to external resources.

You may also need to uninstall some block types that connect to concretecms.org listed below:

  • Concrete Status Messages
  • Desktop Latest News
  • Dashboard Featured Add-On
  • Dashboard Featured Theme
<?php
/**
* Put this file at application/config/concrete.php
* Disable getting external news, help and updates from concrete5.org
*/
return [
'marketplace' => [
'enabled' => false, // Disable connect to marketplace
],
'external' => [
'intelligent_search_help' => false, // Disable intelligent search help on toolbar
'news' => false,
],
'updates' => [
'skip_core' => true, // Skip to check available core updates on concretecms.org
'skip_packages' => true, // Skip to check available package updates on concretecms.org
],
'whilte_label' => [
'background_image' => 'none', // Disable load background image from concretecms.org
],
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment