Phalcon Framework 5.9.3

Phalcon\Support\Debug\Exception: Halted request

phalcon/Support/Debug.zep (169)
#0Phalcon\Support\Debug->halt
/var/www/html/korting-en-acties.nl/src/app/Lib/Factory.php (30)
<?php
 
namespace CLSystems\PhalCMS\Lib;
 
use Phalcon\Html\Escaper;
use Phalcon\Html\TagFactory;
use Phalcon\Support\Debug;
use Phalcon\Mvc\Url;
use Phalcon\Config\Adapter\Ini;
use Phalcon\Di\FactoryDefault;
use Phalcon\Session\Manager;
use Phalcon\Session\Adapter\Stream;
use Phalcon\Session\Bag;
use Phalcon\Db\Adapter\Pdo\Mysql;
use CLSystems\PhalCMS\Lib\Helper\Asset;
use CLSystems\PhalCMS\Lib\Helper\Config;
use CLSystems\PhalCMS\Lib\Helper\Event;
use CLSystems\PhalCMS\Lib\Helper\Language;
use CLSystems\PhalCMS\Lib\Mvc\View\ViewBase;
use CLSystems\Php\Registry;
use Exception;
 
if (!function_exists('debugVar'))
{
    function debugVar($var)
    {
        (new Debug)
            ->debugVar($var)
            ->listen(true, true)
            ->halt();
    }
}
 
class Factory
{
    /** @var Registry $config */
    protected static $config;
 
    /** @var CmsApplication $application */
    protected static $application;
 
    protected static function loadConfig()
    {
        if (!is_file(BASE_PATH . '/src/config.ini')) {
            if (is_file(BASE_PATH . '/public/install.php')) {
                $protocol = 'http';
 
                if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] === 'on') {
                    $protocol .= 's';
                }
 
                header('location: ' . $protocol . '://' . $_SERVER['HTTP_HOST'] . '/install.php');
            } else {
                die('The config INI file not found at ' . BASE_PATH . '/src/config.ini');
            }
        }
 
        require_once BASE_PATH . '/src/app/Config/Define.php';
        require_once BASE_PATH . '/src/app/Config/Loader.php';
        require_once BASE_PATH . '/vendor/autoload.php';
 
        return new Ini(BASE_PATH . '/src/config.ini', INI_SCANNER_NORMAL);
    }
 
    public static function getApplication()
    {
        if (!isset(self::$application)) {
            $config = self::loadConfig();
            $dbPrefix = $config->path('DB.PREFIX');
 
            try {
                $db = new Mysql(
                    [
                        'host'     => $config->path('DB.HOST'),
                        'username' => $config->path('DB.USER'),
                        'password' => $config->path('DB.PASS'),
                        'dbname'   => $config->path('DB.NAME'),
                        'charset'  => 'utf8mb4',
                    ]
                );
 
            } catch (Exception $e) {
                die($e->getMessage());
            }
 
            $registry = new Registry(
                [
                    'siteTemplate' => $config->path('APP.TEMPLATE') ?? 'PhalCMS',
                    'core'         => [
                        'plugins' => [
              'CLSystems\\PhalCMS\\Plugin\\System\\Cms\\Cms',
                        ],
                        'widgets' => [
                            'CLSystems\\PhalCMS\\Widget\\Code\\Code',
                            'CLSystems\\PhalCMS\\Widget\\Content\\Content',
                            'CLSystems\\PhalCMS\\Widget\\FlashNews\\FlashNews',
                            'CLSystems\\PhalCMS\\Widget\\LanguageSwitcher\\LanguageSwitcher',
                            'CLSystems\\PhalCMS\\Widget\\Login\\Login',
                            'CLSystems\\PhalCMS\\Widget\\Menu\\Menu',
                        ],
                    ],
                ]
            );
 
            if ($extraConfig = $db->fetchColumn('SELECT data FROM ' . $dbPrefix . 'config_data WHERE context = \'cms.config\'')) {
                $registry->merge($extraConfig);
            }
 
            define('ADMIN_URI_PREFIX', $registry->get('adminPrefix', 'admin'));
            define('DEVELOPMENT_MODE', $registry->get('development', 'Y') === 'Y');
            Config::setDataContext('cms.config', $registry);
 
            if (true === DEVELOPMENT_MODE) {
                ini_set('display_errors', true);
                error_reporting(E_ALL);
 
                if (!defined('TEST_PHPUNIT_MODE')) {
                    (new Debug())->listen(true, false);
                }
            }
 
            // Create DI Factory Default
            $di = new FactoryDefault();
 
            // Set URL service before to use debug
            $di->setShared('url', new Url);
            $di->setShared('config', $config);
            $escaper = new Escaper();
            $tagFactory = new TagFactory($escaper);
            $di->setShared('assets', new Asset($tagFactory));
            $di->getShared('modelsManager')->setModelPrefix($dbPrefix);
            $di->setShared('db', $db);
            $di->getShared('flashSession')
                ->setAutoescape(false)
                ->setCssClasses(
                    [
                        'error'   => 'uk-alert uk-alert-danger',
                        'success' => 'uk-alert uk-alert-success',
                        'notice'  => 'uk-alert uk-alert-warning',
                        'warning' => 'uk-alert uk-alert-warning',
                    ]
                );
 
            $di->setShared('session', function () {
                $session = new Manager;
                $session->setAdapter(new Stream);
                $session->start();
 
                return $session;
            });
 
            $di->setShared('sessionBag', function  ()  {
                $sessionBag = new Manager;
                return new Bag($sessionBag, 'controller.persistent');
            });
 
            $di->setShared('router', function () {
                $router = include CONFIG_PATH . '/Router.php';
                Event::trigger('onBeforeServiceSetRouter', [$router], ['System', 'Cms']);
 
                return $router;
            });
 
            $di->getShared('crypt')
                ->setCipher('aes-256-ctr')
                ->setKey($config->path('SECRET.CRYPT_KEY'));
            $di->getShared('dispatcher')
                ->setEventsManager($di->getShared('eventsManager'));
            $di->setShared('view', ViewBase::getInstance($di));
 
            // Initialise config data
            self::$config = new Registry($config->toArray());
 
            // Initialise application
            self::$application = new CmsApplication($di);
 
            // Initialise languages
            Language::initialise();
        }
 
        return self::$application;
    }
 
    public static function getConfig()
    {
        return self::$config;
    }
 
    public static function getService($name, $parameters = null)
    {
        $di = self::getApplication()->getDI();
 
        switch ($name) {
            case 'url':
            case 'view':
            case 'db':
            case 'modelsMetadata':
            case 'modelsManager':
            case 'session':
            case 'flashSession':
            case 'cookies':
            case 'security':
            case 'dispatcher':
            case 'router':
            case 'filter':
            case 'crypt':
            case 'request':
            case 'response':
                return $di->getShared($name, $parameters);
        }
 
        return $di->get($name, $parameters);
    }
}
#1CLSystems\PhalCMS\Lib\debugVar
/var/www/html/korting-en-acties.nl/src/app/Lib/CmsApplication.php (154)
<?php
 
