Concrete CMS has encountered an issue.
Error
Class "Concrete\Core\Database\EntityManager\Driver\ApplicationDriver" not found Error thrown with message "Class "Concrete\Core\Database\EntityManager\Driver\ApplicationDriver" not found" Stacktrace: #20 Error in /hp/cr/ac/cs/www/imt/concrete/src/Database/EntityManagerConfigFactory.php:112 #19 Concrete\Core\Database\EntityManagerConfigFactory:getMetadataDriverImpl in /hp/cr/ac/cs/www/imt/concrete/src/Database/EntityManagerConfigFactory.php:75 #18 Concrete\Core\Database\EntityManagerConfigFactory:getConfiguration in /hp/cr/ac/cs/www/imt/concrete/src/Database/EntityManagerFactory.php:56 #17 Concrete\Core\Database\EntityManagerFactory:create in /hp/cr/ac/cs/www/imt/concrete/src/Database/DatabaseServiceProvider.php:79 #16 Concrete\Core\Database\DatabaseServiceProvider:Concrete\Core\Database\{closure} in /hp/cr/ac/cs/www/imt/concrete/vendor/illuminate/container/Container.php:873 #15 Illuminate\Container\Container:build in /hp/cr/ac/cs/www/imt/concrete/src/Application/Application.php:445 #14 Concrete\Core\Application\Application:build in /hp/cr/ac/cs/www/imt/concrete/vendor/illuminate/container/Container.php:758 #13 Illuminate\Container\Container:resolve in /hp/cr/ac/cs/www/imt/concrete/vendor/illuminate/container/Container.php:694 #12 Illuminate\Container\Container:make in /hp/cr/ac/cs/www/imt/concrete/src/Database/DatabaseManagerORM.php:34 #11 Concrete\Core\Database\DatabaseManagerORM:entityManager in /hp/cr/ac/cs/www/imt/concrete/src/Support/Facade/Facade.php:115 #10 Concrete\Core\Support\Facade\Facade:__callStatic in /hp/cr/ac/cs/www/imt/concrete/src/Database/Connection/Connection.php:64 #9 Concrete\Core\Database\Connection\Connection:createEntityManager in /hp/cr/ac/cs/www/imt/concrete/src/Database/Connection/Connection.php:51 #8 Concrete\Core\Database\Connection\Connection:getEntityManager in /hp/cr/ac/cs/www/imt/concrete/src/Package/PackageList.php:73 #7 Concrete\Core\Package\PackageList:get in /hp/cr/ac/cs/www/imt/concrete/src/Application/Application.php:231 #6 Concrete\Core\Application\Application:setupPackageAutoloaders in /hp/cr/ac/cs/www/imt/concrete/src/Foundation/Runtime/Boot/DefaultBooter.php:510 #5 Concrete\Core\Foundation\Runtime\Boot\DefaultBooter:initializePackages in /hp/cr/ac/cs/www/imt/concrete/src/Foundation/Runtime/Boot/DefaultBooter.php:179 #4 Concrete\Core\Foundation\Runtime\Boot\DefaultBooter:bootHttpSapi in /hp/cr/ac/cs/www/imt/concrete/src/Foundation/Runtime/Boot/DefaultBooter.php:134 #3 Concrete\Core\Foundation\Runtime\Boot\DefaultBooter:boot in /hp/cr/ac/cs/www/imt/concrete/src/Foundation/Runtime/DefaultRuntime.php:80 #2 Concrete\Core\Foundation\Runtime\DefaultRuntime:boot in /hp/cr/ac/cs/www/imt/concrete/bootstrap/start.php:44 #1 require in /hp/cr/ac/cs/www/imt/concrete/dispatcher.php:36 #0 require in /hp/cr/ac/cs/www/imt/index.php:2
Stack frames (21)
20
Error
/src/Database/EntityManagerConfigFactory.php112
19
Concrete\Core\Database\EntityManagerConfigFactory getMetadataDriverImpl
/src/Database/EntityManagerConfigFactory.php75
18
Concrete\Core\Database\EntityManagerConfigFactory getConfiguration
/src/Database/EntityManagerFactory.php56
17
Concrete\Core\Database\EntityManagerFactory create
/src/Database/DatabaseServiceProvider.php79
16
Concrete\Core\Database\DatabaseServiceProvider Concrete\Core\Database\{closure}
/vendor/illuminate/container/Container.php873
15
Illuminate\Container\Container build
/src/Application/Application.php445
14
Concrete\Core\Application\Application build
/vendor/illuminate/container/Container.php758
13
Illuminate\Container\Container resolve
/vendor/illuminate/container/Container.php694
12
Illuminate\Container\Container make
/src/Database/DatabaseManagerORM.php34
11
Concrete\Core\Database\DatabaseManagerORM entityManager
/src/Support/Facade/Facade.php115
10
Concrete\Core\Support\Facade\Facade __callStatic
/src/Database/Connection/Connection.php64
9
Concrete\Core\Database\Connection\Connection createEntityManager
/src/Database/Connection/Connection.php51
8
Concrete\Core\Database\Connection\Connection getEntityManager
/src/Package/PackageList.php73
7
Concrete\Core\Package\PackageList get
/src/Application/Application.php231
6
Concrete\Core\Application\Application setupPackageAutoloaders
/src/Foundation/Runtime/Boot/DefaultBooter.php510
5
Concrete\Core\Foundation\Runtime\Boot\DefaultBooter initializePackages
/src/Foundation/Runtime/Boot/DefaultBooter.php179
4
Concrete\Core\Foundation\Runtime\Boot\DefaultBooter bootHttpSapi
/src/Foundation/Runtime/Boot/DefaultBooter.php134
3
Concrete\Core\Foundation\Runtime\Boot\DefaultBooter boot
/src/Foundation/Runtime/DefaultRuntime.php80
2
Concrete\Core\Foundation\Runtime\DefaultRuntime boot
/bootstrap/start.php44
1
require
/dispatcher.php36
0
require
/hp/cr/ac/cs/www/imt/index.php2
/hp/cr/ac/cs/www/imt/concrete/src/Database/EntityManagerConfigFactory.php
                DIR_BASE . '/application/src');
        } else {
            \Doctrine\Common\Annotations\AnnotationRegistry::registerAutoloadNamespace('Application\Entity',
                DIR_BASE . '/application/src/Entity');
        }
        // Remove all unkown annotations from the AnnotationReader used by the SimpleAnnotationReader
        // to prevent fatal errors
        $this->registerGlobalIgnoredAnnotations();
 
        // initiate the driver chain which will hold all driver instances
        $driverChain = $this->app->make('Doctrine\Common\Persistence\Mapping\Driver\MappingDriverChain');
 
        $coreDriver = new CoreDriver($this->app);
        $driver = $coreDriver->getDriver();
        $driver->addExcludePaths($this->getConfigRepository()->get('database.proxy_exclusions', array()));
        $driverChain->addDriver($driver, $coreDriver->getNamespace());
 
        // Register application metadata driver
        $config = $this->getConfigRepository();
        $applicationDriver = new ApplicationDriver($config, $this->app);
        $driver = $applicationDriver->getDriver();
        if (is_object($driver)) {
            // $driver might be null, if there's no application/src/Entity
            $driverChain->addDriver($driver, $applicationDriver->getNamespace());
        }
 
        return $driverChain;
    }
 
    /**
     * Register globally ignored annotations
     */
    protected function registerGlobalIgnoredAnnotations()
    {
        // There is a bug in the Doctrine annotation DocParser class. 
        // If there's a class named the same as an annotation, an exeption will be raised. 
        // In the case of Concrete5 this is the \@package annotaton. Even though 
        // the addGlobalIgnoredName is set the exception is still thrown.
        // http://stackoverflow.com/questions/21609571/swagger-php-and-doctrine-annotation-issue
        // Solution 1: Add this fix to \Doctrine\Common\Annotations\DocParser and customize other Classes
Arguments
  1. "Class "Concrete\Core\Database\EntityManager\Driver\ApplicationDriver" not found"
    
/hp/cr/ac/cs/www/imt/concrete/src/Database/EntityManagerConfigFactory.php
    }
 
    /**
     * Get configRepository
     *
     * @return \Illuminate\Config\Repository
     */
    public function getConfigRepository()
    {
        return $this->configRepository;
    }
 
    /**
     * Add driverChain and get orm config
     *
     * @return \Doctrine\ORM\Configuration
     */
    public function getConfiguration()
    {
        $driverChain = $this->getMetadataDriverImpl();
        // Inject the driverChain into the doctrine config
        $this->configuration->setMetadataDriverImpl($driverChain);
        return $this->configuration;
    }
 
    /**
     *
     * @return \Doctrine\Persistence\Mapping\Driver\MappingDriverChain
     */
    public function getMetadataDriverImpl()
    {
        // Register the doctrine Annotations
        \Doctrine\Common\Annotations\AnnotationRegistry::registerUniqueLoader('class_exists');
 
        $legacyNamespace = $this->getConfigRepository()->get('app.enable_legacy_src_namespace');
        if ($legacyNamespace) {
            \Doctrine\Common\Annotations\AnnotationRegistry::registerAutoloadNamespace('Application\Src',
                DIR_BASE . '/application/src');
        } else {
            \Doctrine\Common\Annotations\AnnotationRegistry::registerAutoloadNamespace('Application\Entity',
/hp/cr/ac/cs/www/imt/concrete/src/Database/EntityManagerFactory.php
    protected $configFactory;
 
    /**
     * Constructor
     */
    public function __construct(\Concrete\Core\Database\EntityManagerConfigFactoryInterface $configFactory)
    {
        $this->configFactory = $configFactory;
    }
 
    /**
     * Create EntityManager
     * 
     * @param Connection $connection
     * @return \Doctrine\ORM\EntityManager
     */
    public function create(Connection $connection)
    {
        // Get config with containing all metadata drivers
        $configuration = $this->configFactory->getConfiguration();
 
        // Get orm event manager
        $eventManager = $connection->getEventManager();
 
        // Pass the database connection, the orm config and the event manager 
        // to the concrete5 event system so packages can hook in to the process
        // and alter the values
        $event = new \Symfony\Component\EventDispatcher\GenericEvent();
        $event->setArgument('connection', $connection);
        $event->setArgument('configuration', $configuration);
        $event->setArgument('eventManager', $eventManager);
        Events::dispatch('on_entity_manager_configure', $event);
 
        // Reasign the values from the dispatched event
        $conn   = $event->getArgument('connection');
        $config = $event->getArgument('configuration');
        $evm    = $event->getArgument('eventManager');
 
        // Inject the orm eventManager into the entityManager so orm events
        // can be triggered.
/hp/cr/ac/cs/www/imt/concrete/src/Database/DatabaseServiceProvider.php
            $configRepository = $app->make('config');
 
            return new EntityManagerConfigFactory($app, $config, $configRepository);
        });
        $this->app->bind('Concrete\Core\Database\EntityManagerConfigFactoryInterface',
            'Concrete\Core\Database\EntityManagerConfigFactory');
 
        $this->app->bind('Concrete\Core\Database\EntityManagerFactory',
            function ($app) {
            $configFactory = $app->make('Concrete\Core\Database\EntityManagerConfigFactory');
            return new EntityManagerFactory($configFactory);
        });
        $this->app->bind('Concrete\Core\Database\EntityManagerFactoryInterface',
            'Concrete\Core\Database\EntityManagerFactory');
 
        // Bind default entity manager resolver
        $this->app->singleton('Doctrine\ORM\EntityManager',
            function ($app) {
            $factory = $app->make('Concrete\Core\Database\EntityManagerFactory');
            $entityManager = $factory->create($app->make('Concrete\Core\Database\Connection\Connection'));
            return $entityManager;
        });
        $this->app->bind('Doctrine\ORM\EntityManagerInterface',
            'Doctrine\ORM\EntityManager');
 
        // ------------------------------------------
        // Bind Doctrine EntityManager setup classes
        $this->app->bind('Doctrine\Common\Cache\ArrayCache',
            function() {
            return new DoctrineProvider((new ArrayAdapter()));
        });
        $this->app->bind('Doctrine\Common\Annotations\AnnotationReader',
            function() {
            return new \Doctrine\Common\Annotations\AnnotationReader();
        });
        $this->app->bind('Doctrine\Common\Annotations\SimpleAnnotationReader',
            function() {
            return new \Doctrine\Common\Annotations\SimpleAnnotationReader();
        });
        $this->app->bind('Doctrine\Persistence\Mapping\Driver\MappingDriverChain',
Arguments
  1. Concrete\Core\Database\Connection\Connection {#131}
    
/hp/cr/ac/cs/www/imt/concrete/vendor/illuminate/container/Container.php
    {
        return $concrete === $abstract || $concrete instanceof Closure;
    }
 
    /**
     * Instantiate a concrete instance of the given type.
     *
     * @param  \Closure|string  $concrete
     * @return mixed
     *
     * @throws \Illuminate\Contracts\Container\BindingResolutionException
     * @throws \Illuminate\Contracts\Container\CircularDependencyException
     */
    public function build($concrete)
    {
        // If the concrete type is actually a Closure, we will just execute it and
        // hand back the results of the functions, which allows functions to be
        // used as resolvers for more fine-tuned resolution of these objects.
        if ($concrete instanceof Closure) {
            return $concrete($this, $this->getLastParameterOverride());
        }
 
        try {
            $reflector = new ReflectionClass($concrete);
        } catch (ReflectionException $e) {
            throw new BindingResolutionException("Target class [$concrete] does not exist.", 0, $e);
        }
 
        // If the type is not instantiable, the developer is attempting to resolve
        // an abstract type such as an Interface or Abstract Class and there is
        // no binding registered for the abstractions so we need to bail out.
        if (! $reflector->isInstantiable()) {
            return $this->notInstantiable($concrete);
        }
 
        $this->buildStack[] = $concrete;
 
        $constructor = $reflector->getConstructor();
 
        // If there are no constructors, that means there are no dependencies then
Arguments
  1. Concrete\Core\Application\Application {#12}
    
  2. []
    
/hp/cr/ac/cs/www/imt/concrete/src/Application/Application.php
        $args = $this->isRunThroughCommandLineInterface() && isset($_SERVER['argv']) ? $_SERVER['argv'] : null;
 
        $detector = new EnvironmentDetector();
 
        return $this->environment = $detector->detect($environments, $args);
    }
 
    /**
     * Instantiate a concrete instance of the given type.
     *
     * @param  string $concrete
     * @param  array $parameters
     *
     * @throws \Illuminate\Contracts\Container\BindingResolutionException
     *
     * @return mixed
     */
    public function build($concrete)
    {
        $object = parent::build($concrete);
        if (is_object($object)) {
            if ($object instanceof ApplicationAwareInterface) {
                $object->setApplication($this);
            }
 
            if ($object instanceof LoggerAwareInterface) {
                $logger = $this->make('log/factory')->createLogger($object->getLoggerChannel());
                $object->setLogger($logger);
            } elseif ($object instanceof PsrLoggerAwareInterface) {
                $logger = $this->make('log/factory')->createLogger(Channels::CHANNEL_APPLICATION);
                $object->setLogger($logger);
            }
        }
 
        return $object;
    }
 
    /**
     * @return RuntimeInterface
     */
Arguments
  1. Closure($app) {#74 …4}
    
/hp/cr/ac/cs/www/imt/concrete/vendor/illuminate/container/Container.php
        $needsContextualBuild = ! empty($parameters) || ! is_null($concrete);
 
        // If an instance of the type is currently being managed as a singleton we'll
        // just return an existing instance instead of instantiating new instances
        // so the developer can keep using the same objects instance every time.
        if (isset($this->instances[$abstract]) && ! $needsContextualBuild) {
            return $this->instances[$abstract];
        }
 
        $this->with[] = $parameters;
 
        if (is_null($concrete)) {
            $concrete = $this->getConcrete($abstract);
        }
 
        // We're ready to instantiate an instance of the concrete type registered for
        // the binding. This will instantiate the types, as well as resolve any of
        // its "nested" dependencies recursively until all have gotten resolved.
        if ($this->isBuildable($concrete, $abstract)) {
            $object = $this->build($concrete);
        } else {
            $object = $this->make($concrete);
        }
 
        // If we defined any extenders for this type, we'll need to spin through them
        // and apply them to the object being built. This allows for the extension
        // of services, such as changing configuration or decorating the object.
        foreach ($this->getExtenders($abstract) as $extender) {
            $object = $extender($object, $this);
        }
 
        // If the requested type is registered as a singleton we'll want to cache off
        // the instances in "memory" so we can return it later without creating an
        // entirely new instance of an object on each subsequent request for it.
        if ($this->isShared($abstract) && ! $needsContextualBuild) {
            $this->instances[$abstract] = $object;
        }
 
        if ($raiseEvents) {
            $this->fireResolvingCallbacks($abstract, $object);
Arguments
  1. Closure($app) {#74 …4}
    
/hp/cr/ac/cs/www/imt/concrete/vendor/illuminate/container/Container.php
     *
     * @throws \Illuminate\Contracts\Container\BindingResolutionException
     */
    public function makeWith($abstract, array $parameters = [])
    {
        return $this->make($abstract, $parameters);
    }
 
    /**
     * Resolve the given type from the container.
     *
     * @param  string|callable  $abstract
     * @param  array  $parameters
     * @return mixed
     *
     * @throws \Illuminate\Contracts\Container\BindingResolutionException
     */
    public function make($abstract, array $parameters = [])
    {
        return $this->resolve($abstract, $parameters);
    }
 
    /**
     * {@inheritdoc}
     *
     * @return mixed
     */
    public function get($id)
    {
        try {
            return $this->resolve($id);
        } catch (Exception $e) {
            if ($this->has($id) || $e instanceof CircularDependencyException) {
                throw $e;
            }
 
            throw new EntryNotFoundException($id, $e->getCode(), $e);
        }
    }
 
Arguments
  1. "Doctrine\ORM\EntityManager"
    
  2. []
    
/hp/cr/ac/cs/www/imt/concrete/src/Database/DatabaseManagerORM.php
    protected $app;
 
    protected $entityManager;
 
    /**
     * Create a new database ORM manager instance.
     *
     * @param \Concrete\Core\Application\Application $app
     */
    public function __construct(Application $app)
    {
        $this->app = $app;
    }
 
    /**
     * @return \Doctrine\ORM\EntityManager
     */
    public function entityManager()
    {
        return $this->app->make(EntityManager::class);
    }
}
 
Arguments
  1. "Doctrine\ORM\EntityManager"
    
/hp/cr/ac/cs/www/imt/concrete/src/Support/Facade/Facade.php
    }
 
    /**
     * Handle dynamic, static calls to the object.
     *
     * @param  string  $method
     * @param  array   $args
     *
     * @return mixed
     */
    public static function __callStatic($method, $args)
    {
        $instance = static::resolveFacadeInstance(static::getFacadeAccessor());
 
        if (!method_exists($instance, $method) && !method_exists($instance, '__call')) {
            throw new \Exception(t('Invalid Method on class %s: %s.', get_class($instance), $method));
        }
        switch (count($args)) {
            case 0:
                return $instance->$method();
 
            case 1:
                return $instance->$method($args[0]);
 
            case 2:
                return $instance->$method($args[0], $args[1]);
 
            case 3:
                return $instance->$method($args[0], $args[1], $args[2]);
 
            case 4:
                return $instance->$method($args[0], $args[1], $args[2], $args[3]);
 
            default:
                return call_user_func_array(array($instance, $method), $args);
        }
    }
}
 
/hp/cr/ac/cs/www/imt/concrete/src/Database/Connection/Connection.php
     *
     * @return EntityManager
     */
    public function getEntityManager()
    {
        if (!$this->entityManager) {
            $this->entityManager = $this->createEntityManager();
        }
 
        return $this->entityManager;
    }
 
    /**
     * @throws \Doctrine\ORM\ORMException
     *
     * @return EntityManager
     */
    public function createEntityManager()
    {
        return ORM::entityManager();
    }
 
    /**
     * Returns true if a table exists – is NOT case sensitive.
     *
     * @param mixed $tableName
     *
     * @return bool
     */
    public function tableExists($tableName)
    {
        $sm = $this->getSchemaManager();
        $schemaTables = $sm->listTableNames();
 
        return in_array(strtolower($tableName), array_map('strtolower', $schemaTables));
    }
 
    /**
     * @deprecated
     *
Arguments
  1. "entityManager"
    
  2. []
    
/hp/cr/ac/cs/www/imt/concrete/src/Database/Connection/Connection.php
    protected $supportedCollations;
 
    /**
     * Overridden params.
     *
     * @var array
     */
    private $overriddenParams = [];
 
    /**
     * @deprecated Please use the ORM facade instead of this method:
     * - ORM::entityManager() in the application/site code and core
     * - $pkg->getEntityManager() in packages
     *
     * @return EntityManager
     */
    public function getEntityManager()
    {
        if (!$this->entityManager) {
            $this->entityManager = $this->createEntityManager();
        }
 
        return $this->entityManager;
    }
 
    /**
     * @throws \Doctrine\ORM\ORMException
     *
     * @return EntityManager
     */
    public function createEntityManager()
    {
        return ORM::entityManager();
    }
 
    /**
     * Returns true if a table exists – is NOT case sensitive.
     *
     * @param mixed $tableName
     *
/hp/cr/ac/cs/www/imt/concrete/src/Package/PackageList.php
    public static function refreshCache()
    {
        CacheLocal::delete('packageHandleList', false);
        CacheLocal::delete('pkgList', 1);
        CacheLocal::delete('pkgList', 0);
    }
 
    /**
     * @deprecated
     * @param int $pkgIsInstalled
     * @return static
     */
    public static function get($pkgIsInstalled = 1)
    {
        $pkgList = CacheLocal::getEntry('pkgList', $pkgIsInstalled);
        if ($pkgList != false) {
            return $pkgList;
        }
 
        $em = \Database::connection()->getEntityManager();
        $r = $em->getRepository('\Concrete\Core\Entity\Package');
        $packages = $r->findBy(array('pkgIsInstalled' => true), array('pkgID' => 'asc'));
        $list = new static();
        foreach($packages as $pkg) {
            $list->add($pkg);
        }
 
        CacheLocal::set('pkgList', $pkgIsInstalled, $list);
 
        return $list;
    }
}
 
/hp/cr/ac/cs/www/imt/concrete/src/Application/Application.php
        } else {
            $installedVersion = $config->get('concrete.version_installed');
            $coreVersion = $config->get('concrete.version');
            if (version_compare($installedVersion, $coreVersion, '<')) {
                $update = true;
            }
        }
        if ($update) {
            $this->make(MutexInterface::class)->execute(Update::MUTEX_KEY, function () {
                Update::updateToCurrentVersion();
            });
        }
    }
 
    /**
     * Register package autoloaders. Has to come BEFORE session calls.
     */
    public function setupPackageAutoloaders()
    {
        $pla = \Concrete\Core\Package\PackageList::get();
        $pl = $pla->getPackages();
        $cl = ClassLoader::getInstance();
        /** @var \Package[] $pl */
        foreach ($pl as $p) {
            \Config::package($p);
            if ($p->isPackageInstalled()) {
                $pkg = $this->make('Concrete\Core\Package\PackageService')->getClass($p->getPackageHandle());
                if (is_object($pkg) && (!$pkg instanceof \Concrete\Core\Package\BrokenPackage)) {
                    $cl->registerPackage($pkg);
                    $this->packages[] = $pkg;
                }
            }
        }
    }
 
    /**
     * Run startup and localization events on any installed packages.
     */
    public function setupPackages()
    {
/hp/cr/ac/cs/www/imt/concrete/src/Foundation/Runtime/Boot/DefaultBooter.php
    /**
     * @param \Concrete\Core\Application\Application $app
     * @param \Concrete\Core\Http\Request $request
     *
     * @return null|Response
     */
    private function checkCache(Application $app, Request $request)
    {
        $response = $app->checkPageCache($request);
        if ($response) {
            return $response;
        }
    }
 
    /**
     * @param \Concrete\Core\Application\Application $app
     */
    private function initializePackages(Application $app)
    {
        $app->setupPackageAutoloaders();
    }
}
 
/hp/cr/ac/cs/www/imt/concrete/src/Foundation/Runtime/Boot/DefaultBooter.php
        if ($response = $this->checkInstall($app, $request)) {
            return $response;
        }
 
        if ($this->app->isInstalled()) {
            /*
             * ----------------------------------------------------------------------------
             * Check the page cache in case we need to return a result early.
             * ----------------------------------------------------------------------------
             */
            if ($response = $this->checkCache($app, $request)) {
                return $response;
            }
 
            /*
             * ----------------------------------------------------------------------------
             * Now we load all installed packages, and register their package autoloaders.
             * ----------------------------------------------------------------------------
             */
            $this->initializePackages($app);
        }
    }
 
    /**
     * Enable configuration.
     *
     * @param Application $app
     *
     * @return Repository
     */
    private function initializeConfig(Application $app)
    {
        $config_provider = $app->make('Concrete\Core\Config\ConfigServiceProvider');
        $config_provider->register();
 
        /*
         * @var \Concrete\Core\Config\Repository\Repository
         */
        $config = $app->make('config');
 
Arguments
  1. Concrete\Core\Application\Application {#12}
    
/hp/cr/ac/cs/www/imt/concrete/src/Foundation/Runtime/Boot/DefaultBooter.php
        /*
         * ----------------------------------------------------------------------------
         * Registries for theme paths, assets, routes and file types.
         * ----------------------------------------------------------------------------
         */
        $this->initializeAssets($config);
        $this->initializeRoutes($config);
        $this->initializeFileTypes($config);
 
        /*
         * ----------------------------------------------------------------------------
         * Certain components subscribing to the actions of other components.
         * ----------------------------------------------------------------------------
         */
        $this->initializeEvents($app);
 
 
        // 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
         * ----------------------------------------------------------------------------
         */
        $request = $this->initializeRequest($config);
 
        /*
         * ----------------------------------------------------------------------------
Arguments
  1. Concrete\Core\Config\Repository\Repository {#31}
    
  2. Concrete\Core\Application\Application {#12}
    
/hp/cr/ac/cs/www/imt/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.');
        }
 
/hp/cr/ac/cs/www/imt/concrete/bootstrap/start.php
 * Handle text encoding.
 * ----------------------------------------------------------------------------
 */
\Patchwork\Utf8\Bootup::initAll();
 
/*
 * ----------------------------------------------------------------------------
 * Instantiate Concrete
 * ----------------------------------------------------------------------------
 */
/** @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;
 
/hp/cr/ac/cs/www/imt/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 Concrete 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;
}
 
Arguments
  1. "/hp/cr/ac/cs/www/imt/concrete/bootstrap/start.php"
    
/hp/cr/ac/cs/www/imt/index.php
<?php
require 'concrete/dispatcher.php';
 
Arguments
  1. "/hp/cr/ac/cs/www/imt/concrete/dispatcher.php"
    

Environment & details:

Key Value
Version
"9.2.8"
Installed Version
"9.2.8"
Database Version
"20240122172319"
Key Value
Version
"8.2.26"
Extensions
array:68 [
  "Core" => "8.2.26"
  "date" => "8.2.26"
  "libxml" => "8.2.26"
  "openssl" => "8.2.26"
  "pcre" => "8.2.26"
  "sqlite3" => "8.2.26"
  "zlib" => "8.2.26"
  "bcmath" => "8.2.26"
  "bz2" => "8.2.26"
  "calendar" => "8.2.26"
  "ctype" => "8.2.26"
  "curl" => "8.2.26"
  "dba" => "8.2.26"
  "dom" => "20031129"
  "hash" => "8.2.26"
  "fileinfo" => "8.2.26"
  "filter" => "8.2.26"
  "ftp" => "8.2.26"
  "gd" => "8.2.26"
  "gettext" => "8.2.26"
  "gmp" => "8.2.26"
  "json" => "8.2.26"
  "iconv" => "8.2.26"
  "SPL" => "8.2.26"
  "intl" => "8.2.26"
  "session" => "8.2.26"
  "ldap" => "8.2.26"
  "mbstring" => "8.2.26"
  "standard" => "8.2.26"
  "mysqlnd" => "mysqlnd 8.2.26"
  "pcntl" => "8.2.26"
  "exif" => "8.2.26"
  "mysqli" => "8.2.26"
  "PDO" => "8.2.26"
  "pdo_dblib" => "8.2.26"
  "pdo_mysql" => "8.2.26"
  "PDO_ODBC" => "8.2.26"
  "pdo_pgsql" => "8.2.26"
  "pdo_sqlite" => "8.2.26"
  "pgsql" => "8.2.26"
  "Phar" => "8.2.26"
  "posix" => "8.2.26"
  "pspell" => "8.2.26"
  "random" => "8.2.26"
  "Reflection" => "8.2.26"
  "imap" => "8.2.26"
  "shmop" => "8.2.26"
  "SimpleXML" => "8.2.26"
  "snmp" => "8.2.26"
  "soap" => "8.2.26"
  "sockets" => "8.2.26"
  "sodium" => "8.2.26"
  "sysvmsg" => "8.2.26"
  "sysvsem" => "8.2.26"
  "sysvshm" => "8.2.26"
  "tidy" => "8.2.26"
  "tokenizer" => "8.2.26"
  "xml" => "8.2.26"
  "xmlreader" => "8.2.26"
  "xmlwriter" => "8.2.26"
  "xsl" => "8.2.26"
  "zip" => "1.21.1"
  "cgi-fcgi" => "8.2.26"
  "imagick" => "3.7.0"
  "apcu" => "5.1.24"
  "gnupg" => "1.5.1"
  "ionCube Loader" => "13.3.0"
  "Zend OPcache" => "8.2.26"
]
Key Value
concrete
array:55 [
  "version" => "9.2.8"
  "version_installed" => "9.2.8"
  "version_db" => "20240122172319"
  "installed" => true
  "locale" => "de_DE"
  "charset" => "UTF-8"
  "charset_bom" => ""
  "maintenance_mode" => false
  "debug" => array:4 [
    "display_errors" => true
    "detail" => "debug"
    "error_reporting" => null
    "hide_keys" => array:5 [
      "_GET" => []
      "_POST" => []
      "_FILES" => []
      "_SESSION" => []
      "config" => array:9 [
        0 => "***********************"
        1 => "***********************************"
        2 => "******************************"
        3 => "*********************************"
        4 => "**************************************"
        5 => "********************************************"
        6 => "********************************************"
        7 => "************************"
        8 => "************"
      ]
    ]
  ]
  "proxy" => array:4 [
    "host" => null
    "port" => null
    "user" => null
    "password" => "***"
  ]
  "upload" => array:4 [
    "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;*.webp;*.ogg;*.ogv"
    "extensions_denylist" => "*.php;*.php2;*.php3;*.php4;*.php5;*.php7;*.php8;*.phtml;*.phar;*.htaccess;*.pl;*.phpsh;*.pht;*.shtml;*.cgi"
    "parallel" => 4
    "chunking" => array:2 [
      "enabled" => false
      "chunkSize" => null
    ]
  ]
  "export" => array:1 [
    "csv" => array:2 [
      "include_bom" => false
      "datetime_format" => "ATOM"
    ]
  ]
  "interface" => array:1 [
    "panel" => array:1 [
      "page_relations" => false
    ]
  ]
  "mail" => array:2 [
    "method" => "PHP_MAIL"
    "methods" => array:1 [
      "smtp" => array:7 [
        "server" => ""
        "port" => ""
        "username" => ""
        "password" => ""
        "encryption" => ""
        "messages_per_connection" => null
        "helo_domain" => "localhost"
      ]
    ]
  ]
  "cache" => array:18 [
    "enabled" => true
    "lifetime" => 21600
    "overrides" => false
    "blocks" => false
    "assets" => false
    "theme_css" => true
    "pages" => false
    "doctrine_dev_mode" => false
    "full_page_lifetime" => "default"
    "full_page_lifetime_block" => false
    "full_page_lifetime_value" => null
    "full_contents_assets_hash" => false
    "directory" => "/hp/cr/ac/cs/www/imt/application/files/cache"
    "directory_relative" => null
    "page" => array:2 [
      "directory" => "/hp/cr/ac/cs/www/imt/application/files/cache/pages"
      "adapter" => "file"
    ]
    "levels" => array:3 [
      "overrides" => array:2 [
        "drivers" => array:3 [
          "core_ephemeral" => array:2 [
            "class" => "\Stash\Driver\Ephemeral"
            "options" => []
          ]
          "core_filesystem" => array:2 [
            "class" => "Concrete\Core\Cache\Driver\FileSystemStashDriver"
            "options" => array:3 [
              "path" => "/hp/cr/ac/cs/www/imt/application/files/cache/overrides"
              "dirPermissions" => 493
              "filePermissions" => 420
            ]
          ]
          "redis" => array:2 [
            "class" => "Concrete\Core\Cache\Driver\RedisStashDriver"
            "options" => array:2 [
              "prefix" => "concrete_overrides"
              "database" => 0
            ]
          ]
        ]
        "preferred_driver" => "core_filesystem"
      ]
      "expensive" => array:2 [
        "drivers" => array:3 [
          "core_ephemeral" => array:2 [
            "class" => "\Stash\Driver\Ephemeral"
            "options" => []
          ]
          "core_filesystem" => array:2 [
            "class" => "Concrete\Core\Cache\Driver\FileSystemStashDriver"
            "options" => array:3 [
              "path" => "/hp/cr/ac/cs/www/imt/application/files/cache/expensive"
              "dirPermissions" => 493
              "filePermissions" => 420
            ]
          ]
          "redis" => array:2 [
            "class" => "Concrete\Core\Cache\Driver\RedisStashDriver"
            "options" => array:2 [
              "prefix" => "concrete_expensive"
              "database" => 0
            ]
          ]
        ]
        "preferred_driver" => "core_filesystem"
      ]
      "object" => array:2 [
        "drivers" => array:2 [
          "core_ephemeral" => array:2 [
            "class" => "\Stash\Driver\Ephemeral"
            "options" => []
          ]
          "redis" => array:2 [
            "class" => "Concrete\Core\Cache\Driver\RedisStashDriver"
            "options" => array:2 [
              "prefix" => "concrete_object"
              "database" => 0
            ]
          ]
        ]
        "preferred_driver" => "core_ephemeral"
      ]
    ]
    "clear" => array:1 [
      "thumbnails" => true
    ]
    "last_cleared" => 1712190142
  ]
  "design" => array:2 [
    "enable_custom" => true
    "enable_layouts" => true
  ]
  "processes" => array:3 [
    "logging" => array:2 [
      "method" => "none"
      "file" => array:1 [
        "directory" => ""
      ]
    ]
    "scheduler" => array:1 [
      "enable" => false
    ]
    "delete_threshold" => 7
  ]
  "messenger" => array:7 [
    "default_bus" => "default"
    "buses" => array:1 [
      "default" => array:2 [
        "default_middleware" => true
        "middleware" => []
      ]
    ]
    "routing" => array:1 [
      "Concrete\Core\Foundation\Command\AsyncCommandInterface" => array:1 [
        0 => "async"
      ]
    ]
    "transports" => array:2 [
      0 => "Concrete\Core\Messenger\Transport\DefaultAsync\DefaultAsyncTransport"
      1 => "Concrete\Core\Messenger\Transport\DefaultAsync\DefaultSyncTransport"
    ]
    "failure" => array:2 [
      "default_receiver" => "failed"
      "transports" => array:1 [
        0 => "Concrete\Core\Messenger\Transport\DefaultFailed\DefaultFailedTransport"
      ]
    ]
    "consume" => array:1 [
      "method" => "app"
    ]
    "polling_batch" => array:5 [
      "default" => 10
      "rescan_file" => 5
      "delete_page" => 100
      "delete_page_forever" => 100
      "copy_page" => 10
    ]
  ]
  "events" => array:1 [
    "broadcast" => array:1 [
      "driver" => ""
    ]
  ]
  "log" => array:6 [
    "emails" => true
    "errors" => true
    "spam" => false
    "api" => false
    "enable_dashboard_report" => true
    "configuration" => array:3 [
      "mode" => "simple"
      "simple" => array:3 [
        "core_logging_level" => "NOTICE"
        "handler" => "database"
        "file" => array:1 [
          "file" => ""
        ]
      ]
      "advanced" => array:1 [
        "configuration" => []
      ]
    ]
  ]
  "jobs" => array:1 [
    "enable_scheduling" => true
  ]
  "filesystem" => array:2 [
    "temp_directory" => null
    "permissions" => array:2 [
      "file" => 420
      "directory" => 493
    ]
  ]
  "email" => array:7 [
    "enabled" => true
    "default" => array:2 [
      "address" => ""
      "name" => ""
    ]
    "form_block" => array:1 [
      "address" => "****************"
    ]
    "forgot_password" => array:2 [
      "address" => "****************"
      "name" => null
    ]
    "register_notification" => array:2 [
      "address" => "admin@domain.tld"
      "name" => null
    ]
    "validate_registration" => array:2 [
      "address" => "***"
      "name" => null
    ]
    "workflow_notification" => array:2 [
      "address" => "****************"
      "name" => null
    ]
  ]
  "form" => array:1 [
    "store_form_submissions" => "auto"
  ]
  "marketplace" => array:6 [
    "enabled" => true
    "request_timeout" => 30
    "token" => null
    "site_token" => null
    "intelligent_search" => true
    "log_requests" => false
  ]
  "external" => array:2 [
    "intelligent_search_help" => true
    "news" => true
  ]
  "misc" => array:19 [
    "user_timezones" => false
    "package_backup_directory" => "/hp/cr/ac/cs/www/imt/application/files/trash"
    "display_package_delete_button" => true
    "enable_progressive_page_reindex" => true
    "mobile_theme_id" => 0
    "sitemap_approve_immediately" => true
    "enable_translate_locale_en_us" => false
    "page_search_index_lifetime" => 259200
    "enable_trash_can" => true
    "default_jpeg_image_compression" => 80
    "default_png_image_compression" => 9
    "default_thumbnail_format" => "auto"
    "inplace_image_operations_limit" => 4194304
    "basic_thumbnailer_generation_strategy" => "now"
    "help_overlay" => true
    "require_version_comments" => false
    "enable_move_blocktypes_across_sets" => false
    "generator_tag_display_in_header" => true
    "latest_version" => "9.1.3"
  ]
  "theme" => array:2 [
    "compress_preprocessor_output" => true
    "generate_less_sourcemap" => false
  ]
  "updates" => array:6 [
    "enable_auto_update_packages" => false
    "enable_permissions_protection" => true
    "check_threshold" => 172800
    "services" => array:2 [
      "get_available_updates" => "https://marketplace.concretecms.com/tools/update_core"
      "inspect_update" => "https://marketplace.concretecms.com/tools/inspect_update"
    ]
    "skip_core" => false
    "skip_packages" => []
  ]
  "paths" => array:2 [
    "trash" => "/!trash"
    "drafts" => "/!drafts"
  ]
  "icons" => array:5 [
    "page_template" => array:2 [
      "width" => 120
      "height" => 90
    ]
    "theme_thumbnail" => array:2 [
      "width" => 120
      "height" => 90
    ]
    "file_manager_listing" => array:3 [
      "handle" => "file_manager_listing"
      "width" => 120
      "height" => 120
    ]
    "file_manager_detail" => array:3 [
      "handle" => "file_manager_detail"
      "width" => 500
      "height" => 500
    ]
    "user_avatar" => array:4 [
      "width" => 120
      "height" => 120
      "default" => "/concrete/images/avatar_none.png"
      "resolution" => "2"
    ]
  ]
  "file_manager" => array:7 [
    "images" => array:6 [
      "use_exif_data_to_rotate_images" => false
      "manipulation_library" => "gd"
      "create_high_dpi_thumbnails" => true
      "preview_image_size" => "small"
      "preview_image_popover" => true
      "svg_sanitization" => array:3 [
        "action" => "sanitize"
        "allowed_tags" => ""
        "allowed_attributes" => ""
      ]
    ]
    "items_per_page_options" => array:5 [
      0 => 10
      1 => 25
      2 => 50
      3 => 100
      4 => 250
    ]
    "results" => 50
    "restrict_max_width" => null
    "restrict_max_height" => null
    "dont_resize_mimetypes" => "image/gif"
    "enable_filename_asciify" => true
  ]
  "search_users" => array:1 [
    "results" => 10
  ]
  "sitemap_xml" => array:3 [
    "file" => "sitemap.xml"
    "frequency" => "weekly"
    "priority" => 0.5
  ]
  "accessibility" => array:3 [
    "toolbar_titles" => true
    "toolbar_large_font" => false
    "toolbar_tooltips" => true
  ]
  "i18n" => array:3 [
    "choose_language_login" => null
    "auto_install_package_languages" => true
    "community_translation" => array:5 [
      "entry_point" => "https://translate.concretecms.org/api"
      "api_token" => ""
      "progress_limit" => 60
      "cache_lifetime" => 3600
      "package_url" => "https://translate.concretecms.org/translate/package"
    ]
  ]
  "urls" => array:11 [
    "concrete" => "http://marketplace.concretecms.com"
    "concrete_secure" => "https://marketplace.concretecms.com"
    "concrete_community" => "https://community.concretecms.com"
    "background_feed" => "https://backgroundimages.concretecms.com/wallpaper"
    "privacy_policy" => "//www.concretecms.com/about/legal/privacy-policy"
    "background_feed_secure" => "https://backgroundimages.concrete5.org/wallpaper"
    "background_info" => "http://backgroundimages.concretecms.com/get_image_data.php"
    "videos" => "https://www.youtube.com/user/concrete5cms/videos"
    "activity_slots" => "https://marketing.concretecms.com/ccm/marketing/activity_slots"
    "help" => array:5 [
      "developer" => "https://documentation.concretecms.org/developers"
      "user" => "https://documentation.concretecms.org/user-guide"
      "forum" => "https://forums.concretecms.org"
      "support" => "https://www.concretecms.com/support/hiring-help"
      "remote_search" => "https://documentation.concretecms.org/ccm/documentation/remote_search"
    ]
    "paths" => array:2 [
      "site_page" => "/private/sites"
      "marketplace" => array:10 [
        "projects" => "/profile/projects/"
        "connect" => "/marketplace/connect"
        "connect_success" => "/marketplace/connect/-/connected"
        "connect_validate" => "/marketplace/connect/-/validate"
        "connect_new_token" => "/marketplace/connect/-/generate_token"
        "checkout" => "/cart/-/add"
        "purchases" => "/marketplace/connect/-/get_available_licenses"
        "item_information" => "/marketplace/connect/-/get_item_information"
        "item_free_license" => "/marketplace/connect/-/enable_free_license"
        "remote_item_list" => "/marketplace/"
      ]
    ]
  ]
  "white_label" => array:4 [
    "logo" => false
    "name" => false
    "background_image" => "feed"
    "background_url" => null
  ]
  "session" => array:9 [
    "name" => "CONCRETE"
    "handler" => "file"
    "redis" => array:1 [
      "database" => 1
    ]
    "save_path" => null
    "max_lifetime" => 7200
    "gc_probability" => 1
    "gc_divisor" => 100
    "cookie" => array:7 [
      "cookie_path" => false
      "cookie_lifetime" => 0
      "cookie_domain" => false
      "cookie_secure" => false
      "cookie_httponly" => true
      "cookie_raw" => false
      "cookie_samesite" => null
    ]
    "remember_me" => array:1 [
      "lifetime" => 1209600
    ]
  ]
  "user" => array:8 [
    "registration" => array:10 [
      "enabled" => false
      "type" => "disabled"
      "captcha" => true
      "email_registration" => false
      "display_username_field" => true
      "display_confirm_password_field" => true
      "validate_email" => false
      "validate_email_threshold" => 5184000
      "approval" => false
      "notification" => false
    ]
    "edit_profile" => array:1 [
      "display_username_field" => true
    ]
    "group" => array:1 [
      "badge" => array:1 [
        "default_point_value" => 50
      ]
    ]
    "username" => array:3 [
      "maximum" => 64
      "minimum" => 3
      "allowed_characters" => array:4 [
        "boundary" => "A-Za-z0-9"
        "middle" => "A-Za-z0-9_\."
        "requirement_string" => "A username may only contain letters, numbers, dots (not at the beginning/end), and underscores (not at the beginning/end)."
        "error_string" => "A username may only contain letters, numbers, dots (not at the beginning/end), and underscores (not at the beginning/end)."
      ]
    ]
    "password" => array:14 [
      "maximum" => 128
      "minimum" => 5
      "required_special_characters" => 0
      "required_lower_case" => 0
      "required_upper_case" => 0
      "reuse" => 0
      "max_age" => null
      "custom_regex" => []
      "hash_algorithm" => "2y"
      "hash_options" => []
      "hash_portable" => false
      "hash_cost_log2" => 12
      "legacy_salt" => ""
      "reset_message" => array:2 [
        "password_reset" => ""
        "password_expired" => ""
      ]
    ]
    "email" => array:2 [
      "test_mx_record" => false
      "strict" => true
    ]
    "private_messages" => array:2 [
      "throttle_max" => 20
      "throttle_max_timespan" => 15
    ]
    "deactivation" => array:4 [
      "enable_login_threshold_deactivation" => false
      "login" => array:1 [
        "threshold" => 120
      ]
      "authentication_failure" => array:3 [
        "enabled" => false
        "amount" => 5
        "duration" => 300
      ]
      "message" => "This user is inactive. Please contact us regarding this account."
    ]
  ]
  "spam" => array:2 [
    "allowlist_group" => 0
    "notify_email" => ""
  ]
  "calendar" => array:1 [
    "colors" => array:2 [
      "text" => "#ffffff"
      "background" => "#3A87AD"
    ]
  ]
  "security" => array:3 [
    "session" => array:5 [
      "invalidate_on_user_agent_mismatch" => true
      "invalidate_on_ip_mismatch" => true
      "ignored_ip_mismatches" => []
      "enable_user_specific_ignored_ip_mismatches" => false
      "invalidate_inactive_users" => array:2 [
        "enabled" => false
        "time" => 300
      ]
    ]
    "production" => array:2 [
      "mode" => "production"
      "staging" => array:1 [
        "show_notification_to_unregistered_users" => false
      ]
    ]
    "misc" => array:3 [
      "content_security_policy" => false
      "strict_transport_security" => false
      "x_frame_options" => "SAMEORIGIN"
    ]
  ]
  "permissions" => array:2 [
    "forward_to_login" => true
    "model" => "simple"
  ]
  "seo" => array:14 [
    "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"
    "enable_slug_asciify" => true
    "url_rewriting" => false
    "url_rewriting_all" => false
    "redirect_to_canonical_url" => false
    "canonical_url" => null
    "canonical_url_alternative" => null
    "trailing_slash" => false
    "title_format" => "%2$s :: %1$s"
    "title_segment_separator" => " :: "
    "page_path_separator" => "-"
    "group_name_separator" => " / "
    "segment_max_length" => 128
    "paging_string" => "ccm_paging_p"
  ]
  "statistics" => array:1 [
    "track_downloads" => true
  ]
  "limits" => array:4 [
    "sitemap_pages" => 100
    "page_search_index_batch" => 200
    "job_queue_batch" => 10
    "style_customizer" => array:2 [
      "size_min" => -50
      "size_max" => 200
    ]
  ]
  "page" => array:1 [
    "search" => array:1 [
      "always_reindex" => false
    ]
  ]
  "editor" => array:1 [
    "plugins" => array:1 [
      "selected" => []
    ]
  ]
  "composer" => array:1 [
    "idle_timeout" => 1
  ]
  "api" => array:2 [
    "enabled" => false
    "grant_types" => array:4 [
      "client_credentials" => true
      "authorization_code" => true
      "password_credentials" => false
      "refresh_token" => true
    ]
  ]
  "notification" => array:2 [
    "server_sent_events" => false
    "mercure" => array:1 [
      "jwt" => array:2 [
        "publisher" => array:1 [
          "expires_at" => "+30 minutes"
        ]
        "subscriber" => array:1 [
          "expires_at" => "+30 minutes"
        ]
      ]
    ]
  ]
  "mutex" => array:2 [
    "semaphore" => array:2 [
      "priority" => 100
      "class" => "Concrete\Core\System\Mutex\SemaphoreMutex"
    ]
    "file_lock" => array:2 [
      "priority" => 50
      "class" => "Concrete\Core\System\Mutex\FileLockMutex"
    ]
  ]
  "social" => array:1 [
    "additional_services" => []
  ]
  "version_db_installed" => "20240122172319"
]
app
array:18 [
  "debug" => false
  "namespace" => "Application"
  "aliases" => array:69 [
    "Area" => "\Concrete\Core\Area\Area"
    "Asset" => "\Concrete\Core\Asset\Asset"
    "AssetList" => "\Concrete\Core\Asset\AssetList"
    "AttributeSet" => "\Concrete\Core\Attribute\Set"
    "AuthenticationType" => "\Concrete\Core\Authentication\AuthenticationType"
    "Block" => "\Concrete\Core\Block\Block"
    "BlockType" => "\Concrete\Core\Block\BlockType\BlockType"
    "BlockTypeList" => "\Concrete\Core\Block\BlockType\BlockTypeList"
    "BlockTypeSet" => "\Concrete\Core\Block\BlockType\Set"
    "Cache" => "\Concrete\Core\Cache\Cache"
    "Request" => "\Concrete\Core\Http\Request"
    "CacheLocal" => "\Concrete\Core\Cache\CacheLocal"
    "Collection" => "\Concrete\Core\Page\Collection\Collection"
    "CollectionAttributeKey" => "\Concrete\Core\Attribute\Key\CollectionKey"
    "CollectionVersion" => "\Concrete\Core\Page\Collection\Version\Version"
    "ConcreteAuthenticationTypeController" => "\Concrete\Authentication\Concrete\Controller"
    "Controller" => "\Concrete\Core\Controller\Controller"
    "Conversation" => "\Concrete\Core\Conversation\Conversation"
    "ConversationEditor" => "\Concrete\Core\Conversation\Editor\Editor"
    "ConversationFlagType" => "\Concrete\Core\Conversation\FlagType\FlagType"
    "ConversationMessage" => "\Concrete\Core\Conversation\Message\Message"
    "ConversationRatingType" => "\Concrete\Core\Conversation\Rating\Type"
    "Environment" => "\Concrete\Core\Foundation\Environment"
    "FacebookAuthenticationTypeController" => "\Concrete\Authentication\Facebook\Controller"
    "File" => "\Concrete\Core\File\File"
    "FileAttributeKey" => "\Concrete\Core\Attribute\Key\FileKey"
    "FileImporter" => "\Concrete\Core\File\Importer"
    "FileList" => "\Concrete\Core\File\FileList"
    "FilePermissions" => "\Concrete\Core\Legacy\FilePermissions"
    "FileSet" => "\Concrete\Core\File\Set\Set"
    "GlobalArea" => "\Concrete\Core\Area\GlobalArea"
    "Group" => "\Concrete\Core\User\Group\Group"
    "GroupList" => "\Concrete\Core\User\Group\GroupList"
    "GroupSet" => "\Concrete\Core\User\Group\GroupSet"
    "GroupSetList" => "\Concrete\Core\User\Group\GroupSetList"
    "GroupTree" => "\Concrete\Core\Tree\Type\Group"
    "GroupTreeNode" => "\Concrete\Core\Tree\Node\Type\Group"
    "Job" => "\Concrete\Core\Job\Job"
    "JobSet" => "\Concrete\Core\Job\Set"
    "Loader" => "\Concrete\Core\Legacy\Loader"
    "Localization" => "\Concrete\Core\Localization\Localization"
    "Marketplace" => "\Concrete\Core\Marketplace\Marketplace"
    "Package" => "\Concrete\Core\Package\Package"
    "Page" => "\Concrete\Core\Page\Page"
    "PageCache" => "\Concrete\Core\Cache\Page\PageCache"
    "PageController" => "\Concrete\Core\Page\Controller\PageController"
    "PageEditResponse" => "\Concrete\Core\Page\EditResponse"
    "PageList" => "\Concrete\Core\Page\PageList"
    "PageTemplate" => "\Concrete\Core\Page\Template"
    "PageTheme" => "\Concrete\Core\Page\Theme\Theme"
    "PageType" => "\Concrete\Core\Page\Type\Type"
    "PermissionAccess" => "\Concrete\Core\Permission\Access\Access"
    "PermissionKey" => "\Concrete\Core\Permission\Key\Key"
    "PermissionKeyCategory" => "\Concrete\Core\Permission\Category"
    "Permissions" => "\Concrete\Core\Permission\Checker"
    "Redirect" => "\Concrete\Core\Routing\Redirect"
    "RedirectResponse" => "\Concrete\Core\Routing\RedirectResponse"
    "Response" => "\Concrete\Core\Http\Response"
    "Router" => "\Concrete\Core\Routing\Router"
    "SinglePage" => "\Concrete\Core\Page\Single"
    "Stack" => "\Concrete\Core\Page\Stack\Stack"
    "StackList" => "\Concrete\Core\Page\Stack\StackList"
    "StartingPointPackage" => "\Concrete\Core\Package\StartingPointPackage"
    "TaskPermission" => "\Concrete\Core\Legacy\TaskPermission"
    "User" => "\Concrete\Core\User\User"
    "UserAttributeKey" => "\Concrete\Core\Attribute\Key\UserKey"
    "UserList" => "\Concrete\Core\User\UserList"
    "View" => "\Concrete\Core\View\View"
    "Workflow" => "\Concrete\Core\Workflow\Workflow"
  ]
  "providers" => array:61 [
    "core_system" => "\Concrete\Core\System\SystemServiceProvider"
    "core_events" => "\Concrete\Core\Events\EventsServiceProvider"
    "core_logging" => "\Concrete\Core\Logging\LoggingServiceProvider"
    "core_router" => "Concrete\Core\Routing\RoutingServiceProvider"
    "core_database" => "\Concrete\Core\Database\DatabaseServiceProvider"
    "core_messenger" => "\Concrete\Core\Messenger\MessengerServiceProvider"
    "core_cache" => "\Concrete\Core\Cache\CacheServiceProvider"
    "core_file" => "\Concrete\Core\File\FileServiceProvider"
    "core_validation" => "\Concrete\Core\Validation\ValidationServiceProvider"
    "core_localization" => "\Concrete\Core\Localization\LocalizationServiceProvider"
    "core_exporter" => "\Concrete\Core\Export\ExportServiceProvider"
    "core_multilingual" => "\Concrete\Core\Multilingual\MultilingualServiceProvider"
    "core_feed" => "\Concrete\Core\Feed\FeedServiceProvider"
    "core_health" => "\Concrete\Core\Health\HealthServiceProvider"
    "core_html" => "\Concrete\Core\Html\HtmlServiceProvider"
    "core_editor" => "\Concrete\Core\Editor\EditorServiceProvider"
    "core_image_editor" => "\Concrete\Core\ImageEditor\ImageEditorServiceProvider"
    "core_mail" => "\Concrete\Core\Mail\MailServiceProvider"
    "core_application" => "\Concrete\Core\Application\ApplicationServiceProvider"
    "core_utility" => "\Concrete\Core\Utility\UtilityServiceProvider"
    "core_content_importer" => "\Concrete\Core\Backup\ContentImporter\ContentImporterServiceProvider"
    "core_manager_grid_framework" => "\Concrete\Core\Page\Theme\GridFramework\ManagerServiceProvider"
    "core_manager_pagination_view" => "\Concrete\Core\Search\Pagination\View\ManagerServiceProvider"
    "core_manager_page_type" => "\Concrete\Core\Page\Type\ManagerServiceProvider"
    "core_manager_layout_preset_provider" => "\Concrete\Core\Area\Layout\Preset\Provider\ManagerServiceProvider"
    "core_manager_search_fields" => "\Concrete\Core\Search\Field\ManagerServiceProvider"
    "core_permissions" => "\Concrete\Core\Permission\PermissionServiceProvider"
    "core_automation" => "\Concrete\Core\Command\Task\ServiceProvider"
    "core_announcement" => "\Concrete\Core\Announcement\AnnouncementServiceProvider"
    "core_form" => "\Concrete\Core\Form\FormServiceProvider"
    "core_session" => "\Concrete\Core\Session\SessionServiceProvider"
    "core_cookie" => "\Concrete\Core\Cookie\CookieServiceProvider"
    "core_http" => "\Concrete\Core\Http\HttpServiceProvider"
    "core_whoops" => "\Concrete\Core\Error\Provider\WhoopsServiceProvider"
    "core_element" => "\Concrete\Core\Filesystem\FilesystemServiceProvider"
    "core_notification" => "\Concrete\Core\Notification\NotificationServiceProvider"
    "core_mercure" => "\Concrete\Core\Notification\Events\MercureServiceProvider"
    "core_package" => "\Concrete\Core\Package\PackageServiceProvider"
    "core_url" => "\Concrete\Core\Url\UrlServiceProvider"
    "core_devices" => "\Concrete\Core\Device\DeviceServiceProvider"
    "core_user" => "\Concrete\Core\User\UserServiceProvider"
    "core_service_manager" => "\Concrete\Core\Service\Manager\ServiceManagerServiceProvider"
    "core_site" => "\Concrete\Core\Site\ServiceProvider"
    "core_search" => "Concrete\Core\Search\SearchServiceProvider"
    "core_geolocator" => "Concrete\Core\Geolocator\GeolocatorServiceProvider"
    "core_calendar" => "Concrete\Core\Calendar\CalendarServiceProvider"
    "core_summary" => "\Concrete\Core\Summary\ServiceProvider"
    "core_boards" => "\Concrete\Core\Board\ServiceProvider"
    "core_page" => "Concrete\Core\Page\PageServiceProvider"
    "core_oauth" => "\Concrete\Core\Authentication\Type\OAuth\ServiceProvider"
    "core_auth_community" => "\Concrete\Core\Authentication\Type\Community\ServiceProvider"
    "core_auth_google" => "\Concrete\Core\Authentication\Type\Google\ServiceProvider"
    "core_auth_external_concrete" => "\Concrete\Core\Authentication\Type\ExternalConcrete\ServiceProvider"
    "core_validator" => "\Concrete\Core\Validator\ValidatorServiceProvider"
    "core_validator_password" => "\Concrete\Core\Validator\PasswordValidatorServiceProvider"
    "core_validator_user_name" => "\Concrete\Core\Validator\UserNameValidatorServiceProvider"
    "core_validator_user_email" => "\Concrete\Core\Validator\UserEmailValidatorServiceProvider"
    "core_attribute" => "\Concrete\Core\Attribute\AttributeServiceProvider"
    "core_express" => "\Concrete\Core\Express\ExpressServiceProvider"
    "core_usagetracker" => "\Concrete\Core\Statistics\UsageTracker\ServiceProvider"
    "core_api" => "Concrete\Core\Api\ApiServiceProvider"
  ]
  "facades" => array:15 [
    "Core" => "\Concrete\Core\Support\Facade\Application"
    "Session" => "\Concrete\Core\Support\Facade\Session"
    "Cookie" => "\Concrete\Core\Support\Facade\Cookie"
    "Database" => "\Concrete\Core\Support\Facade\Database"
    "ORM" => "\Concrete\Core\Support\Facade\DatabaseORM"
    "Events" => "\Concrete\Core\Support\Facade\Events"
    "Express" => "\Concrete\Core\Support\Facade\Express"
    "Route" => "\Concrete\Core\Support\Facade\Route"
    "Site" => "\Concrete\Core\Support\Facade\Site"
    "UserInfo" => "\Concrete\Core\Support\Facade\UserInfo"
    "Element" => "\Concrete\Core\Support\Facade\Element"
    "Log" => "\Concrete\Core\Support\Facade\Log"
    "Image" => "\Concrete\Core\Support\Facade\Image"
    "Config" => "\Concrete\Core\Support\Facade\Config"
    "URL" => "\Concrete\Core\Support\Facade\Url"
  ]
  "entity_namespaces" => array:1 [
    "calendar" => "Concrete\Core\Entity\Calendar"
  ]
  "package_items" => array:39 [
    0 => "antispam_library"
    1 => "attribute_key_category"
    2 => "attribute_key"
    3 => "attribute_set"
    4 => "attribute_type"
    5 => "authentication_type"
    6 => "block_type"
    7 => "block_type_set"
    8 => "tree_type"
    9 => "tree_node_type"
    10 => "express_entity"
    11 => "captcha_library"
    12 => "container"
    13 => "content_editor_snippet"
    14 => "conversation_rating_type"
    15 => "geolocator_library"
    16 => "group"
    17 => "group_set"
    18 => "ip_access_control_category"
    19 => "job"
    20 => "mail_importer"
    21 => "permission_access_entity_type"
    22 => "permission_key"
    23 => "permission_key_category"
    24 => "page_template"
    25 => "site_type"
    26 => "page_type"
    27 => "page_type_composer_control_type"
    28 => "page_type_publish_target_type"
    29 => "single_page"
    30 => "storage_location_type"
    31 => "theme"
    32 => "workflow"
    33 => "workflow_progress_category"
    34 => "workflow_type"
    35 => "external_file_provider_type"
    36 => "image_editor"
    37 => "task"
    38 => "task_set"
  ]
  "importer_routines" => array:62 [
    0 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportSiteTypesRoutine"
    1 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportGroupsRoutine"
    2 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportTreeTypesRoutine"
    3 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportTreeNodeTypesRoutine"
    4 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportSinglePageStructureRoutine"
    5 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportStacksStructureRoutine"
    6 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportBlockTypesRoutine"
    7 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportBlockTypeSetsRoutine"
    8 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportConversationEditorsRoutine"
    9 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportConversationRatingTypesRoutine"
    10 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportConversationFlagTypesRoutine"
    11 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportPageTypePublishTargetTypesRoutine"
    12 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportPageTypeComposerControlTypesRoutine"
    13 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportBannedWordsRoutine"
    14 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportSocialLinksRoutine"
    15 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportDesignTagsRoutine"
    16 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportTreesRoutine"
    17 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportFileImportantThumbnailTypesRoutine"
    18 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportBoardDataSourcesRoutine"
    19 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportBoardTemplatesRoutine"
    20 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportBoardSlotTemplatesRoutine"
    21 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportAttributeCategoriesRoutine"
    22 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportAttributeTypesRoutine"
    23 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportWorkflowTypesRoutine"
    24 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportWorkflowProgressCategoriesRoutine"
    25 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportWorkflowsRoutine"
    26 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportExpressEntitiesRoutine"
    27 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportAttributesRoutine"
    28 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportAttributeSetsRoutine"
    29 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportExpressAssociationsRoutine"
    30 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportExpressFormsRoutine"
    31 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportExpressRelationsRoutine"
    32 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportThemesRoutine"
    33 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportPermissionKeyCategoriesRoutine"
    34 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportPermissionAccessEntityTypesRoutine"
    35 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportPermissionsRoutine"
    36 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportTasksRoutine"
    37 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportTaskSetsRoutine"
    38 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportJobsRoutine"
    39 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportJobSetsRoutine"
    40 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportPageTemplatesRoutine"
    41 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportContainersRoutine"
    42 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportSummaryCategoriesRoutine"
    43 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportSummaryFieldsRoutine"
    44 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportSummaryTemplatesRoutine"
    45 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportPageTypesBaseRoutine"
    46 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportPageStructureRoutine"
    47 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportBoardsRoutine"
    48 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportPageFeedsRoutine"
    49 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportPageTypeTargetsRoutine"
    50 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportPageTypeDefaultsRoutine"
    51 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportSiteTypeSkeletonsRoutine"
    52 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportSinglePageContentRoutine"
    53 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportStacksContentRoutine"
    54 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportPageContentRoutine"
    55 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportPackagesRoutine"
    56 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportConfigValuesRoutine"
    57 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportSystemCaptchaLibrariesRoutine"
    58 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportSystemContentEditorSnippetsRoutine"
    59 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportGeolocatorsRoutine"
    60 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\ImportIpAccessControlCategoriesRoutine"
    61 => "Concrete\Core\Backup\ContentImporter\Importer\Routine\PopulateBoardInstancesRoutine"
  ]
  "routes" => []
  "theme_paths" => array:8 [
    "/dashboard" => "dashboard"
    "/dashboard/*" => "dashboard"
    "/frontend/install" => "concrete"
    "/login" => "concrete"
    "/oauth/authorize" => "concrete"
    "/register" => "concrete"
    "/frontend/maintenance_mode" => "concrete"
    "/upgrade" => "concrete"
  ]
  "file_types" => array:39 [
    "JPEG" => array:5 [
      0 => "jpg,jpeg,jpe"
      1 => 1
      2 => "image"
      3 => "image"
      4 => "image"
    ]
    "GIF" => array:5 [
      0 => "gif"
      1 => 1
      2 => "image"
      3 => "image"
      4 => "image"
    ]
    "PNG" => array:5 [
      0 => "png"
      1 => 1
      2 => "image"
      3 => "image"
      4 => "image"
    ]
    "WebP" => array:5 [
      0 => "webp"
      1 => 1
      2 => "image"
      3 => "image"
      4 => "image"
    ]
    "Windows Bitmap" => array:3 [
      0 => "bmp"
      1 => 1
      2 => "image"
    ]
    "TIFF" => array:3 [
      0 => "tif,tiff"
      1 => 1
      2 => "image"
    ]
    "HTML" => array:2 [
      0 => "htm,html"
      1 => 5
    ]
    "Flash" => array:3 [
      0 => "swf"
      1 => 1
      2 => "image"
    ]
    "Icon" => array:2 [
      0 => "ico"
      1 => 1
    ]
    "SVG" => array:4 [
      0 => "svg"
      1 => 1
      2 => false
      3 => "image"
    ]
    "Windows Video" => array:4 [
      0 => "asf,wmv"
      1 => 2
      2 => false
      3 => "video"
    ]
    "Quicktime" => array:4 [
      0 => "mov,qt"
      1 => 2
      2 => false
      3 => "video"
    ]
    "AVI" => array:4 [
      0 => "avi"
      1 => 2
      2 => false
      3 => "video"
    ]
    "3GP" => array:4 [
      0 => "3gp"
      1 => 2
      2 => false
      3 => "video"
    ]
    "Plain Text" => array:4 [
      0 => "txt"
      1 => 3
      2 => false
      3 => "text"
    ]
    "CSV" => array:4 [
      0 => "csv"
      1 => 3
      2 => false
      3 => "text"
    ]
    "XML" => array:2 [
      0 => "xml"
      1 => 3
    ]
    "PHP" => array:2 [
      0 => "php"
      1 => 3
    ]
    "MS Word" => array:2 [
      0 => "doc,docx"
      1 => 5
    ]
    "Stylesheet" => array:2 [
      0 => "css"
      1 => 3
    ]
    "MP4" => array:4 [
      0 => "mp4"
      1 => 2
      2 => false
      3 => "video"
    ]
    "FLV" => array:3 [
      0 => "flv"
      1 => 2
      2 => "flv"
    ]
    "MP3" => array:4 [
      0 => "mp3"
      1 => 4
      2 => false
      3 => "audio"
    ]
    "MP4 Audio" => array:4 [
      0 => "m4a"
      1 => 4
      2 => false
      3 => "audio"
    ]
    "Realaudio" => array:2 [
      0 => "ra,ram"
      1 => 4
    ]
    "Windows Audio" => array:2 [
      0 => "wma"
      1 => 4
    ]
    "Rich Text" => array:2 [
      0 => "rtf"
      1 => 5
    ]
    "JavaScript" => array:2 [
      0 => "js"
      1 => 3
    ]
    "PDF" => array:2 [
      0 => "pdf"
      1 => 5
    ]
    "Photoshop" => array:2 [
      0 => "psd"
      1 => 1
    ]
    "MPEG" => array:2 [
      0 => "mpeg,mpg"
      1 => 2
    ]
    "MS Excel" => array:2 [
      0 => "xla,xls,xlsx,xlt,xlw"
      1 => 5
    ]
    "MS Powerpoint" => array:2 [
      0 => "pps,ppt,pptx,pot"
      1 => 5
    ]
    "TAR Archive" => array:2 [
      0 => "tar"
      1 => 6
    ]
    "Zip Archive" => array:2 [
      0 => "zip"
      1 => 6
    ]
    "GZip Archive" => array:2 [
      0 => "gz,gzip"
      1 => 6
    ]
    "OGG" => array:4 [
      0 => "ogg"
      1 => 4
      2 => false
      3 => "audio"
    ]
    "OGG Video" => array:4 [
      0 => "ogv"
      1 => 2
      2 => false
      3 => "video"
    ]
    "WebM" => array:4 [
      0 => "webm"
      1 => 2
      2 => false
      3 => "video"
    ]
  ]
  "importer_attributes" => array:3 [
    "width" => array:3 [
      0 => "Width"
      1 => "NUMBER"
      2 => false
    ]
    "height" => array:3 [
      0 => "Height"
      1 => "NUMBER"
      2 => false
    ]
    "duration" => array:3 [
      0 => "Duration"
      1 => "NUMBER"
      2 => false
    ]
  ]
  "import_processors" => array:7 [
    "ccm.file.exists" => "Concrete\Core\File\Import\Processor\FileExistingValidator"
    "ccm.file.extension" => "Concrete\Core\File\Import\Processor\FileExtensionValidator"
    "ccm.image.autorotate" => "Concrete\Core\File\Import\Processor\ImageAutorotator"
    "ccm.image.svg" => "Concrete\Core\File\Import\Processor\SvgProcessor"
    "ccm.image.resize" => "Concrete\Core\File\Import\Processor\ImageSizeConstrain"
    "ccm.image.thumbnails" => "Concrete\Core\File\Import\Processor\ThumbnailGenerator"
    "ccm.image.exif_data" => "Concrete\Core\File\Import\Processor\ExifDataExtractor"
  ]
  "assets" => array:36 [
    "jquery" => array:1 [
      0 => array:3 [
        0 => "javascript"
        1 => "js/jquery.js"
        2 => array:3 [
          "position" => "H"
          "minify" => false
          "combine" => false
        ]
      ]
    ]
    "vue" => array:1 [
      0 => array:3 [
        0 => "javascript"
        1 => "js/vue.js"
        2 => array:2 [
          "minify" => false
          "combine" => false
        ]
      ]
    ]
    "bootstrap" => array:1 [
      0 => array:3 [
        0 => "javascript"
        1 => "js/bootstrap.js"
        2 => array:4 [
          "position" => "F"
          "minify" => false
          "combine" => false
          "version" => "5.0.0"
        ]
      ]
    ]
    "moment" => array:2 [
      0 => array:3 [
        0 => "javascript"
        1 => "js/moment.js"
        2 => array:2 [
          "minify" => false
          "combine" => false
        ]
      ]
      1 => array:2 [
        0 => "javascript-localized"
        1 => "/ccm/assets/localization/moment/js"
      ]
    ]
    "ckeditor" => array:1 [
      0 => array:3 [
        0 => "javascript"
        1 => "js/ckeditor/ckeditor.js"
        2 => array:2 [
          "minify" => false
          "combine" => false
        ]
      ]
    ]
    "ckeditor/concrete" => array:2 [
      0 => array:3 [
        0 => "javascript"
        1 => "js/ckeditor/concrete.js"
        2 => array:2 [
          "minify" => false
          "combine" => false
        ]
      ]
      1 => array:2 [
        0 => "css"
        1 => "css/ckeditor/concrete.css"
      ]
    ]
    "fullcalendar" => array:2 [
      0 => array:3 [
        0 => "javascript"
        1 => "js/fullcalendar.js"
        2 => array:2 [
          "minify" => false
          "combine" => false
        ]
      ]
      1 => array:2 [
        0 => "css"
        1 => "css/fullcalendar.css"
      ]
    ]
    "font-awesome" => array:1 [
      0 => array:3 [
        0 => "css"
        1 => "css/fontawesome/all.css"
        2 => array:2 [
          "minify" => false
          "combine" => false
        ]
      ]
    ]
    "google-charts" => array:1 [
      0 => array:3 [
        0 => "javascript"
        1 => "https://www.gstatic.com/charts/loader.js"
        2 => array:1 [
          "local" => false
        ]
      ]
    ]
    "core/cms" => array:3 [
      0 => array:3 [
        0 => "javascript"
        1 => "js/cms.js"
        2 => array:2 [
          "minify" => false
          "combine" => false
        ]
      ]
      1 => array:2 [
        0 => "javascript-localized"
        1 => "/ccm/assets/localization/core/js"
      ]
      2 => array:3 [
        0 => "css"
        1 => "css/cms.css"
        2 => array:2 [
          "minify" => false
          "combine" => false
        ]
      ]
    ]
    "feature/accordions/frontend" => array:2 [
      0 => array:3 [
        0 => "javascript"
        1 => "js/features/accordions/frontend.js"
        2 => array:1 [
          "minify" => false
        ]
      ]
      1 => array:3 [
        0 => "css"
        1 => "css/features/accordions/frontend.css"
        2 => array:1 [
          "minify" => false
        ]
      ]
    ]
    "feature/account/frontend" => array:2 [
      0 => array:3 [
        0 => "javascript"
        1 => "js/features/account/frontend.js"
        2 => array:1 [
          "minify" => false
        ]
      ]
      1 => array:3 [
        0 => "css"
        1 => "css/features/account/frontend.css"
        2 => array:1 [
          "minify" => false
        ]
      ]
    ]
    "feature/profile/frontend" => array:1 [
      0 => array:3 [
        0 => "css"
        1 => "css/features/profile/frontend.css"
        2 => array:1 [
          "minify" => false
        ]
      ]
    ]
    "feature/desktop/frontend" => array:2 [
      0 => array:3 [
        0 => "javascript"
        1 => "js/features/desktop/frontend.js"
        2 => array:1 [
          "minify" => false
        ]
      ]
      1 => array:3 [
        0 => "css"
        1 => "css/features/desktop/frontend.css"
        2 => array:1 [
          "minify" => false
        ]
      ]
    ]
    "feature/boards/frontend" => array:2 [
      0 => array:3 [
        0 => "javascript"
        1 => "js/features/boards/frontend.js"
        2 => array:1 [
          "minify" => false
        ]
      ]
      1 => array:3 [
        0 => "css"
        1 => "css/features/boards/frontend.css"
        2 => array:1 [
          "minify" => false
        ]
      ]
    ]
    "feature/calendar/frontend" => array:2 [
      0 => array:3 [
        0 => "javascript"
        1 => "js/features/calendar/frontend.js"
        2 => array:1 [
          "minify" => false
        ]
      ]
      1 => array:3 [
        0 => "css"
        1 => "css/features/calendar/frontend.css"
        2 => array:1 [
          "minify" => false
        ]
      ]
    ]
    "feature/conversations/frontend" => array:2 [
      0 => array:3 [
        0 => "javascript"
        1 => "js/features/conversations/frontend.js"
        2 => array:1 [
          "minify" => false
        ]
      ]
      1 => array:3 [
        0 => "css"
        1 => "css/features/conversations/frontend.css"
        2 => array:1 [
          "minify" => false
        ]
      ]
    ]
    "ace" => array:1 [
      0 => array:3 [
        0 => "javascript"
        1 => "js/ace/ace.js"
        2 => array:2 [
          "minify" => false
          "combine" => false
        ]
      ]
    ]
    "feature/documents/frontend" => array:2 [
      0 => array:3 [
        0 => "javascript"
        1 => "js/features/documents/frontend.js"
        2 => array:1 [
          "minify" => false
        ]
      ]
      1 => array:3 [
        0 => "css"
        1 => "css/features/documents/frontend.css"
        2 => array:1 [
          "minify" => false
        ]
      ]
    ]
    "feature/testimonials/frontend" => array:1 [
      0 => array:3 [
        0 => "css"
        1 => "css/features/testimonials/frontend.css"
        2 => array:1 [
          "minify" => false
        ]
      ]
    ]
    "feature/faq/frontend" => array:1 [
      0 => array:3 [
        0 => "css"
        1 => "css/features/faq/frontend.css"
        2 => array:1 [
          "minify" => false
        ]
      ]
    ]
    "feature/forms/frontend" => array:1 [
      0 => array:3 [
        0 => "javascript"
        1 => "js/features/forms/frontend.js"
        2 => array:1 [
          "minify" => false
        ]
      ]
    ]
    "feature/basics/frontend" => array:1 [
      0 => array:3 [
        0 => "css"
        1 => "css/features/basics/frontend.css"
        2 => array:1 [
          "minify" => false
        ]
      ]
    ]
    "feature/navigation/frontend" => array:2 [
      0 => array:3 [
        0 => "javascript"
        1 => "js/features/navigation/frontend.js"
        2 => array:1 [
          "minify" => false
        ]
      ]
      1 => array:3 [
        0 => "css"
        1 => "css/features/navigation/frontend.css"
        2 => array:1 [
          "minify" => false
        ]
      ]
    ]
    "feature/imagery/frontend" => array:2 [
      0 => array:3 [
        0 => "javascript"
        1 => "js/features/imagery/frontend.js"
        2 => array:1 [
          "minify" => false
        ]
      ]
      1 => array:3 [
        0 => "css"
        1 => "css/features/imagery/frontend.css"
        2 => array:1 [
          "minify" => false
        ]
      ]
    ]
    "feature/express/frontend" => array:2 [
      0 => array:3 [
        0 => "javascript"
        1 => "js/features/express/frontend.js"
        2 => array:1 [
          "minify" => false
        ]
      ]
      1 => array:3 [
        0 => "css"
        1 => "css/features/express/frontend.css"
        2 => array:1 [
          "minify" => false
        ]
      ]
    ]
    "feature/search/frontend" => array:1 [
      0 => array:3 [
        0 => "css"
        1 => "css/features/search/frontend.css"
        2 => array:1 [
          "minify" => false
        ]
      ]
    ]
    "feature/social/frontend" => array:1 [
      0 => array:3 [
        0 => "css"
        1 => "css/features/social/frontend.css"
        2 => array:1 [
          "minify" => false
        ]
      ]
    ]
    "feature/video/frontend" => array:1 [
      0 => array:3 [
        0 => "css"
        1 => "css/features/video/frontend.css"
        2 => array:1 [
          "minify" => false
        ]
      ]
    ]
    "feature/taxonomy/frontend" => array:1 [
      0 => array:3 [
        0 => "css"
        1 => "css/features/taxonomy/frontend.css"
        2 => array:1 [
          "minify" => false
        ]
      ]
    ]
    "feature/maps/frontend" => array:2 [
      0 => array:3 [
        0 => "javascript"
        1 => "js/features/maps/frontend.js"
        2 => array:1 [
          "minify" => false
        ]
      ]
      1 => array:3 [
        0 => "css"
        1 => "css/features/maps/frontend.css"
        2 => array:1 [
          "minify" => false
        ]
      ]
    ]
    "feature/multilingual/frontend" => array:2 [
      0 => array:3 [
        0 => "javascript"
        1 => "js/features/multilingual/frontend.js"
        2 => array:1 [
          "minify" => false
        ]
      ]
      1 => array:3 [
        0 => "css"
        1 => "css/features/multilingual/frontend.css"
        2 => array:1 [
          "minify" => false
        ]
      ]
    ]
    "feature/staging/frontend" => array:1 [
      0 => array:3 [
        0 => "css"
        1 => "css/features/staging/frontend.css"
        2 => array:1 [
          "minify" => false
        ]
      ]
    ]
    "tui-image-editor" => array:2 [
      0 => array:2 [
        0 => "css"
        1 => "css/tui-image-editor.css"
      ]
      1 => array:3 [
        0 => "javascript"
        1 => "js/tui-image-editor.js"
        2 => array:2 [
          "minify" => false
          "combine" => false
        ]
      ]
    ]
    "core/translator" => array:3 [
      0 => array:3 [
        0 => "javascript"
        1 => "js/translator.js"
        2 => array:1 [
          "minify" => false
        ]
      ]
      1 => array:2 [
        0 => "javascript-localized"
        1 => "/ccm/assets/localization/translator/js"
      ]
      2 => array:3 [
        0 => "css"
        1 => "css/translator.css"
        2 => array:1 [
          "minify" => false
        ]
      ]
    ]
    "htmldiff" => array:1 [
      0 => array:2 [
        0 => "css"
        1 => "css/htmldiff.css"
      ]
    ]
  ]
  "asset_groups" => array:34 [
    "jquery" => array:1 [
      0 => array:1 [
        0 => array:2 [
          0 => "javascript"
          1 => "jquery"
        ]
      ]
    ]
    "bootstrap" => array:1 [
      0 => array:1 [
        0 => array:2 [
          0 => "javascript"
          1 => "bootstrap"
        ]
      ]
    ]
    "moment" => array:1 [
      0 => array:2 [
        0 => array:2 [
          0 => "javascript"
          1 => "moment"
        ]
        1 => array:2 [
          0 => "javascript-localized"
          1 => "moment"
        ]
      ]
    ]
    "vue" => array:1 [
      0 => array:1 [
        0 => array:2 [
          0 => "javascript"
          1 => "vue"
        ]
      ]
    ]
    "font-awesome" => array:1 [
      0 => array:1 [
        0 => array:2 [
          0 => "css"
          1 => "font-awesome"
        ]
      ]
    ]
    "ckeditor" => array:1 [
      0 => array:3 [
        0 => array:2 [
          0 => "javascript"
          1 => "ckeditor"
        ]
        1 => array:2 [
          0 => "javascript"
          1 => "ckeditor/concrete"
        ]
        2 => array:2 [
          0 => "css"
          1 => "ckeditor/concrete"
        ]
      ]
    ]
    "ace" => array:1 [
      0 => array:1 [
        0 => array:2 [
          0 => "javascript"
          1 => "ace"
        ]
      ]
    ]
    "core/cms" => array:1 [
      0 => array:8 [
        0 => array:2 [
          0 => "javascript"
          1 => "jquery"
        ]
        1 => array:2 [
          0 => "javascript"
          1 => "bootstrap"
        ]
        2 => array:2 [
          0 => "javascript"
          1 => "moment"
        ]
        3 => array:2 [
          0 => "javascript"
          1 => "vue"
        ]
        4 => array:2 [
          0 => "css"
          1 => "font-awesome"
        ]
        5 => array:2 [
          0 => "javascript"
          1 => "core/cms"
        ]
        6 => array:2 [
          0 => "javascript-localized"
          1 => "core/cms"
        ]
        7 => array:2 [
          0 => "css"
          1 => "core/cms"
        ]
      ]
    ]
    "fullcalendar" => array:1 [
      0 => array:2 [
        0 => array:2 [
          0 => "javascript"
          1 => "fullcalendar"
        ]
        1 => array:2 [
          0 => "css"
          1 => "fullcalendar"
        ]
      ]
    ]
    "tui-image-editor" => array:1 [
      0 => array:2 [
        0 => array:2 [
          0 => "css"
          1 => "tui-image-editor"
        ]
        1 => array:2 [
          0 => "javascript"
          1 => "tui-image-editor"
        ]
      ]
    ]
    "core/translator" => array:1 [
      0 => array:3 [
        0 => array:2 [
          0 => "css"
          1 => "core/translator"
        ]
        1 => array:2 [
          0 => "javascript"
          1 => "core/translator"
        ]
        2 => array:2 [
          0 => "javascript-localized"
          1 => "core/translator"
        ]
      ]
    ]
    "feature/accordions/frontend" => array:1 [
      0 => array:2 [
        0 => array:2 [
          0 => "javascript"
          1 => "feature/accordions/frontend"
        ]
        1 => array:2 [
          0 => "css"
          1 => "feature/accordions/frontend"
        ]
      ]
    ]
    "feature/account/frontend" => array:1 [
      0 => array:2 [
        0 => array:2 [
          0 => "javascript"
          1 => "feature/account/frontend"
        ]
        1 => array:2 [
          0 => "css"
          1 => "feature/account/frontend"
        ]
      ]
    ]
    "feature/profile/frontend" => array:1 [
      0 => array:1 [
        0 => array:2 [
          0 => "css"
          1 => "feature/profile/frontend"
        ]
      ]
    ]
    "feature/desktop/frontend" => array:1 [
      0 => array:2 [
        0 => array:2 [
          0 => "javascript"
          1 => "feature/desktop/frontend"
        ]
        1 => array:2 [
          0 => "css"
          1 => "feature/desktop/frontend"
        ]
      ]
    ]
    "feature/calendar/frontend" => array:1 [
      0 => array:3 [
        0 => array:2 [
          0 => "javascript"
          1 => "moment"
        ]
        1 => array:2 [
          0 => "javascript"
          1 => "feature/calendar/frontend"
        ]
        2 => array:2 [
          0 => "css"
          1 => "feature/calendar/frontend"
        ]
      ]
    ]
    "feature/conversations/frontend" => array:1 [
      0 => array:2 [
        0 => array:2 [
          0 => "javascript"
          1 => "feature/conversations/frontend"
        ]
        1 => array:2 [
          0 => "css"
          1 => "feature/conversations/frontend"
        ]
      ]
    ]
    "feature/documents/frontend" => array:1 [
      0 => array:3 [
        0 => array:2 [
          0 => "javascript"
          1 => "feature/documents/frontend"
        ]
        1 => array:2 [
          0 => "javascript-localized"
          1 => "core/cms"
        ]
        2 => array:2 [
          0 => "css"
          1 => "feature/documents/frontend"
        ]
      ]
    ]
    "feature/faq/frontend" => array:1 [
      0 => array:1 [
        0 => array:2 [
          0 => "css"
          1 => "feature/faq/frontend"
        ]
      ]
    ]
    "feature/forms/frontend" => array:1 [
      0 => array:1 [
        0 => array:2 [
          0 => "javascript"
          1 => "feature/forms/frontend"
        ]
      ]
    ]
    "feature/imagery/frontend" => array:1 [
      0 => array:2 [
        0 => array:2 [
          0 => "javascript"
          1 => "feature/imagery/frontend"
        ]
        1 => array:2 [
          0 => "css"
          1 => "feature/imagery/frontend"
        ]
      ]
    ]
    "feature/navigation/frontend" => array:1 [
      0 => array:2 [
        0 => array:2 [
          0 => "javascript"
          1 => "feature/navigation/frontend"
        ]
        1 => array:2 [
          0 => "css"
          1 => "feature/navigation/frontend"
        ]
      ]
    ]
    "feature/video/frontend" => array:1 [
      0 => array:1 [
        0 => array:2 [
          0 => "css"
          1 => "feature/video/frontend"
        ]
      ]
    ]
    "feature/social/frontend" => array:1 [
      0 => array:1 [
        0 => array:2 [
          0 => "css"
          1 => "feature/social/frontend"
        ]
      ]
    ]
    "feature/express/frontend" => array:1 [
      0 => array:2 [
        0 => array:2 [
          0 => "javascript"
          1 => "feature/express/frontend"
        ]
        1 => array:2 [
          0 => "css"
          1 => "feature/express/frontend"
        ]
      ]
    ]
    "feature/maps/frontend" => array:1 [
      0 => array:2 [
        0 => array:2 [
          0 => "javascript"
          1 => "feature/maps/frontend"
        ]
        1 => array:2 [
          0 => "css"
          1 => "feature/maps/frontend"
        ]
      ]
    ]
    "feature/multilingual/frontend" => array:1 [
      0 => array:2 [
        0 => array:2 [
          0 => "javascript"
          1 => "feature/multilingual/frontend"
        ]
        1 => array:2 [
          0 => "css"
          1 => "feature/multilingual/frontend"
        ]
      ]
    ]
    "feature/search/frontend" => array:1 [
      0 => array:1 [
        0 => array:2 [
          0 => "css"
          1 => "feature/search/frontend"
        ]
      ]
    ]
    "feature/staging/frontend" => array:1 [
      0 => array:1 [
        0 => array:2 [
          0 => "css"
          1 => "feature/staging/frontend"
        ]
      ]
    ]
    "feature/taxonomy/frontend" => array:1 [
      0 => array:1 [
        0 => array:2 [
          0 => "css"
          1 => "feature/taxonomy/frontend"
        ]
      ]
    ]
    "feature/testimonials/frontend" => array:1 [
      0 => array:1 [
        0 => array:2 [
          0 => "css"
          1 => "feature/testimonials/frontend"
        ]
      ]
    ]
    "feature/basics/frontend" => array:1 [
      0 => array:1 [
        0 => array:2 [
          0 => "css"
          1 => "feature/basics/frontend"
        ]
      ]
    ]
    "core/conversation" => array:2 [
      0 => []
      1 => true
    ]
    "htmldiff" => array:1 [
      0 => array:1 [
        0 => array:2 [
          0 => "css"
          1 => "htmldiff"
        ]
      ]
    ]
  ]
  "http_client" => array:21 [
    "sslverifypeer" => true
    "sslverifypeername" => false
    "sslcafile" => null
    "sslcapath" => null
    "connecttimeout" => 5
    "timeout" => 60
    "keepalive" => false
    "maxredirects" => 5
    "rfc3986strict" => false
    "sslcert" => null
    "sslpassphrase" => null
    "storeresponse" => true
    "streamtmpdir" => null
    "strictredirects" => false
    "useragent" => "Concrete CMS"
    "encodecookies" => true
    "httpversion" => "1.1"
    "ssltransport" => "tls"
    "sslallowselfsigned" => false
    "persistent" => false
    "logger" => null
  ]
  "middleware" => array:5 [
    0 => array:2 [
      "priority" => 1
      "class" => "Concrete\Core\Http\Middleware\ApplicationMiddleware"
    ]
    "core_cookie" => "Concrete\Core\Http\Middleware\CookieMiddleware"
    "core_csp" => "Concrete\Core\Http\Middleware\ContentSecurityPolicyMiddleware"
    "core_hsts" => "Concrete\Core\Http\Middleware\StrictTransportSecurityMiddleware"
    "core_xframeoptions" => "Concrete\Core\Http\Middleware\FrameOptionsMiddleware"
  ]
  "command_handlers" => []
]
empty
empty
empty
empty
empty
Key Value
PATH
"************************************************************"
PWD
"*"
CONTENT_LENGTH
"*"
HTTP_CONNECTION
"*****"
PATH_TRANSLATED
"******************************************************"
PATH_INFO
"**********************************"
SCRIPT_NAME
"**********"
REQUEST_URI
"********************************************"
QUERY_STRING
""
REQUEST_METHOD
"***"
SERVER_PROTOCOL
"********"
GATEWAY_INTERFACE
"*******"
REMOTE_PORT
"*****"
SCRIPT_FILENAME
"******************************"
SERVER_ADMIN
"******************"
CONTEXT_DOCUMENT_ROOT
"********************"
CONTEXT_PREFIX
""
REQUEST_SCHEME
"*****"
DOCUMENT_ROOT
"********************"
REMOTE_ADDR
"**************"
SERVER_PORT
"***"
SERVER_ADDR
"**************"
SERVER_NAME
"********************"
SERVER_SOFTWARE
"******"
SERVER_SIGNATURE
""
HTTP_HOST
"********************"
HTTP_REFERER
"********************************************************************"
HTTP_ACCEPT_ENCODING
"***********************"
HTTP_USER_AGENT
"*******************************************************************************************************"
HTTP_ACCEPT
"***"
SSL_SESSION_RESUMED
"*******"
SSL_SESSION_ID
"****************************************************************"
SSL_SERVER_A_SIG
"***********************"
SSL_SERVER_A_KEY
"*************"
SSL_SERVER_I_DN
"***************************"
SSL_SERVER_S_DN
"***********************"
SSL_SERVER_V_END
"************************"
SSL_SERVER_V_START
"************************"
SSL_SERVER_M_SERIAL
"************************************"
SSL_SERVER_M_VERSION
"*"
SSL_CLIENT_VERIFY
"****"
SSL_CIPHER_ALGKEYSIZE
"***"
SSL_CIPHER_USEKEYSIZE
"***"
SSL_CIPHER_EXPORT
"*****"
SSL_CIPHER
"**********************"
SSL_COMPRESS_METHOD
"****"
SSL_SECURE_RENEG
"****"
SSL_PROTOCOL
"*******"
SSL_VERSION_LIBRARY
"*************"
SSL_VERSION_INTERFACE
"**************"
SSL_SERVER_SAN_DNS_1
"********************"
SSL_SERVER_SAN_DNS_0
"****************"
SSL_SERVER_I_DN_CN
"***"
SSL_SERVER_I_DN_O
"*************"
SSL_SERVER_I_DN_C
"**"
SSL_SERVER_S_DN_CN
"********************"
SSL_TLS_SNI
"********************"
HTTPS
"**"
H2_STREAM_TAG
"***********"
H2_STREAM_ID
"*"
H2_PUSHED_ON
""
H2_PUSHED
""
H2_PUSH
"***"
H2PUSH
"***"
HTTP2
"**"
LogDir
"*********************"
SCRIPT_URI
"************************************************************************"
SCRIPT_URL
"********************************************"
UNIQUE_ID
"***************************"
IP_Anonym
"************"
IP_Full
"**************"
FCGI_ROLE
"*********"
PHP_SELF
"********************************************"
REQUEST_TIME_FLOAT
"***"
REQUEST_TIME
"***"
argv
"***"
argc
"***"
Key Value
PATH
"************************************************************"
PWD
"*"
CONTENT_LENGTH
"*"
HTTP_CONNECTION
"*****"
PATH_TRANSLATED
"******************************************************"
PATH_INFO
"**********************************"
SCRIPT_NAME
"**********"
REQUEST_URI
"********************************************"
QUERY_STRING
""
REQUEST_METHOD
"***"
SERVER_PROTOCOL
"********"
GATEWAY_INTERFACE
"*******"
REMOTE_PORT
"*****"
SCRIPT_FILENAME
"******************************"
SERVER_ADMIN
"******************"
CONTEXT_DOCUMENT_ROOT
"********************"
CONTEXT_PREFIX
""
REQUEST_SCHEME
"*****"
DOCUMENT_ROOT
"********************"
REMOTE_ADDR
"**************"
SERVER_PORT
"***"
SERVER_ADDR
"**************"
SERVER_NAME
"********************"
SERVER_SOFTWARE
"******"
SERVER_SIGNATURE
""
HTTP_HOST
"********************"
HTTP_REFERER
"********************************************************************"
HTTP_ACCEPT_ENCODING
"***********************"
HTTP_USER_AGENT
"*******************************************************************************************************"
HTTP_ACCEPT
"***"
SSL_SESSION_RESUMED
"*******"
SSL_SESSION_ID
"****************************************************************"
SSL_SERVER_A_SIG
"***********************"
SSL_SERVER_A_KEY
"*************"
SSL_SERVER_I_DN
"***************************"
SSL_SERVER_S_DN
"***********************"
SSL_SERVER_V_END
"************************"
SSL_SERVER_V_START
"************************"
SSL_SERVER_M_SERIAL
"************************************"
SSL_SERVER_M_VERSION
"*"
SSL_CLIENT_VERIFY
"****"
SSL_CIPHER_ALGKEYSIZE
"***"
SSL_CIPHER_USEKEYSIZE
"***"
SSL_CIPHER_EXPORT
"*****"
SSL_CIPHER
"**********************"
SSL_COMPRESS_METHOD
"****"
SSL_SECURE_RENEG
"****"
SSL_PROTOCOL
"*******"
SSL_VERSION_LIBRARY
"*************"
SSL_VERSION_INTERFACE
"**************"
SSL_SERVER_SAN_DNS_1
"********************"
SSL_SERVER_SAN_DNS_0
"****************"
SSL_SERVER_I_DN_CN
"***"
SSL_SERVER_I_DN_O
"*************"
SSL_SERVER_I_DN_C
"**"
SSL_SERVER_S_DN_CN
"********************"
SSL_TLS_SNI
"********************"
HTTPS
"**"
H2_STREAM_TAG
"***********"
H2_STREAM_ID
"*"
H2_PUSHED_ON
""
H2_PUSHED
""
H2_PUSH
"***"
H2PUSH
"***"
HTTP2
"**"
LogDir
"*********************"
SCRIPT_URI
"************************************************************************"
SCRIPT_URL
"********************************************"
UNIQUE_ID
"***************************"
IP_Anonym
"************"
IP_Full
"**************"
FCGI_ROLE
"*********"
0. Concrete\Core\Error\Handler\ErrorHandler
1. Concrete\Core\Error\Handler\JsonErrorHandler