Extra scripts and CSS in HEAD and footer when not logged in

Permalink Browser Info Environment
I am running 5.7.5.1. I was testing performance and noticed that in the HEAD and before the closing </body> there are a lot of unnecessary scripts and css being loaded when not in edit mode. They look necessary when adding and editing blocks, but on a live site they don't appear to do anything.

I narrowed it down to blocks created with Block Designer.

In the HEAD:
<link href="/updates/concrete5.7.5.1_remote_updater/concrete/css/jquery-ui.css" rel="stylesheet" type="text/css" media="all">
<link href="/updates/concrete5.7.5.1_remote_updater/concrete/css/file-manager.css" rel="stylesheet" type="text/css" media="all">
<link href="/updates/concrete5.7.5.1_remote_updater/concrete/css/select2.css" rel="stylesheet" type="text/css" media="all">


Before the closing </body>:
<script type="text/javascript" src="/updates/concrete5.7.5.1_remote_updater/concrete/js/events.js"></script>
<script type="text/javascript" src="/updates/concrete5.7.5.1_remote_updater/concrete/js/bootstrap/tooltip.js"></script>
<script type="text/javascript" src="/updates/concrete5.7.5.1_remote_updater/concrete/js/underscore.js"></script>
<script type="text/javascript" src="/updates/concrete5.7.5.1_remote_updater/concrete/js/backbone.js"></script>
<script type="text/javascript" src="/updates/concrete5.7.5.1_remote_updater/concrete/js/jquery-ui.js"></script>
<script type="text/javascript" src="http://mysite.com/ccm/assets/localization/jquery/ui/js"></script>
<script type="text/javascript" src="/updates/concrete5.7.5.1_remote_updater/concrete/js/select2.js"></script>
<script type="text/javascript" src="http://mysite.com/ccm/assets/localization/select2/js"></script>
<script type="text/javascript" src="http://mysite.com/ccm/assets/localization/core/js"></script>
<script type="text/javascript" src="/updates/concrete5.7.5.1_remote_updater/concrete/js/app.js"></script>
<script type="text/javascript" src="/updates/concrete5.7.5.1_remote_updater/concrete/js/jquery-fileupload.js"></script>
<script type="text/javascript" src="/updates/concrete5.7.5.1_remote_updater/concrete/js/file-manager.js"></script>



Anyone have insight into this and a fix? Thanks.

Type: Discussion
Status: Resolved
darinronne
View Replies:
ramonleenders replied on at Permalink Reply
ramonleenders
Hi there,

Do you have a specific example of a block that outputs extra scripts/styles? If so, post the config.json file please (or controller.php). I can take a look what could cause this.

Kind regards,

Ramon
darinronne replied on at Permalink Reply
darinronne
I've attached the controller.php and config.json from one of my simpler blocks.

It's only field is a required image. And it outputs the image URL as a background-image on a div. The view.php also includes the "Disabled in Edit Mode" message.

Starting with a blank page, there are no extraneous scripts, then after inserting the above block (or any block created with Block Designer), I get all the extra scripts I listed in my initial post.

Thanks.

It wouldn't let me attach those files, so they are here:

config.json
{"view_css":"","view_js":"","block_name":"Page Intro Image","block_description":"","block_type_set":0,"cache_block_output_lifetime":"","block_install":0,"cache_block_record":1,"cache_block_output":1,"cache_block_output_on_post":1,"cache_block_output_for_registered_users":1,"table_prefix":"","interface_width":"400","interface_height":"500","fields":{"1":{"type":"image","label":"Image","slug":"image","required":"1","prefix":"<div class=\"page-intro__image\">","suffix":"<\/div>","class":"","link":"","link_class":"","output_src_only":"1","width":"","height":"","repeatable":""}},"block_handle":"tchc_page_intro_image","packages":{"block_designer":{"version":"1.2.13"},"block_designer_pro":{"version":"1.1.5"}}}