namespace CLSystems\PhalCMS\Lib;
 
use Phalcon\Autoload\Loader;
use Phalcon\Http\Response;
use Phalcon\Events\Event;
use Phalcon\Mvc\Application;
use Phalcon\Mvc\Dispatcher;
use Phalcon\Mvc\View;
use CLSystems\PhalCMS\Lib\Helper\Asset;
use CLSystems\PhalCMS\Lib\Helper\Config;
use CLSystems\PhalCMS\Lib\Helper\Uri;
use CLSystems\PhalCMS\Lib\Helper\State;
use CLSystems\PhalCMS\Lib\Helper\User;
use CLSystems\PhalCMS\Lib\Helper\Event as EventHelper;
use CLSystems\PhalCMS\Lib\Mvc\View\ViewBase;
use CLSystems\Php\Registry;
use MatthiasMullie\Minify;
use Exception;
 
class CmsApplication extends Application
{
    public function execute()
    {
        try {
            $eventsManager = $this->di->getShared('eventsManager');
            $eventsManager->attach('application:beforeSendResponse', $this);
            $plugins = EventHelper::getPlugins();
            $systemEvents = [
                'application:beforeSendResponse',
                'dispatch:beforeExecuteRoute',
                'dispatch:beforeException',
                'dispatch:beforeDispatch',
                'dispatch:afterDispatch',
                'dispatch:afterInitialize',
            ];
 
            foreach ($plugins['System'] as $className => $config) {
                $handler = EventHelper::getHandler($className, $config);
 
                foreach ($systemEvents as $systemEvent) {
                    $eventsManager->attach($systemEvent, $handler);
                }
            }
 
            // Update view dirs
            define('TPL_SITE_PATH', APP_PATH . '/Tmpl/Site/' . Config::get('siteTemplate', 'PhalCMS'));
            define('TPL_ADMINISTRATOR_PATH', APP_PATH . '/Tmpl/Administrator');
            define('TPL_SYSTEM_PATH', APP_PATH . '/Tmpl/System');
 
            if (Uri::isClient('site')) {
                $viewDirs = [
                    TPL_SITE_PATH . '/Tmpl/',
                    TPL_SITE_PATH . '/',
                ];
            } else {
                $viewDirs = [
                    TPL_ADMINISTRATOR_PATH . '/',
                ];
            }
 
            foreach (['System', 'Cms'] as $plgGroup) {
                if (isset($plugins[$plgGroup])) {
                    /**
                     * @var string $pluginClass
                     * @var Registry $pluginConfig
                     */
 
 
                    foreach ($plugins[$plgGroup] as $pluginClass => $pluginConfig) {
                        $pluginName = $pluginConfig->get('manifest.name');
                        $pluginPath = PLUGIN_PATH . '/' . $plgGroup . '/' . $pluginName;
                        $psrPaths = [];
 
                        if (is_dir($pluginPath . '/Tmpl')) {
                            $viewDirs[] = $pluginPath . '/Tmpl/';
                        }
 
                        if (is_dir($pluginPath . '/Lib')) {
                            $psrPaths['CLSystems\\PhalCMS\\Lib'] = $pluginPath . '/Lib';
                        }
 
                        if (is_dir($pluginPath . '/Widget')) {
                            $psrPaths['CLSystems\\PhalCMS\\Widget'] = $pluginPath . '/Widget';
                        }
 
                        if ($psrPaths) {
                            (new Loader)
                                ->setNamespaces($psrPaths, true)
                                ->register();
                        }
                    }
                }
            }
 
            $viewDirs[] = TPL_SYSTEM_PATH . '/';
 
            /** @var ViewBase $view */
            $view = $this->di->getShared('view');
            $requestUri = $_SERVER['REQUEST_URI'];
 
            if (Config::get('siteOffline') === 'Y'
                && !User::getInstance()->access('super')
            ) {
                $this->view->setMainView('Offline/Index');
 
                if (strpos($requestUri, '/user/') !== 0) {
                    $requestUri = '';
                }
            } else {
                $view->setMainView('Index');
            }
 
            $view->setViewsDir($viewDirs);
            $this->setEventsManager($eventsManager);
            $this->handle($requestUri)->send();
        } catch (Exception $e) {
            if (true === DEVELOPMENT_MODE) {
                // Let Phalcon Debug catch this
                throw $e;
            }
 
            try {
                if (User::getInstance()->access('super')) {
                    State::setMark('exception', $e);
                }
 
                /**
                 * @var Dispatcher $dispatcher
                 * @var View $view
                 */
                $dispatcher = $this->getDI()->getShared('dispatcher');
                $dispatcher->setControllerName(Uri::isClient('administrator') ? 'admin_error' : 'error');
                $dispatcher->setActionName('show');
                $dispatcher->setParams(
                    [
                        'code'    => $e->getCode(),
                        'message' => $e->getMessage(),
                    ]
                );
 
                $view = $this->getDI()->getShared('view');
                $view->start();
                $dispatcher->dispatch();
                $view->render(
                    $dispatcher->getControllerName(),
                    $dispatcher->getActionName(),
                    $dispatcher->getParams()
                );
                $view->finish();
                echo $view->getContent();
            } catch (Exception $e2) {
                debugVar($e2->getMessage());
            }
        }
    }
 
