Whoops \ Exception \ ErrorException (E_WARNING)
file_put_contents(): Only -1 of 228 bytes written, possibly out of free disk space Whoops\Exception\ErrorException thrown with message "file_put_contents(): Only -1 of 228 bytes written, possibly out of free disk space" Stacktrace: #12 Whoops\Exception\ErrorException in /home/shawcontcom/public_html/concrete/src/Cache/Driver/FileSystemStashDriver.php:46 #11 file_put_contents in /home/shawcontcom/public_html/concrete/src/Cache/Driver/FileSystemStashDriver.php:46 #10 Concrete\Core\Cache\Driver\FileSystemStashDriver:storeData in /home/shawcontcom/public_html/concrete/vendor/tedivm/stash/src/Stash/Item.php:326 #9 Stash\Item:lock in /home/shawcontcom/public_html/concrete/src/Filesystem/FileLocator.php:97 #8 Concrete\Core\Filesystem\FileLocator:getRecord in /home/shawcontcom/public_html/concrete/src/Routing/RouteGroupBuilder.php:221 #7 Concrete\Core\Routing\RouteGroupBuilder:routes in /home/shawcontcom/public_html/concrete/src/Routing/SystemRouteList.php:12 #6 Concrete\Core\Routing\SystemRouteList:loadRoutes in /home/shawcontcom/public_html/concrete/src/Routing/Router.php:206 #5 Concrete\Core\Routing\Router:loadRouteList in /home/shawcontcom/public_html/concrete/src/Foundation/Runtime/Boot/DefaultBooter.php:358 #4 Concrete\Core\Foundation\Runtime\Boot\DefaultBooter:initializeRoutes in /home/shawcontcom/public_html/concrete/src/Foundation/Runtime/Boot/DefaultBooter.php:120 #3 Concrete\Core\Foundation\Runtime\Boot\DefaultBooter:boot in /home/shawcontcom/public_html/concrete/src/Foundation/Runtime/DefaultRuntime.php:80 #2 Concrete\Core\Foundation\Runtime\DefaultRuntime:boot in /home/shawcontcom/public_html/concrete/bootstrap/start.php:35 #1 require in /home/shawcontcom/public_html/concrete/dispatcher.php:36 #0 require in /home/shawcontcom/public_html/index.php:3
Stack frames (13)
12
Whoops\Exception\ErrorException
/src/Cache/Driver/FileSystemStashDriver.php46
11
file_put_contents
/src/Cache/Driver/FileSystemStashDriver.php46
10
Concrete\Core\Cache\Driver\FileSystemStashDriver storeData
/vendor/tedivm/stash/src/Stash/Item.php326
9
Stash\Item lock
/src/Filesystem/FileLocator.php97
8
Concrete\Core\Filesystem\FileLocator getRecord
/src/Routing/RouteGroupBuilder.php221
7
Concrete\Core\Routing\RouteGroupBuilder routes
/src/Routing/SystemRouteList.php12
6
Concrete\Core\Routing\SystemRouteList loadRoutes
/src/Routing/Router.php206
5
Concrete\Core\Routing\Router loadRouteList
/src/Foundation/Runtime/Boot/DefaultBooter.php358
4
Concrete\Core\Foundation\Runtime\Boot\DefaultBooter initializeRoutes
/src/Foundation/Runtime/Boot/DefaultBooter.php120
3
Concrete\Core\Foundation\Runtime\Boot\DefaultBooter boot
/src/Foundation/Runtime/DefaultRuntime.php80
2
Concrete\Core\Foundation\Runtime\DefaultRuntime boot
/bootstrap/start.php35
1
require
/dispatcher.php36
0
require
/home/shawcontcom/public_html/index.php3
/home/shawcontcom/public_html/concrete/src/Cache/Driver/FileSystemStashDriver.php
            throw new WindowsPathMaxLengthException();
        }
 
        if (!file_exists($path)) {
            $dirname = dirname($path);
            if (!is_dir($dirname)) {
                if (!@mkdir($dirname, $this->dirPermissions, true)) {
                    if (!is_dir($dirname)) {
                        return false;
                    }
                }
            }
 
            if (!(touch($path) && chmod($path, $this->filePermissions))) {
                return false;
            }
        }
 
        $storeString = $this->getEncoder()->serialize($this->makeKeyString($key), $data, $expiration);
        $result = file_put_contents($path, $storeString, LOCK_EX);
 
        // If opcache is switched on, it will try to cache the PHP data file
        // The new php opcode caching system only revalidates against the source files once every few seconds,
        // so some changes will not be caught.
        // This fix immediately invalidates that opcode cache after a file is written,
        // so that future includes are not using the stale opcode cached file.
        if (function_exists('opcache_invalidate')) {
            $invalidate = true;
 
            if ($restrictedDirectory = ini_get('opcache.restrict_api')) {
                if (strpos(__FILE__, $restrictedDirectory) !== 0) {
                    $invalidate = false;
                }
            }
 
            if ($invalidate) {
                @opcache_invalidate($path, true);
            }
        }
 