controller.php
<?php  namespace Application\Block\TchcPageIntroImage;
defined("C5_EXECUTE") or die("Access Denied.");
use Concrete\Core\Block\BlockController;
use Core;
use Loader;
use \File;
use Page;
class Controller extends BlockController
{
    public $helpers = array (
  0 => 'form',
);
    public $btFieldsRequired = array (
  0 => 'image',
);
ramonleenders replied on at Permalink Reply
ramonleenders
OK, I see the issue. In the on_start function, it requires the file manager.

Moving this line will remove 4 .js files and 2 .css files. I will fix this in an upcoming update. If you want to fix this manually, remove this line "$this->requireAsset('core/file-manager');" and copy this after:

public function add()
    {


And

public function edit()
    {


Kind regards,

Ramon
darinronne replied on at Permalink Reply
darinronne
Thanks. That fixed a couple of my blocks, but not the ones that have a repeater field.

public function on_start()
    {
        $al = \Concrete\Core\Asset\AssetList::getInstance();
        $al->register('css', 'repeatable-ft.form', 'blocks/tchc_image_video_slider/css_form/repeatable-ft.form.css', array(), $this->pkg);
        $al->register('javascript', 'handlebars', 'blocks/tchc_image_video_slider/js_form/handlebars-v4.0.2.js', array(), $this->pkg);
        $al->register('javascript', 'handlebars-helpers', 'blocks/tchc_image_video_slider/js_form/handlebars-helpers.js', array(), $this->pkg);$this->requireAsset('core/file-manager');
    }


I tried moving the three $al->register lines to the add() and edit() functions. Existing blocks still function, but can't add/edit them. The Edit modal doesn't appear.

The entire controller.php for a block with a repeater:
<?php  namespace Application\Block\TchcImageVideoSlider;
defined("C5_EXECUTE") or die("Access Denied.");
use Concrete\Core\Block\BlockController;
use Core;
use Loader;
use \File;
use Page;
use URL;
use \Concrete\Core\Editor\Snippet;
use Sunra\PhpSimple\HtmlDomParser;
use \Concrete\Core\Editor\LinkAbstractor;
class Controller extends BlockController
{
    public $helpers = array (
  0 => 'form',
darinronne replied on at Permalink Reply
darinronne
Nevermind. I misread the code.

$this->requireAsset('core/file-manager');

was on the same line as

$al->register('javascript', 'handlebars-helpers', 'blocks/tchc_home_slider/js_form/handlebars-helpers.js', array(), $this->pkg);


and it is already included in the add() and edit() functions. Just had to remove it from on_start().

Thanks again for all your help.
ramonleenders replied on at Permalink Reply
ramonleenders
So you got it all working now, or you still need help?

From what I've seen only the "File", "Image" and "Repeatable" field type have these issues (if you can call them issues haha). I will update these anytime soon! Sorry for the inconvenience so far..

Kind regards,

Ramon
ramonleenders replied on at Permalink Reply
ramonleenders
Hi there,

Version 1.3.4 should fix the problem for block you create in the future (so no more manual editing required).

Kind regards,

Ramon
darinronne replied on at Permalink Reply
darinronne
Did you also apply the fix to Block Designer Pro and the Repeatable field? I didn't see it in the version history.
ramonleenders replied on at Permalink Reply
ramonleenders
Registering assets is not a biggy, the files aren't being loaded. If you are requiring assets, that's what causes to actually load it in the head and/or footer. I spotted this later, so this doesn't need fixing I assume. Or do you think otherwise? Open to any feedback/comments!

concrete5 Environment Information

# concrete5 Version
Core Version - 5.7.5.1
Version Installed - 5.7.5.1
Database Version - 20150713000000

# concrete5 Packages
Events (1.0).

# concrete5 Overrides
blocks/search/templates/tchc_search_page/view.php, blocks/search/templates/tchc_search_page, blocks/search/templates, blocks/search, blocks/tchc_tabbed_content_panel_start/icon.png, blocks/tchc_tabbed_content_panel_start/form.php, blocks/tchc_tabbed_content_panel_start/edit.php, blocks/tchc_tabbed_content_panel_start/composer.php, blocks/tchc_tabbed_content_panel_start/config.json, blocks/tchc_tabbed_content_panel_start/controller.php, blocks/tchc_tabbed_content_panel_start/view.php, blocks/tchc_tabbed_content_panel_start/add.php, blocks/tchc_tabbed_content_panel_start/db.xml, blocks/tchc_tabbed_content_panel_start, blocks/tchc_image_video_slider/js_form/html.sortable.min.js, blocks/tchc_image_video_slider/js_form/handlebars-v4.0.2.js, blocks/tchc_image_video_slider/js_form/handlebars-helpers.js, blocks/tchc_image_video_slider/js_form, blocks/tchc_image_video_slider/icon.png, blocks/tchc_image_video_slider/css_form/repeatable-ft.form.css, blocks/tchc_image_video_slider/css_form, blocks/tchc_image_video_slider/form.php, blocks/tchc_image_video_slider/edit.php, blocks/tchc_image_video_slider/composer.php, blocks/tchc_image_video_slider/auto.js, blocks/tchc_image_video_slider/config.json, blocks/tchc_image_video_slider/controller.php, blocks/tchc_image_video_slider/view.php, blocks/tchc_image_video_slider/add.php, blocks/tchc_image_video_slider/db.xml, blocks/tchc_image_video_slider, blocks/tchc_tabbed_content_start/icon.png, blocks/tchc_tabbed_content_start/controller.php, blocks/tchc_tabbed_content_start/view.php, blocks/tchc_tabbed_content_start, blocks/tchc_page_intro_image/template-intro-image-800x350.psd, blocks/tchc_page_intro_image/icon.png, blocks/tchc_page_intro_image/form.php, blocks/tchc_page_intro_image/edit.php, blocks/tchc_page_intro_image/composer.php, blocks/tchc_page_intro_image/config.json, blocks/tchc_page_intro_image/controller.php, blocks/tchc_page_intro_image/view.php, blocks/tchc_page_intro_image/add.php, blocks/tchc_page_intro_image/db.xml, blocks/tchc_page_intro_image, blocks/tchc_home_slider/js_form/html.sortable.min.js, blocks/tchc_home_slider/js_form/handlebars-v4.0.2.js, blocks/tchc_home_slider/js_form/handlebars-helpers.js, blocks/tchc_home_slider/js_form, blocks/tchc_home_slider/icon.png, blocks/tchc_home_slider/css_form/repeatable-ft.form.css, blocks/tchc_home_slider/css_form, blocks/tchc_home_slider/form.php, blocks/tchc_home_slider/edit.php, blocks/tchc_home_slider/composer.php, blocks/tchc_home_slider/auto.js, blocks/tchc_home_slider/config.json, blocks/tchc_home_slider/controller.php, blocks/tchc_home_slider/view.php, blocks/tchc_home_slider/add.php, blocks/tchc_home_slider/db.xml, blocks/tchc_home_slider, blocks/tchc_tabbed_content_panel_end/icon.png, blocks/tchc_tabbed_content_panel_end/controller.php, blocks/tchc_tabbed_content_panel_end/view.php, blocks/tchc_tabbed_content_panel_end, blocks/tchc_page_selector/js_form/html.sortable.min.js, blocks/tchc_page_selector/js_form/handlebars-v4.0.2.js, blocks/tchc_page_selector/js_form/handlebars-helpers.js, blocks/tchc_page_selector/js_form, blocks/tchc_page_selector/icon.png, blocks/tchc_page_selector/css_form/repeatable-ft.form.css, blocks/tchc_page_selector/css_form, blocks/tchc_page_selector/form.php, blocks/tchc_page_selector/edit.php, blocks/tchc_page_selector/composer.php, blocks/tchc_page_selector/auto.js, blocks/tchc_page_selector/config.json, blocks/tchc_page_selector/controller.php, blocks/tchc_page_selector/view.php, blocks/tchc_page_selector/add.php, blocks/tchc_page_selector/db.xml, blocks/tchc_page_selector, blocks/tchc_home_feature/icon.png, blocks/tchc_home_feature/form.php, blocks/tchc_home_feature/edit.php, blocks/tchc_home_feature/composer.php, blocks/tchc_home_feature/config.json, blocks/tchc_home_feature/controller.php, blocks/tchc_home_feature/view.php, blocks/tchc_home_feature/add.php, blocks/tchc_home_feature/db.xml, blocks/tchc_home_feature, blocks/form/view.php, blocks/form, blocks/tchc_tabbed_content_end/icon.png, blocks/tchc_tabbed_content_end/controller.php, blocks/tchc_tabbed_content_end/view.php, blocks/tchc_tabbed_content_end, blocks/html/templates/no-wrapper.php, blocks/html/templates, blocks/html, languages/tr_TR/LC_MESSAGES/messages.mo, languages/tr_TR/LC_MESSAGES, languages/tr_TR, languages/sv_SE/LC_MESSAGES/messages.mo, languages/sv_SE/LC_MESSAGES, languages/sv_SE, languages/fr_FR/LC_MESSAGES/messages.mo, languages/fr_FR/LC_MESSAGES, languages/fr_FR, languages/it_IT/LC_MESSAGES/messages.mo, languages/it_IT/LC_MESSAGES, languages/it_IT, languages/de_DE/LC_MESSAGES/messages.mo, languages/de_DE/LC_MESSAGES, languages/de_DE, languages/ru_RU/LC_MESSAGES/messages.mo, languages/ru_RU/LC_MESSAGES, languages/ru_RU, languages/nl_NL/LC_MESSAGES/messages.mo, languages/nl_NL/LC_MESSAGES, languages/nl_NL, languages/pt_BR/LC_MESSAGES/messages.mo, languages/pt_BR/LC_MESSAGES, languages/pt_BR, languages/pl_PL/LC_MESSAGES/messages.mo, languages/pl_PL/LC_MESSAGES, languages/pl_PL, languages/ja_JP/LC_MESSAGES/messages.mo, languages/ja_JP/LC_MESSAGES, languages/ja_JP, languages/el_GR/LC_MESSAGES/messages.mo, languages/el_GR/LC_MESSAGES, languages/el_GR, languages/fi_FI/LC_MESSAGES/messages.mo, languages/fi_FI/LC_MESSAGES, languages/fi_FI, languages/sl_SI/LC_MESSAGES/messages.mo, languages/sl_SI/LC_MESSAGES, languages/sl_SI, languages/da_DK/LC_MESSAGES/messages.mo, languages/da_DK/LC_MESSAGES, languages/da_DK, themes/tchc/index.html, themes/tchc/js/app.js, themes/tchc/js/modernizr.js, themes/tchc/js/custom/custom.js, themes/tchc/js/custom, themes/tchc/js, themes/tchc/thumbnail.png, themes/tchc/README.md, themes/tchc/home.php, themes/tchc/elements/footer.php, themes/tchc/elements/header.php, themes/tchc/elements, themes/tchc/description.txt, themes/tchc/bower.json, themes/tchc/test.php, themes/tchc/Gruntfile.js, themes/tchc/page_theme.php, themes/tchc/package.json, themes/tchc/fonts/poppins-regular.ttf, themes/tchc/fonts/poppins-regular.woff2, themes/tchc/fonts/poppins-regular.eot, themes/tchc/fonts/poppins-regular.woff, themes/tchc/fonts/poppins-regular.svg, themes/tchc/fonts, themes/tchc/img/icon-facebook-white.svg, themes/tchc/img/icon-linkedin-92x92-align-bottom.png, themes/tchc/img/logo-tri-living-well.svg, themes/tchc/img/icon-linkedin-white.svg, themes/tchc/img/icon-pinterest-white.svg, themes/tchc/img/icon-youtube-white.svg, themes/tchc/img/app-icons/manifest.json, themes/tchc/img/app-icons/mstile-144x144.png, themes/tchc/img/app-icons/android-chrome-144x144.png, themes/tchc/img/app-icons/favicon-16x16.png, themes/tchc/img/app-icons/mstile-310x150.png, themes/tchc/img/app-icons/android-chrome-48x48.png, themes/tchc/img/app-icons/mstile-70x70.png, themes/tchc/img/app-icons/android-chrome-96x96.png, themes/tchc/img/app-icons/android-chrome-72x72.png, themes/tchc/img/app-icons/mstile-150x150.png, themes/tchc/img/app-icons/browserconfig.xml, themes/tchc/img/app-icons/mstile-310x310.png, themes/tchc/img/app-icons/favicon-96x96.png, themes/tchc/img/app-icons/favicon.ico, themes/tchc/img/app-icons/favicon-194x194.png, themes/tchc/img/app-icons/apple-touch-icon.png, themes/tchc/img/app-icons/favicon-32x32.png, themes/tchc/img/app-icons/android-chrome-36x36.png, themes/tchc/img/app-icons/android-chrome-192x192.png, themes/tchc/img/app-icons, themes/tchc/img/icon-facebook-48x92.png, themes/tchc/img/icon-magnifying-glass-blue.svg, themes/tchc/img/icon-google-plus-white.svg, themes/tchc/img/icon-youtube-92x92-align-bottom.png, themes/tchc/img/icon-facebook-92x92.png, themes/tchc/img/intro-image-test-800x350.jpg, themes/tchc/img/icon-tchc-heart-white.svg, themes/tchc/img/icon-twitter-92x92-align-bottom.png, themes/tchc/img/logo-tchc-horizontal.svg, themes/tchc/img/bg-c5-login.jpg, themes/tchc/img/logo-tchc-stacked.svg, themes/tchc/img/slide-test-1600x550.jpg, themes/tchc/img/bg-connect-callout-blog.png, themes/tchc/img/slide-test-02-1600x550.jpg, themes/tchc/img/icon-pinterest-92x92.png, themes/tchc/img/icon-twitter-white.svg, themes/tchc/img/icon-googleplus-92x92-align-bottom.png, themes/tchc/img/intro-image-test-900x350.jpg, themes/tchc/img/logo-tchc-horizontal-white.svg, themes/tchc/img, themes/tchc/scss/site/_home.scss, themes/tchc/scss/site/_footer.scss, themes/tchc/scss/site/_global.scss, themes/tchc/scss/site/_header.scss, themes/tchc/scss/site, themes/tchc/scss, themes/tchc/css/app.css, themes/tchc/css/app.css.map, themes/tchc/css, themes/tchc/view.php, themes/tchc/default.php, themes/tchc, blocks/search/templates/tchc_search_page/view.php, blocks/search/templates/tchc_search_page, blocks/search/templates, blocks/search, blocks/tchc_tabbed_content_panel_start/icon.png, blocks/tchc_tabbed_content_panel_start/form.php, blocks/tchc_tabbed_content_panel_start/edit.php, blocks/tchc_tabbed_content_panel_start/composer.php, blocks/tchc_tabbed_content_panel_start/config.json, blocks/tchc_tabbed_content_panel_start/controller.php, blocks/tchc_tabbed_content_panel_start/view.php, blocks/tchc_tabbed_content_panel_start/add.php, blocks/tchc_tabbed_content_panel_start/db.xml, blocks/tchc_tabbed_content_panel_start, blocks/tchc_image_video_slider/js_form/html.sortable.min.js, blocks/tchc_image_video_slider/js_form/handlebars-v4.0.2.js, blocks/tchc_image_video_slider/js_form/handlebars-helpers.js, blocks/tchc_image_video_slider/js_form, blocks/tchc_image_video_slider/icon.png, blocks/tchc_image_video_slider/css_form/repeatable-ft.form.css, blocks/tchc_image_video_slider/css_form, blocks/tchc_image_video_slider/form.php, blocks/tchc_image_video_slider/edit.php, blocks/tchc_image_video_slider/composer.php, blocks/tchc_image_video_slider/auto.js, blocks/tchc_image_video_slider/config.json, blocks/tchc_image_video_slider/controller.php, blocks/tchc_image_video_slider/view.php, blocks/tchc_image_video_slider/add.php, blocks/tchc_image_video_slider/db.xml, blocks/tchc_image_video_slider, blocks/tchc_tabbed_content_start/icon.png, blocks/tchc_tabbed_content_start/controller.php, blocks/tchc_tabbed_content_start/view.php, blocks/tchc_tabbed_content_start, blocks/tchc_page_intro_image/template-intro-image-800x350.psd, blocks/tchc_page_intro_image/icon.png, blocks/tchc_page_intro_image/form.php, blocks/tchc_page_intro_image/edit.php, blocks/tchc_page_intro_image/composer.php, blocks/tchc_page_intro_image/config.json, blocks/tchc_page_intro_image/controller.php, blocks/tchc_page_intro_image/view.php, blocks/tchc_page_intro_image/add.php, blocks/tchc_page_intro_image/db.xml, blocks/tchc_page_intro_image, blocks/tchc_home_slider/js_form/html.sortable.min.js, blocks/tchc_home_slider/js_form/handlebars-v4.0.2.js, blocks/tchc_home_slider/js_form/handlebars-helpers.js, blocks/tchc_home_slider/js_form, blocks/tchc_home_slider/icon.png, blocks/tchc_home_slider/css_form/repeatable-ft.form.css, blocks/tchc_home_slider/css_form, blocks/tchc_home_slider/form.php, blocks/tchc_home_slider/edit.php, blocks/tchc_home_slider/composer.php, blocks/tchc_home_slider/auto.js, blocks/tchc_home_slider/config.json, blocks/tchc_home_slider/controller.php, blocks/tchc_home_slider/view.php, blocks/tchc_home_slider/add.php, blocks/tchc_home_slider/db.xml, blocks/tchc_home_slider, blocks/tchc_tabbed_content_panel_end/icon.png, blocks/tchc_tabbed_content_panel_end/controller.php, blocks/tchc_tabbed_content_panel_end/view.php, blocks/tchc_tabbed_content_panel_end, blocks/tchc_page_selector/js_form/html.sortable.min.js, blocks/tchc_page_selector/js_form/handlebars-v4.0.2.js, blocks/tchc_page_selector/js_form/handlebars-helpers.js, blocks/tchc_page_selector/js_form, blocks/tchc_page_selector/icon.png, blocks/tchc_page_selector/css_form/repeatable-ft.form.css, blocks/tchc_page_selector/css_form, blocks/tchc_page_selector/form.php, blocks/tchc_page_selector/edit.php, blocks/tchc_page_selector/composer.php, blocks/tchc_page_selector/auto.js, blocks/tchc_page_selector/config.json, blocks/tchc_page_selector/controller.php, blocks/tchc_page_selector/view.php, blocks/tchc_page_selector/add.php, blocks/tchc_page_selector/db.xml, blocks/tchc_page_selector, blocks/tchc_home_feature/icon.png, blocks/tchc_home_feature/form.php, blocks/tchc_home_feature/edit.php, blocks/tchc_home_feature/composer.php, blocks/tchc_home_feature/config.json, blocks/tchc_home_feature/controller.php, blocks/tchc_home_feature/view.php, blocks/tchc_home_feature/add.php, blocks/tchc_home_feature/db.xml, blocks/tchc_home_feature, blocks/form/view.php, blocks/form, blocks/tchc_tabbed_content_end/icon.png, blocks/tchc_tabbed_content_end/controller.php, blocks/tchc_tabbed_content_end/view.php, blocks/tchc_tabbed_content_end, blocks/html/templates/no-wrapper.php, blocks/html/templates, blocks/html, languages/tr_TR/LC_MESSAGES/messages.mo, languages/tr_TR/LC_MESSAGES, languages/tr_TR, languages/sv_SE/LC_MESSAGES/messages.mo, languages/sv_SE/LC_MESSAGES, languages/sv_SE, languages/fr_FR/LC_MESSAGES/messages.mo, languages/fr_FR/LC_MESSAGES, languages/fr_FR, languages/it_IT/LC_MESSAGES/messages.mo, languages/it_IT/LC_MESSAGES, languages/it_IT, languages/de_DE/LC_MESSAGES/messages.mo, languages/de_DE/LC_MESSAGES, languages/de_DE, languages/ru_RU/LC_MESSAGES/messages.mo, languages/ru_RU/LC_MESSAGES, languages/ru_RU, languages/nl_NL/LC_MESSAGES/messages.mo, languages/nl_NL/LC_MESSAGES, languages/nl_NL, languages/pt_BR/LC_MESSAGES/messages.mo, languages/pt_BR/LC_MESSAGES, languages/pt_BR, languages/pl_PL/LC_MESSAGES/messages.mo, languages/pl_PL/LC_MESSAGES, languages/pl_PL, languages/ja_JP/LC_MESSAGES/messages.mo, languages/ja_JP/LC_MESSAGES, languages/ja_JP, languages/el_GR/LC_MESSAGES/messages.mo, languages/el_GR/LC_MESSAGES, languages/el_GR, languages/fi_FI/LC_MESSAGES/messages.mo, languages/fi_FI/LC_MESSAGES, languages/fi_FI, languages/sl_SI/LC_MESSAGES/messages.mo, languages/sl_SI/LC_MESSAGES, languages/sl_SI, languages/da_DK/LC_MESSAGES/messages.mo, languages/da_DK/LC_MESSAGES, languages/da_DK, themes/tchc/index.html, themes/tchc/js/app.js, themes/tchc/js/modernizr.js, themes/tchc/js/custom/custom.js, themes/tchc/js/custom, themes/tchc/js, themes/tchc/thumbnail.png, themes/tchc/README.md, themes/tchc/home.php, themes/tchc/elements/footer.php, themes/tchc/elements/header.php, themes/tchc/elements, themes/tchc/description.txt, themes/tchc/bower.json, themes/tchc/test.php, themes/tchc/Gruntfile.js, themes/tchc/page_theme.php, themes/tchc/package.json, themes/tchc/fonts/poppins-regular.ttf, themes/tchc/fonts/poppins-regular.woff2, themes/tchc/fonts/poppins-regular.eot, themes/tchc/fonts/poppins-regular.woff, themes/tchc/fonts/poppins-regular.svg, themes/tchc/fonts, themes/tchc/img/icon-facebook-white.svg, themes/tchc/img/icon-linkedin-92x92-align-bottom.png, themes/tchc/img/logo-tri-living-well.svg, themes/tchc/img/icon-linkedin-white.svg, themes/tchc/img/icon-pinterest-white.svg, themes/tchc/img/icon-youtube-white.svg, themes/tchc/img/app-icons/manifest.json, themes/tchc/img/app-icons/mstile-144x144.png, themes/tchc/img/app-icons/android-chrome-144x144.png, themes/tchc/img/app-icons/favicon-16x16.png, themes/tchc/img/app-icons/mstile-310x150.png, themes/tchc/img/app-icons/android-chrome-48x48.png, themes/tchc/img/app-icons/mstile-70x70.png, themes/tchc/img/app-icons/android-chrome-96x96.png, themes/tchc/img/app-icons/android-chrome-72x72.png, themes/tchc/img/app-icons/mstile-150x150.png, themes/tchc/img/app-icons/browserconfig.xml, themes/tchc/img/app-icons/mstile-310x310.png, themes/tchc/img/app-icons/favicon-96x96.png, themes/tchc/img/app-icons/favicon.ico, themes/tchc/img/app-icons/favicon-194x194.png, themes/tchc/img/app-icons/apple-touch-icon.png, themes/tchc/img/app-icons/favicon-32x32.png, themes/tchc/img/app-icons/android-chrome-36x36.png, themes/tchc/img/app-icons/android-chrome-192x192.png, themes/tchc/img/app-icons, themes/tchc/img/icon-facebook-48x92.png, themes/tchc/img/icon-magnifying-glass-blue.svg, themes/tchc/img/icon-google-plus-white.svg, themes/tchc/img/icon-youtube-92x92-align-bottom.png, themes/tchc/img/icon-facebook-92x92.png, themes/tchc/img/intro-image-test-800x350.jpg, themes/tchc/img/icon-tchc-heart-white.svg, themes/tchc/img/icon-twitter-92x92-align-bottom.png, themes/tchc/img/logo-tchc-horizontal.svg, themes/tchc/img/bg-c5-login.jpg, themes/tchc/img/logo-tchc-stacked.svg, themes/tchc/img/slide-test-1600x550.jpg, themes/tchc/img/bg-connect-callout-blog.png, themes/tchc/img/slide-test-02-1600x550.jpg, themes/tchc/img/icon-pinterest-92x92.png, themes/tchc/img/icon-twitter-white.svg, themes/tchc/img/icon-googleplus-92x92-align-bottom.png, themes/tchc/img/intro-image-test-900x350.jpg, themes/tchc/img/logo-tchc-horizontal-white.svg, themes/tchc/img, themes/tchc/scss/site/_home.scss, themes/tchc/scss/site/_footer.scss, themes/tchc/scss/site/_global.scss, themes/tchc/scss/site/_header.scss, themes/tchc/scss/site, themes/tchc/scss, themes/tchc/css/app.css, themes/tchc/css/app.css.map, themes/tchc/css, themes/tchc/view.php, themes/tchc/default.php, themes/tchc

# concrete5 Cache Settings
Block Cache - Off
Overrides Cache - Off
Full Page Caching - Off
Full Page Cache Lifetime - Every 6 hours (default setting).

# Server Software
Apache

# Server API
cgi-fcgi

# PHP Version
5.4.13

# PHP Extensions
bz2, calendar, cgi-fcgi, Core, ctype, curl, date, dom, ereg, exif, fileinfo, filter, ftp, gd, gettext, gmp, hash, iconv, imap, json, ldap, libxml, mbstring, mcrypt, mhash, mysql, mysqli, odbc, openssl, pcntl, pcre, PDO, pdo_mysql, PDO_ODBC, pdo_sqlite, Phar, readline, Reflection, session, shmop, SimpleXML, snmp, soap, sockets, SPL, sqlite3, standard, tokenizer, wddx, xml, xmlreader, xmlrpc, xmlwriter, xsl, zip, zlib.

# PHP Settings
max_execution_time - 60
log_errors_max_len - 1024
max_file_uploads - 20
max_input_nesting_level - 64
max_input_time - 60
max_input_vars - 1000
memory_limit - 128M
post_max_size - 8M
sql.safe_mode - Off
upload_max_filesize - 128M
ldap.max_links - Unlimited
mysql.max_links - Unlimited
mysql.max_persistent - Unlimited
mysqli.max_links - Unlimited
mysqli.max_persistent - Unlimited
odbc.max_links - Unlimited
odbc.max_persistent - Unlimited
pcre.backtrack_limit - 1000000
pcre.recursion_limit - 100000
session.cache_limiter - <i>no value</i>
session.gc_maxlifetime - 1440
soap.wsdl_cache_limit - 5

Browser User-Agent String

Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.2490.80 Safari/537.36

Hide Post Content

This will replace the post content with the message: "Content has been removed by an Administrator"

Hide Content

Request Refund

You have not specified a license for this support ticket. You must have a valid license assigned to a support ticket to request a refund.