    protected function getCompressor($type)
    {
        if ('css' === $type) {
            $compressor = new Minify\CSS;
            $compressor->setImportExtensions(
                [
                    'gif' => 'data:image/gif',
                    'png' => 'data:image/png',
                    'svg' => 'data:image/svg+xml',
                ]
            );
        } else {
            $compressor = new Minify\JS;
        }
 
        return $compressor;
    }
 
    protected function compressAssets()
    {
        $basePath = PUBLIC_PATH . '/assets';
        $assets = Factory::getService('assets');
 
        foreach (Asset::getFiles() as $type => $files) {
            $fileName = md5(implode(':', $files)) . '.' . $type;
            $filePath = $basePath . '/compressed/' . $fileName;
            $fileUri = DOMAIN . '/assets/compressed/' . $fileName . (DEVELOPMENT_MODE ? '?' . time() : '');
            $hasAsset = is_file($filePath);
            $ucType = ucfirst($type);
            $addFunc = 'add' . $ucType;
 
            if ($hasAsset && !DEVELOPMENT_MODE) {
                call_user_func_array([$assets, $addFunc], [$fileUri, false]);
                continue;
            }
 
            $compressor = self::getCompressor($type);
 
            foreach ($files as $file) {
                $compressor->add($file);
            }
 
            if (!is_dir($basePath . '/compressed/')) {
                mkdir($basePath . '/compressed/', 0777, true);
            }
 
            if ($compressor->minify($filePath)) {
                echo $filePath;
                $chmodFile = chmod($filePath, 0777);
                if (false === $chmodFile)
                {
                    touch($filePath);
                    chmod($filePath, 0777);
                }
                call_user_func_array([$assets, $addFunc], [$fileUri, false]);
            }
 
            unset($compressor);
        }
    }
 