/home/shawcontcom/public_html/concrete/src/Cache/Driver/FileSystemStashDriver.php
            throw new WindowsPathMaxLengthException();
        }
 
        if (!file_exists($path)) {
            $dirname = dirname($path);
            if (!is_dir($dirname)) {
                if (!@mkdir($dirname, $this->dirPermissions, true)) {
                    if (!is_dir($dirname)) {
                        return false;
                    }
                }
            }
 
            if (!(touch($path) && chmod($path, $this->filePermissions))) {
                return false;
            }
        }
 
        $storeString = $this->getEncoder()->serialize($this->makeKeyString($key), $data, $expiration);
        $result = file_put_contents($path, $storeString, LOCK_EX);
 
        // If opcache is switched on, it will try to cache the PHP data file
        // The new php opcode caching system only revalidates against the source files once every few seconds,
        // so some changes will not be caught.
        // This fix immediately invalidates that opcode cache after a file is written,
        // so that future includes are not using the stale opcode cached file.
        if (function_exists('opcache_invalidate')) {
            $invalidate = true;
 
            if ($restrictedDirectory = ini_get('opcache.restrict_api')) {
                if (strpos(__FILE__, $restrictedDirectory) !== 0) {
                    $invalidate = false;
                }
            }
 
            if ($invalidate) {
                @opcache_invalidate($path, true);
            }
        }
 
/home/shawcontcom/public_html/concrete/vendor/tedivm/stash/src/Stash/Item.php
     */
    public function lock($ttl = null)
    {
        if ($this->isDisabled()) {
            return true;
        }
 
        if (!isset($this->key)) {
            return false;
        }
 
        $this->stampedeRunning = true;
 
        $expiration = isset($ttl) && is_numeric($ttl) ? (int) $ttl : $this->defaults['stampede_ttl'];
 
 
        $spkey = $this->key;
        $spkey[0] = 'sp';
 
        return $this->driver->storeData($spkey, true, time() + $expiration);
    }
 
    /**
     * {@inheritdoc}
     */
    public function set($value)
    {
        if (!isset($this->key)) {
            return false;
        }
 
        if ($this->isDisabled()) {
            return $this;
        }
 
        $this->data = $value;
        return $this;
    }
 
    /**
/home/shawcontcom/public_html/concrete/src/Filesystem/FileLocator.php
            $location->setFilesystem($this->filesystem);
            if ($record = $location->contains($file)) {
                $records[] = $record;
            }
        }
        return $records;
    }
 
    /**
     * @param $file
     * @return Record
     */
    public function getRecord($file)
    {
        $this->addDefaultLocations();
        $key = $this->getCacheKey($file);
        $item = $this->cache->getItem($key);
        $record = null;
        if ($item->isMiss()) {
            $item->lock();
            foreach($this->locations as $location) {
                $location->setFilesystem($this->filesystem);
                if ($record = $location->contains($file)) {
                    break;
                }
            }
            if (isset($record)) {
                $this->cache->save($item->set($record));
            }
        } else {
            $record = $item->get();
        }
        return $record;
    }
 
    /**
     * @return array
     */
    public function getLocations()
    {
/home/shawcontcom/public_html/concrete/src/Routing/RouteGroupBuilder.php
     * @return $this
     */
    public function routes($routes, $pkgHandle = null)
    {
        // First, create a new, empty router for use with the routes passed in the callable.
        $router = new Router(new RouteCollection(), $this->router->getActionFactory());
        if (is_callable($routes)) {
            // Run the callable with our empty router.
            $routes($router);
            // Grab the routes from the router, and pass them to our route group builder.
        } else if (is_string($routes)) {
            $app = Facade::getFacadeApplication();
            /**
             * @var $locator FileLocator
             */
            $locator = $app->make(FileLocator::class);
            if ($pkgHandle) {
                $locator->addLocation(new FileLocator\PackageLocation($pkgHandle));
            }
            $file = $locator->getRecord(DIRNAME_ROUTES . DIRECTORY_SEPARATOR . $routes);
            if ($file->exists()) {
                require $file->getFile();
            }
        } else {
            throw new \RuntimeException(t('Invalid input passed to RouteGroupBuilder::routes'));
        }
        $this->sendFromGroupToRouter($router->getRoutes(), $this->router);
        return $this;
    }
 
 
}
 