    public function beforeSendResponse(Event $event, CmsApplication $app, Response $response)
    {
        $request = $this->di->getShared('request');
 
        if ($request->isAjax()) {
            return;
        }
 
        /** @var Asset $assets */
        $this->compressAssets();
        $assets = $this->di->getShared('assets');
 
        // Compress CSS
        ob_start();
        $assets->outputCss();
        $assets->outputInlineCss();
        $content = str_replace('</head>', ob_get_clean() . '</head>', $response->getContent());
 
        // Compress JS
        ob_start();
        $assets->outputJs();
        $assets->outputInlineJs();
        $code = Asset::getCode() . ob_get_clean();
 
        // Extra code (in the footer)
        $content = str_replace('</body>', $code . '</body>', $content);
        $response->setContent($content);
    }
}
#2CLSystems\PhalCMS\Lib\CmsApplication->execute
/var/www/html/korting-en-acties.nl/public/index.php (17)
<?php
declare(strict_types=1);
 
error_reporting(E_ALL & ~E_DEPRECATED);
ini_set('display_errors', true);
 
ini_set('date.timezone', 'Europe/Amsterdam');
setlocale(LC_ALL, 'nl_NL.UTF-8', 'nl_NL@euro', 'nl_NL', 'dutch');
 
use CLSystems\PhalCMS\Lib\Factory;
 
define('BASE_PATH', dirname(__DIR__));
 
require_once BASE_PATH . '/src/app/Lib/Factory.php';
 