/home/shawcontcom/public_html/concrete/src/Routing/SystemRouteList.php
<?php
 
namespace Concrete\Core\Routing;
 
class SystemRouteList implements RouteListInterface
{
    public function loadRoutes(Router $router)
    {
        $router->buildGroup()->setPrefix('/ccm/system/panels')->setNamespace('Concrete\Controller\Panel')
            ->routes('panels.php');
 
        $router->buildGroup()->routes('panels/details.php');
 
        $router->buildGroup()->setNamespace('Concrete\Controller\Frontend')->setPrefix('/ccm/assets/localization')
            ->routes('assets_localization.php');
 
        $router->buildGroup()->setNamespace('Concrete\Controller\Backend')->setPrefix('/ccm/system/block')
            ->routes('actions/blocks.php');
 
        $router->buildGroup()->setNamespace('Concrete\Controller\Backend')->setPrefix('/ccm/system/page')
            ->routes('actions/pages.php');
 
        $router->buildGroup()->setNamespace('Concrete\Controller\Backend')->setPrefix('/ccm/system/user')
            ->routes('actions/users.php');
 
        $router->buildGroup()->setNamespace('Concrete\Controller\Backend')->setPrefix('/ccm/system/user')
            ->routes('actions/users.php');
 
        $router->buildGroup()->setNamespace('Concrete\Controller\Backend')->setPrefix('/ccm/system/file')
            ->routes('actions/files.php');
 
        $router->buildGroup()->setNamespace('Concrete\Controller\Dialog\Conversation')->setPrefix('/ccm/system/dialogs/conversation')
            ->routes('dialogs/conversations.php');
 
        $router->buildGroup()->setNamespace('Concrete\Controller\Dialog\Type')
            ->setPrefix('/ccm/system/dialogs/type')
            ->routes('dialogs/page_types.php');
 
        $router->buildGroup()->setNamespace('Concrete\Controller\Dialog\User')
            ->setPrefix('/ccm/system/dialogs/user')
/home/shawcontcom/public_html/concrete/src/Routing/Router.php
    }
 
    /**
     * {@inheritdoc}
     *
     * @see \Concrete\Core\Routing\RouterInterface::matchRoute()
     */
    public function matchRoute(Request $request)
    {
        $attributes = [];
        $route = $this->getRouteByPath($request->getPathInfo(), (new RequestContext())->fromRequest($request), $attributes);
        $request->attributes->add($attributes);
        $request->attributes->set('_route', $route);
 
        return new MatchedRoute($route, $attributes);
    }
 
    public function loadRouteList(RouteListInterface $list)
    {
        $list->loadRoutes($this);
    }
 
    /**
     * @deprecated. Use the verb methods instead.
     *
     * @param $path
     * @param $callback
     * @param null $handle
     * @param array $requirements
     * @param array $options
     * @param string $host
     * @param array $schemes
     * @param array $methods
     * @param null $condition
     *
     * @return Route
     */
    public function register(
        $path,
        $callback,
/home/shawcontcom/public_html/concrete/src/Foundation/Runtime/Boot/DefaultBooter.php
        $asset_list = AssetList::getInstance();
 
        $asset_list->registerMultiple($config->get('app.assets', []));
        $asset_list->registerGroupMultiple($config->get('app.asset_groups', []));
    }
 
    /**
     * @param \Illuminate\Config\Repository $config
     */
    private function initializeRoutes(Repository $config)
    {
        /**
         * @var $router Router
         */
        $router = Route::getFacadeRoot();
        // Legacy route registration.
        $router->registerMultiple($config->get('app.routes'));
 
        // New style
        $router->loadRouteList(new SystemRouteList());
 
        // theme paths
        $this->app->make(ThemeRouteCollection::class)
            ->setThemesByRoutes($config->get('app.theme_paths', array()));
    }
 
    /**
     * @param \Illuminate\Config\Repository $config
     */
    private function initializeFileTypes(Repository $config)
    {
        $type_list = TypeList::getInstance();
        $type_list->defineMultiple($config->get('app.file_types', []));
        $type_list->defineImporterAttributeMultiple($config->get('app.importer_attributes', []));
    }
 
    /**
     * @param \Illuminate\Config\Repository $config
     *
     * @return Request
/home/shawcontcom/public_html/concrete/src/Foundation/Runtime/Boot/DefaultBooter.php
         * Setup the core service groups.
         * ----------------------------------------------------------------------------
         */
        $this->initializeServiceProviders($app, $config);
 
        /*
         * ----------------------------------------------------------------------------
         * Setup file cache directories. Has to come after we define services
         * because we use the file service.
         * ----------------------------------------------------------------------------
         */
        $app->setupFilesystem();
 
        /*
         * ----------------------------------------------------------------------------
         * Registries for theme paths, assets, routes and file types.
         * ----------------------------------------------------------------------------
         */
        $this->initializeAssets($config);
        $this->initializeRoutes($config);
        $this->initializeFileTypes($config);
 
        // If we're not in the CLI SAPI, lets do additional booting for HTTP
        if (!$this->app->isRunThroughCommandLineInterface()) {
            return $this->bootHttpSapi($config, $app);
        }
    }
 
    /**
     * @param $config
     * @param $app
     *
     * @return null|Response
     */
    private function bootHttpSapi($config, $app)
    {
        /*
         * ----------------------------------------------------------------------------
         * Initialize the request
         * ----------------------------------------------------------------------------
/home/shawcontcom/public_html/concrete/src/Foundation/Runtime/DefaultRuntime.php
    {
        $this->run_class = $run_class;
    }
 
    /**
     * @param string $boot_class
     */
    public function setBootClass($boot_class)
    {
        $this->boot_class = $boot_class;
    }
 
    /**
     * Initialize the environment and prepare for running.
     */
    public function boot()
    {
        $booter = $this->getBooter();
 
        if ($response = $booter->boot()) {
            $this->sendResponse($response);
        } else {
            $this->status = self::STATUS_ACTIVE;
        }
    }
 
    /**
     * Begin the runtime.
     */
    public function run()
    {
        switch ($this->status) {
            case self::STATUS_ENDED:
                // We've already ended, lets just return
                return;
 
            case self::STATUS_INACTIVE:
                throw new \RuntimeException('Runtime has not yet booted.');
        }
 
/home/shawcontcom/public_html/concrete/bootstrap/start.php
 * Handle text encoding.
 * ----------------------------------------------------------------------------
 */
\Patchwork\Utf8\Bootup::initAll();
 
/*
 * ----------------------------------------------------------------------------
 * Instantiate concrete5.
 * ----------------------------------------------------------------------------
 */
/** @var \Concrete\Core\Application\Application $app */
$app = require DIR_APPLICATION . '/bootstrap/start.php';
$app->instance('app', $app);
 
// Bind fully application qualified class names
$app->instance('Concrete\Core\Application\Application', $app);
$app->instance('Illuminate\Container\Container', $app);
 
// Boot the runtime
$app->getRuntime()->boot();
 
return $app;
 
/home/shawcontcom/public_html/concrete/dispatcher.php
 * Make sure you cannot call dispatcher.php directly.
 * ----------------------------------------------------------------------------
 */
if (basename($_SERVER['PHP_SELF']) === DISPATCHER_FILENAME_CORE) {
    die('Access Denied.');
}
 
/*
 * ----------------------------------------------------------------------------
 * Include all autoloaders.
 * ----------------------------------------------------------------------------
 */
require __DIR__ . '/bootstrap/autoload.php';
 
/*
 * ----------------------------------------------------------------------------
 * Begin concrete5 startup.
 * ----------------------------------------------------------------------------
 */
$app = require __DIR__ . '/bootstrap/start.php';
/** @var \Concrete\Core\Application\Application $app */
 
/*
 * ----------------------------------------------------------------------------
 * Run the runtime.
 * ----------------------------------------------------------------------------
 */
$runtime = $app->getRuntime();
if ($response = $runtime->run()) {
 
    /*
     * ------------------------------------------------------------------------
     * Shut it down.
     * ------------------------------------------------------------------------
     */
    $app->shutdown();
} else {
    return $app;
}
 
/home/shawcontcom/public_html/index.php
<?php
 
require 'concrete/dispatcher.php';
 

Environment & details:

Key Value
Version 8.5.5
Installed Version 8.5.5
Key Value
concrete.version 8.5.5
concrete.version_installed 8.5.5
concrete.version_db 20201116182100
concrete.installed true
concrete.locale en_US
concrete.charset UTF-8
concrete.charset_bom 
concrete.maintenance_mode false
concrete.debug.display_errors true
concrete.debug.detail debug
concrete.debug.error_reporting null
concrete.proxy.host null
concrete.proxy.port null
concrete.proxy.user null
concrete.proxy.password null
concrete.upload.extensions *.flv;*.jpg;*.gif;*.jpeg;*.ico;*.docx;*.xla;*.png;*.psd;*.swf;*.doc;*.txt;*.xls;*.xlsx;*.csv;*.pdf;*.tiff;*.rtf;*.m4a;*.mov;*.wmv;*.mpeg;*.mpg;*.wav;*.3gp;*.avi;*.m4v;*.mp4;*.mp3;*.qt;*.ppt;*.pptx;*.kml;*.xml;*.svg;*.webm;*.ogg;*.ogv
concrete.upload.extensions_blacklist *.php;*.php2;*.php3;*.php4;*.php5;*.php7;*.php8;*.phtml;*.phar;*.htaccess;*.pl;*.phpsh;*.pht;*.shtml;*.cgi
concrete.upload.chunking.enabled true
concrete.upload.chunking.chunkSize null
concrete.export.csv.include_bom false
concrete.export.csv.datetime_format ATOM
concrete.interface.panel.page_relations false
concrete.mail.method smtp
concrete.mail.methods.smtp.server smtp.office365.com
concrete.mail.methods.smtp.port 587
concrete.mail.methods.smtp.username shawsmtpauth@shawcontracting.com.au
concrete.mail.methods.smtp.password ddwwhwqxtpbbfhgm
concrete.mail.methods.smtp.encryption TLS
concrete.mail.methods.smtp.messages_per_connection null
concrete.mail.methods.smtp.helo_domain localhost
concrete.cache.enabled true
concrete.cache.lifetime 21600
concrete.cache.overrides true
concrete.cache.blocks true
concrete.cache.assets false
concrete.cache.theme_css true
concrete.cache.pages false
concrete.cache.doctrine_dev_mode false
concrete.cache.full_page_lifetime default
concrete.cache.full_page_lifetime_value null
concrete.cache.full_contents_assets_hash false
concrete.cache.directory /home/shawcontcom/public_html/application/files/cache
concrete.cache.directory_relative null
concrete.cache.page.directory /home/shawcontcom/public_html/application/files/cache/pages
concrete.cache.page.adapter file
concrete.cache.levels.overrides.drivers.core_ephemeral.class \Stash\Driver\Ephemeral
concrete.cache.levels.overrides.drivers.core_filesystem.class Concrete\Core\Cache\Driver\FileSystemStashDriver
concrete.cache.levels.overrides.drivers.core_filesystem.options.path /home/shawcontcom/public_html/application/files/cache/overrides
concrete.cache.levels.overrides.drivers.core_filesystem.options.dirPermissions 493
concrete.cache.levels.overrides.drivers.core_filesystem.options.filePermissions 420
concrete.cache.levels.overrides.drivers.redis.class Concrete\Core\Cache\Driver\RedisStashDriver
concrete.cache.levels.overrides.drivers.redis.options.prefix c5_overrides
concrete.cache.levels.overrides.drivers.redis.options.database 0
concrete.cache.levels.overrides.preferred_driver core_filesystem
concrete.cache.levels.expensive.drivers.core_ephemeral.class \Stash\Driver\Ephemeral
concrete.cache.levels.expensive.drivers.core_filesystem.class Concrete\Core\Cache\Driver\FileSystemStashDriver
concrete.cache.levels.expensive.drivers.core_filesystem.options.path /home/shawcontcom/public_html/application/files/cache/expensive
concrete.cache.levels.expensive.drivers.core_filesystem.options.dirPermissions 493
concrete.cache.levels.expensive.drivers.core_filesystem.options.filePermissions 420
concrete.cache.levels.expensive.drivers.redis.class Concrete\Core\Cache\Driver\RedisStashDriver
concrete.cache.levels.expensive.drivers.redis.options.prefix c5_expensive
concrete.cache.levels.expensive.drivers.redis.options.database 0
concrete.cache.levels.expensive.preferred_driver core_filesystem
concrete.cache.levels.object.drivers.core_ephemeral.class \Stash\Driver\Ephemeral
concrete.cache.levels.object.drivers.redis.class Concrete\Core\Cache\Driver\RedisStashDriver
concrete.cache.levels.object.drivers.redis.options.prefix c5_object
concrete.cache.levels.object.drivers.redis.options.database 0
concrete.cache.levels.object.preferred_driver core_ephemeral
concrete.cache.clear.thumbnails false
concrete.design.enable_custom true
concrete.design.enable_layouts true
concrete.log.emails true
concrete.log.errors true
concrete.log.spam false
concrete.log.api false
concrete.log.enable_dashboard_report true
concrete.log.configuration.mode simple
concrete.log.configuration.simple.core_logging_level NOTICE
concrete.log.configuration.simple.handler database
concrete.log.configuration.simple.file.file
concrete.jobs.enable_scheduling true
concrete.filesystem.temp_directory null
concrete.filesystem.permissions.file 420
concrete.filesystem.permissions.directory 493
concrete.email.enabled true
concrete.email.default.address no-reply@shawcontracting.com.au
concrete.email.default.name
concrete.email.form_block.address no-reply@shawcontracting.com.au
concrete.email.forgot_password.address no-reply@shawcontracting.com.au
concrete.email.forgot_password.name
concrete.email.validate_registration.address no-reply@shawcontracting.com.au
concrete.email.validate_registration.name
concrete.email.workflow_notification.address
concrete.email.workflow_notification.name
concrete.email.register_notification.address
concrete.form.store_form_submissions auto
concrete.marketplace.enabled true
concrete.marketplace.request_timeout 30
concrete.marketplace.token null
concrete.marketplace.site_token null
concrete.marketplace.intelligent_search true
concrete.marketplace.log_requests false
concrete.external.intelligent_search_help true
concrete.external.news true
concrete.misc.user_timezones false
concrete.misc.package_backup_directory /home/shawcontcom/public_html/application/files/trash
concrete.misc.enable_progressive_page_reindex true
concrete.misc.mobile_theme_id 0
concrete.misc.sitemap_approve_immediately true
concrete.misc.enable_translate_locale_en_us false
concrete.misc.page_search_index_lifetime 259200
concrete.misc.enable_trash_can true
concrete.misc.default_jpeg_image_compression 80
concrete.misc.default_png_image_compression 9
concrete.misc.default_thumbnail_format auto
concrete.misc.inplace_image_operations_limit 4194304
concrete.misc.basic_thumbnailer_generation_strategy now
concrete.misc.help_overlay true
concrete.misc.require_version_comments false
concrete.misc.enable_move_blocktypes_across_sets false
concrete.misc.image_editor_cors_policy.enable_cross_origin false
concrete.misc.image_editor_cors_policy.anonymous_request true
concrete.misc.generator_tag_display_in_header true
concrete.misc.login_redirect DESKTOP
concrete.misc.access_entity_updated 1491969843
concrete.misc.do_page_reindex_check false
concrete.misc.latest_version 8.5.6
concrete.theme.compress_preprocessor_output true
concrete.theme.generate_less_sourcemap false
concrete.updates.enable_auto_update_packages false
concrete.updates.enable_permissions_protection true
concrete.updates.check_threshold 172800
concrete.updates.services.get_available_updates http://www.concrete5.org/tools/update_core
concrete.updates.services.inspect_update http://www.concrete5.org/tools/inspect_update
concrete.updates.skip_core false
concrete.paths.trash /!trash
concrete.paths.drafts /!drafts
concrete.icons.page_template.width 120
concrete.icons.page_template.height 90
concrete.icons.theme_thumbnail.width 120
concrete.icons.theme_thumbnail.height 90
concrete.icons.file_manager_listing.handle file_manager_listing
concrete.icons.file_manager_listing.width 60
concrete.icons.file_manager_listing.height 60
concrete.icons.file_manager_detail.handle file_manager_detail
concrete.icons.file_manager_detail.width 400
concrete.icons.file_manager_detail.height 400
concrete.icons.user_avatar.width 80
concrete.icons.user_avatar.height 80
concrete.icons.user_avatar.default /concrete/images/avatar_none.png
concrete.file_manager.images.use_exif_data_to_rotate_images false
concrete.file_manager.images.manipulation_library gd
concrete.file_manager.images.create_high_dpi_thumbnails true
concrete.file_manager.images.preview_image_size small
concrete.file_manager.images.preview_image_popover true
concrete.file_manager.images.svg_sanitization.action sanitize
concrete.file_manager.images.svg_sanitization.allowed_tags
concrete.file_manager.images.svg_sanitization.allowed_attributes
concrete.file_manager.images.image_editor_save_area_background_color
concrete.file_manager.items_per_page_options.0 10
concrete.file_manager.items_per_page_options.1 25
concrete.file_manager.items_per_page_options.2 50
concrete.file_manager.items_per_page_options.3 100
concrete.file_manager.items_per_page_options.4 250
concrete.file_manager.results 10
concrete.search_users.results 10
concrete.sitemap_xml.file sitemap.xml
concrete.sitemap_xml.frequency weekly
concrete.sitemap_xml.priority 0.5
concrete.accessibility.toolbar_titles false
concrete.accessibility.toolbar_large_font false
concrete.accessibility.display_help_system true
concrete.accessibility.toolbar_tooltips true
concrete.i18n.choose_language_login false
concrete.i18n.auto_install_package_languages true
concrete.i18n.community_translation.entry_point http://translate.concrete5.org/api
concrete.i18n.community_translation.api_token
concrete.i18n.community_translation.progress_limit 60
concrete.i18n.community_translation.cache_lifetime 3600
concrete.i18n.community_translation.package_url https://translate.concrete5.org/translate/package
concrete.urls.concrete5 http://www.concrete5.org
concrete.urls.concrete5_secure https://www.concrete5.org
concrete.urls.newsflow http://newsflow.concrete5.org
concrete.urls.background_feed //backgroundimages.concrete5.org/wallpaper
concrete.urls.privacy_policy //www.concrete5.org/legal/privacy-policy
concrete.urls.background_feed_secure https://backgroundimages.concrete5.org/wallpaper
concrete.urls.background_info http://backgroundimages.concrete5.org/get_image_data.php
concrete.urls.videos https://www.youtube.com/user/concrete5cms/videos
concrete.urls.help.developer http://documentation.concrete5.org/developers
concrete.urls.help.user http://documentation.concrete5.org/editors
concrete.urls.help.forum http://www.concrete5.org/community/forums
concrete.urls.help.slack https://www.concrete5.org/slack
concrete.urls.paths.menu_help_service /tools/get_remote_help_list/
concrete.urls.paths.site_page /private/sites
concrete.urls.paths.newsflow_slot_content /tools/slot_content/
concrete.urls.paths.marketplace.connect /marketplace/connect
concrete.urls.paths.marketplace.connect_success /marketplace/connect/-/connected
concrete.urls.paths.marketplace.connect_validate /marketplace/connect/-/validate
concrete.urls.paths.marketplace.connect_new_token /marketplace/connect/-/generate_token
concrete.urls.paths.marketplace.checkout /cart/-/add
concrete.urls.paths.marketplace.purchases /marketplace/connect/-/get_available_licenses
concrete.urls.paths.marketplace.item_information /marketplace/connect/-/get_item_information
concrete.urls.paths.marketplace.item_free_license /marketplace/connect/-/enable_free_license
concrete.urls.paths.marketplace.remote_item_list /marketplace/
concrete.urls.background_url https://shawcontracting.com.au/page-background.png
concrete.white_label.logo false
concrete.white_label.name false
concrete.white_label.background_image null
concrete.white_label.background_url true
concrete.session.name CONCRETE5
concrete.session.handler file
concrete.session.redis.database 1
concrete.session.save_path null
concrete.session.max_lifetime 7200
concrete.session.gc_probability 1
concrete.session.gc_divisor 100
concrete.session.cookie.cookie_path false
concrete.session.cookie.cookie_lifetime 0
concrete.session.cookie.cookie_domain false
concrete.session.cookie.cookie_secure false
concrete.session.cookie.cookie_httponly true
concrete.session.cookie.cookie_raw false
concrete.session.cookie.cookie_samesite null
concrete.session.remember_me.lifetime 1209600
concrete.user.registration.enabled false
concrete.user.registration.type disabled
concrete.user.registration.captcha true
concrete.user.registration.email_registration false
concrete.user.registration.display_username_field true
concrete.user.registration.display_confirm_password_field true
concrete.user.registration.validate_email false
concrete.user.registration.approval false
concrete.user.registration.notification false
concrete.user.group.badge.default_point_value 50
concrete.user.username.maximum 64
concrete.user.username.minimum 3
concrete.user.username.allowed_characters.boundary A-Za-z0-9
concrete.user.username.allowed_characters.middle A-Za-z0-9_\.
concrete.user.username.allowed_characters.requirement_string A username may only contain letters, numbers, dots (not at the beginning/end), and underscores (not at the beginning/end).
concrete.user.username.allowed_characters.error_string A username may only contain letters, numbers, dots (not at the beginning/end), and underscores (not at the beginning/end).
concrete.user.password.maximum 128
concrete.user.password.minimum 5
concrete.user.password.required_special_characters 0
concrete.user.password.required_lower_case 0
concrete.user.password.required_upper_case 0
concrete.user.password.reuse 0
concrete.user.password.hash_portable false
concrete.user.password.hash_cost_log2 12
concrete.user.password.legacy_salt
concrete.user.email.test_mx_record false
concrete.user.email.strict true
concrete.user.private_messages.throttle_max 20
concrete.user.private_messages.throttle_max_timespan 15
concrete.user.deactivation.enable_login_threshold_deactivation false
concrete.user.deactivation.login.threshold 120
concrete.user.deactivation.authentication_failure.enabled false
concrete.user.deactivation.authentication_failure.amount 5
concrete.user.deactivation.authentication_failure.duration 300
concrete.user.deactivation.message This user is inactive. Please contact us regarding this account.
concrete.spam.whitelist_group 0
concrete.spam.notify_email
concrete.calendar.colors.text #ffffff
concrete.calendar.colors.background #3A87AD
concrete.security.session.invalidate_on_user_agent_mismatch true
concrete.security.session.invalidate_on_ip_mismatch true
concrete.security.session.invalidate_inactive_users.enabled false
concrete.security.session.invalidate_inactive_users.time 300
concrete.security.misc.x_frame_options SAMEORIGIN
concrete.permissions.forward_to_login true
concrete.permissions.model simple
concrete.seo.exclude_words a, an, as, at, before, but, by, for, from, is, in, into, like, of, off, on, onto, per, since, than, the, this, that, to, up, via, with
concrete.seo.url_rewriting true
concrete.seo.url_rewriting_all false
concrete.seo.redirect_to_canonical_url 0
concrete.seo.canonical_url null
concrete.seo.canonical_url_alternative null
concrete.seo.trailing_slash false
concrete.seo.title_format %2$s :: %1$s
concrete.seo.title_segment_separator ::
concrete.seo.page_path_separator -
concrete.seo.group_name_separator /
concrete.seo.segment_max_length 128
concrete.seo.paging_string ccm_paging_p
concrete.statistics.track_downloads true
concrete.limits.sitemap_pages 100
concrete.limits.delete_pages 100
concrete.limits.copy_pages 10
concrete.limits.page_search_index_batch 200
concrete.limits.job_queue_batch 10
concrete.limits.style_customizer.size_min -50
concrete.limits.style_customizer.size_max 200
concrete.page.search.always_reindex false
concrete.composer.idle_timeout 1
concrete.api.enabled false
concrete.api.grant_types.client_credentials true
concrete.api.grant_types.authorization_code true
concrete.api.grant_types.password_credentials false
concrete.api.grant_types.refresh_token true
concrete.mutex.semaphore.priority 100
concrete.mutex.semaphore.class Concrete\Core\System\Mutex\SemaphoreMutex
concrete.mutex.file_lock.priority 50
concrete.mutex.file_lock.class Concrete\Core\System\Mutex\FileLockMutex
concrete.style_customizer.updater.ignored_values.preset-fonts-file Concrete\Core\StyleCustomizer\Style\Value\BasicValue
concrete.version_db_installed 20201116182100
empty
empty
empty
empty
empty
Key Value
CONTEXT_DOCUMENT_ROOT /home/shawcontcom/public_html
CONTEXT_PREFIX
DOCUMENT_ROOT /home/shawcontcom/public_html
GATEWAY_INTERFACE CGI/1.1
HTTPS on
HTTP_ACCEPT */*
HTTP_HOST shawcontracting.com.au
HTTP_USER_AGENT claudebot
HTTP_X_HTTPS 1
PATH /bin:/usr/bin
PHP_INI_SCAN_DIR /opt/cpanel/ea-php74/root/etc:/opt/cpanel/ea-php74/root/etc/php.d:.
QUERY_STRING
REDIRECT_HTTPS on
REDIRECT_SCRIPT_URI https://shawcontracting.com.au/about/news/sponsoring-meaghan-volker
REDIRECT_SCRIPT_URL /about/news/sponsoring-meaghan-volker
REDIRECT_SSL_TLS_SNI shawcontracting.com.au
REDIRECT_STATUS 200
REDIRECT_UNIQUE_ID ZgWFE0kzO82a2qiJIzPrCgAAAB4
REDIRECT_URL /about/news/sponsoring-meaghan-volker
REMOTE_ADDR 44.222.249.19
REMOTE_PORT 46362
REQUEST_METHOD GET
REQUEST_SCHEME https
REQUEST_URI /about/news/sponsoring-meaghan-volker
SCRIPT_FILENAME /home/shawcontcom/public_html/index.php
SCRIPT_NAME /index.php
SCRIPT_URI https://shawcontracting.com.au/about/news/sponsoring-meaghan-volker
SCRIPT_URL /about/news/sponsoring-meaghan-volker
SERVER_ADDR 108.61.168.156
SERVER_ADMIN webmaster@shawcontracting.com.au
SERVER_NAME shawcontracting.com.au
SERVER_PORT 443
SERVER_PROTOCOL HTTP/1.1
SERVER_SIGNATURE
SERVER_SOFTWARE Apache
SSL_TLS_SNI shawcontracting.com.au
TZ Australia/Hobart
UNIQUE_ID ZgWFE0kzO82a2qiJIzPrCgAAAB4
PHP_SELF /index.php
REQUEST_TIME_FLOAT 1711637779.843
REQUEST_TIME 1711637779
argv Array ( )
argc 0
empty
0. Concrete\Core\Error\Handler\JsonErrorHandler
1. Concrete\Core\Error\Handler\ErrorHandler