// Execute application
Factory::getApplication()->execute();
KeyValue
_url/merken/photo-univers-3
KeyValue
PATH/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/snap/bin
TEMP/var/www/clients/client1/web1/tmp
TMPDIR/var/www/clients/client1/web1/tmp
TMP/var/www/clients/client1/web1/tmp
HOSTNAME
USERweb1
HOME/var/www/clients/client1/web1
SCRIPT_NAME/index.php
REQUEST_URI/merken/photo-univers-3
QUERY_STRING_url=/merken/photo-univers-3
REQUEST_METHODGET
SERVER_PROTOCOLHTTP/1.1
GATEWAY_INTERFACECGI/1.1
REDIRECT_QUERY_STRING_url=/merken/photo-univers-3
REDIRECT_URL/merken/photo-univers-3
REMOTE_PORT8627
SCRIPT_FILENAME/var/www/clients/client1/web1/web/index.php
SERVER_ADMINwebmaster@korting-en-acties.nl
CONTEXT_DOCUMENT_ROOT/var/www/clients/client1/web1/web
CONTEXT_PREFIX
REQUEST_SCHEMEhttps
DOCUMENT_ROOT/var/www/clients/client1/web1/web
REMOTE_ADDR216.73.217.105
SERVER_PORT443
SERVER_ADDR192.168.2.16
SERVER_NAMEkorting-en-acties.nl
SERVER_SOFTWAREApache
SERVER_SIGNATURE
HTTP_HOSTkorting-en-acties.nl
HTTP_ACCEPT_ENCODINGgzip, br, zstd, deflate
HTTP_COOKIEPHPSESSID=8skbf12fmdqp2oeqd6e8np5m3q; cms.site.language=aCghyXMIA0dRGyDCDFhcP%2BhDN1SzB5igh5YKlekI6CYYAHID%2FR4TvAUEppgIqYuD3tvZ1%2Fw%3D
HTTP_USER_AGENTMozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
HTTP_ACCEPT*/*
proxy-nokeepalive1
SSL_TLS_SNIkorting-en-acties.nl
HTTPSon
REDIRECT_STATUS200
REDIRECT_SSL_TLS_SNIkorting-en-acties.nl
REDIRECT_HTTPSon
FCGI_ROLERESPONDER
PHP_SELF/index.php
REQUEST_TIME_FLOAT1784990702.2913
REQUEST_TIME1784990702
#Path
0/var/www/html/korting-en-acties.nl/public/index.php
1/var/www/html/korting-en-acties.nl/src/app/Lib/Factory.php
2/var/www/html/korting-en-acties.nl/src/app/Config/Define.php
3/var/www/html/korting-en-acties.nl/src/app/Config/Loader.php
4/var/www/html/korting-en-acties.nl/vendor/autoload.php
5/var/www/html/korting-en-acties.nl/vendor/composer/autoload_real.php
6/var/www/html/korting-en-acties.nl/vendor/composer/platform_check.php
7/var/www/html/korting-en-acties.nl/vendor/composer/ClassLoader.php
8/var/www/html/korting-en-acties.nl/vendor/composer/autoload_static.php
9/var/www/html/korting-en-acties.nl/vendor/ralouphie/getallheaders/src/getallheaders.php
10/var/www/html/korting-en-acties.nl/vendor/symfony/polyfill-intl-normalizer/bootstrap.php
11/var/www/html/korting-en-acties.nl/vendor/symfony/polyfill-intl-normalizer/bootstrap80.php
12/var/www/html/korting-en-acties.nl/vendor/guzzlehttp/psr7/src/functions_include.php
13/var/www/html/korting-en-acties.nl/vendor/guzzlehttp/psr7/src/functions.php
14/var/www/html/korting-en-acties.nl/vendor/myclabs/deep-copy/src/DeepCopy/deep_copy.php
15/var/www/html/korting-en-acties.nl/vendor/symfony/deprecation-contracts/function.php
16/var/www/html/korting-en-acties.nl/vendor/symfony/polyfill-php80/bootstrap.php
17/var/www/html/korting-en-acties.nl/vendor/phpunit/phpunit/src/Framework/Assert/Functions.php
18/var/www/html/korting-en-acties.nl/vendor/symfony/polyfill-mbstring/bootstrap.php
19/var/www/html/korting-en-acties.nl/vendor/symfony/polyfill-mbstring/bootstrap80.php
20/var/www/html/korting-en-acties.nl/vendor/symfony/polyfill-php72/bootstrap.php
21/var/www/html/korting-en-acties.nl/vendor/symfony/polyfill-ctype/bootstrap.php
22/var/www/html/korting-en-acties.nl/vendor/symfony/polyfill-ctype/bootstrap80.php
23/var/www/html/korting-en-acties.nl/vendor/guzzlehttp/promises/src/functions_include.php
24/var/www/html/korting-en-acties.nl/vendor/guzzlehttp/promises/src/functions.php
25/var/www/html/korting-en-acties.nl/vendor/symfony/polyfill-intl-grapheme/bootstrap.php
26/var/www/html/korting-en-acties.nl/vendor/symfony/polyfill-intl-idn/bootstrap.php
27/var/www/html/korting-en-acties.nl/vendor/guzzlehttp/guzzle/src/functions_include.php
28/var/www/html/korting-en-acties.nl/vendor/guzzlehttp/guzzle/src/functions.php
29/var/www/html/korting-en-acties.nl/vendor/symfony/polyfill-php73/bootstrap.php
30/var/www/html/korting-en-acties.nl/vendor/symfony/string/Resources/functions.php
31/var/www/html/korting-en-acties.nl/vendor/google/apiclient-services/autoload.php
32/var/www/html/korting-en-acties.nl/vendor/phpseclib/phpseclib/phpseclib/bootstrap.php
33/var/www/html/korting-en-acties.nl/vendor/symfony/polyfill-iconv/bootstrap.php
34/var/www/html/korting-en-acties.nl/vendor/codeception/codeception/functions.php
35/var/www/html/korting-en-acties.nl/vendor/google/apiclient/src/aliases.php
36/var/www/html/korting-en-acties.nl/vendor/google/apiclient/src/Client.php
37/var/www/html/korting-en-acties.nl/vendor/google/apiclient/src/Service.php
38/var/www/html/korting-en-acties.nl/vendor/google/apiclient/src/AccessToken/Revoke.php
39/var/www/html/korting-en-acties.nl/vendor/google/apiclient/src/AccessToken/Verify.php
40/var/www/html/korting-en-acties.nl/vendor/google/apiclient/src/Model.php
41/var/www/html/korting-en-acties.nl/vendor/google/apiclient/src/Utils/UriTemplate.php
42/var/www/html/korting-en-acties.nl/vendor/google/apiclient/src/AuthHandler/Guzzle6AuthHandler.php
43/var/www/html/korting-en-acties.nl/vendor/google/apiclient/src/AuthHandler/Guzzle7AuthHandler.php
44/var/www/html/korting-en-acties.nl/vendor/google/apiclient/src/AuthHandler/Guzzle5AuthHandler.php
45/var/www/html/korting-en-acties.nl/vendor/google/apiclient/src/AuthHandler/AuthHandlerFactory.php
46/var/www/html/korting-en-acties.nl/vendor/google/apiclient/src/Http/Batch.php
47/var/www/html/korting-en-acties.nl/vendor/google/apiclient/src/Http/MediaFileUpload.php
48/var/www/html/korting-en-acties.nl/vendor/google/apiclient/src/Http/REST.php
49/var/www/html/korting-en-acties.nl/vendor/google/apiclient/src/Task/Retryable.php
50/var/www/html/korting-en-acties.nl/vendor/google/apiclient/src/Task/Exception.php
51/var/www/html/korting-en-acties.nl/vendor/google/apiclient/src/Exception.php
52/var/www/html/korting-en-acties.nl/vendor/google/apiclient/src/Task/Runner.php
53/var/www/html/korting-en-acties.nl/vendor/google/apiclient/src/Collection.php
54/var/www/html/korting-en-acties.nl/vendor/google/apiclient/src/Service/Exception.php
55/var/www/html/korting-en-acties.nl/vendor/google/apiclient/src/Service/Resource.php
56/var/www/html/korting-en-acties.nl/vendor/google/apiclient/src/Task/Composer.php
57/var/www/html/korting-en-acties.nl/vendor/voku/portable-utf8/bootstrap.php
58/var/www/html/korting-en-acties.nl/vendor/voku/portable-utf8/src/voku/helper/Bootup.php
59/var/www/html/korting-en-acties.nl/vendor/voku/portable-utf8/src/voku/helper/UTF8.php
60/var/www/html/korting-en-acties.nl/vendor/clsystems/php-registry/src/Registry.php
61/var/www/html/korting-en-acties.nl/src/app/Lib/Helper/Config.php
62/var/www/html/korting-en-acties.nl/src/app/Lib/Helper/Asset.php
63/var/www/html/korting-en-acties.nl/src/app/Lib/Mvc/View/ViewBase.php
64/var/www/html/korting-en-acties.nl/src/app/Lib/Helper/Volt.php
65/var/www/html/korting-en-acties.nl/src/app/Lib/CmsApplication.php
66/var/www/html/korting-en-acties.nl/src/app/Lib/Helper/Language.php
67/var/www/html/korting-en-acties.nl/src/app/Lib/Helper/FileSystem.php
68/var/www/html/korting-en-acties.nl/src/app/Language/de-DE/Locale.php
69/var/www/html/korting-en-acties.nl/src/app/Language/en-GB/Locale.php
70/var/www/html/korting-en-acties.nl/src/app/Language/nl-NL/Locale.php
71/var/www/html/korting-en-acties.nl/src/app/Lib/Helper/Uri.php
72/var/www/html/korting-en-acties.nl/src/app/Language/nl-NL/nl-NL.php
73/var/www/html/korting-en-acties.nl/src/app/Lib/Helper/Event.php
74/var/www/html/korting-en-acties.nl/src/app/Lib/Mvc/Model/Config.php
75/var/www/html/korting-en-acties.nl/src/app/Lib/Mvc/Model/ModelBase.php
76/var/www/html/korting-en-acties.nl/src/app/Lib/Helper/User.php
77/var/www/html/korting-en-acties.nl/src/app/Lib/Helper/State.php
78/var/www/html/korting-en-acties.nl/src/app/Lib/Mvc/Model/User.php
Memory
Usage2097152
KeyValue
0ErrorController handler class cannot be loaded