Produkt individualisierbar
Artikel-Nr. T015022 / Herstellernr. 335110411094

BLAKLADER Pulloverjacke

Verfügbare Größen
M
L
S
XL
UVP
77,70 €
BLAKLADER Pulloverjacke
Produktbeschreibung
Reißverschluss vorne. Zwei Seitentaschen und eine Brusttasche mit Ausweistasche. Gerippte Ärmelbündchen und Jackenbund.
Materialtext
80% cotton, 20% polyester, terry knit 360g/m2
Größentabelle
Timo Kader beim Kochen in der einer Küche
let's rock your look
Ideen ohne Limit Möglichkeiten der individualisierung
create your own brand
Du hast eigene Designs und brauchst Support bei der Umsetzung? deine eigene Kollektion
Whoops! There was an error.
PDOException (1040)
SQLSTATE[HY000] [1040] Too many connections PDOException thrown with message "SQLSTATE[HY000] [1040] Too many connections" Stacktrace: #7 PDOException in /var/www/html/releases/20260609_155504_2026.06.2-67f3a5c1d/dc/common/classes/PDOQueryWrapper.php:83 #6 PDO:__construct in /var/www/html/releases/20260609_155504_2026.06.2-67f3a5c1d/dc/common/classes/PDOQueryWrapper.php:83 #5 DynCom\dc\common\classes\PDOQueryWrapper:__construct in /var/www/html/releases/20260609_155504_2026.06.2-67f3a5c1d/dc/common/common_functions.inc.php:5443 #4 get_false_password_login_counter in /var/www/html/releases/20260609_155504_2026.06.2-67f3a5c1d/module/dcshop/siteparts/login/shop_login.php:160 #3 shop_login_show in /var/www/html/releases/20260609_155504_2026.06.2-67f3a5c1d/dc/frontend/frontend_functions.inc.php:818 #2 show_component_content in /var/www/html/releases/20260609_155504_2026.06.2-67f3a5c1d/dc/frontend/frontend_functions.inc.php:53 #1 get_content in /var/www/html/releases/20260609_155504_2026.06.2-67f3a5c1d/dc/frontend/frontend_catalog.php:666 #0 require_once in /var/www/html/releases/20260609_155504_2026.06.2-67f3a5c1d/dc/frontend/frontend.php:203
Stack frames (8)
7
PDOException
/dc/common/classes/PDOQueryWrapper.php:83
6
PDO __construct
/dc/common/classes/PDOQueryWrapper.php:83
5
DynCom\dc\common\classes\PDOQueryWrapper __construct
/dc/common/common_functions.inc.php:5443
4
get_false_password_login_counter
/module/dcshop/siteparts/login/shop_login.php:160
3
shop_login_show
/dc/frontend/frontend_functions.inc.php:818
2
show_component_content
/dc/frontend/frontend_functions.inc.php:53
1
get_content
/dc/frontend/frontend_catalog.php:666
0
require_once
/dc/frontend/frontend.php:203
/var/www/html/releases/20260609_155504_2026.06.2-67f3a5c1d/dc/common/classes/PDOQueryWrapper.php
     * @param string $hostName
     * @param int $portNumber
     * @param string $dbName
     * @param string $userName
     * @param string $password
     * @param array $optionsArray
     */
    public function __construct($hostName, $portNumber, $dbName, $userName, $password, ?array $optionsArray = NULL)
    {
 
        $this->hostName = ($hostName ? (string)$hostName : 'localhost');
        $this->portNumber = ($portNumber ? (int)$portNumber : 3306);
        $this->dbName = ($dbName ? (string)$dbName : 'dcshop');
        $this->userName = ($userName ? (string)$userName : 'root');
        $this->password = ($password ? (string)$password : '123');
        $this->optionsArray = ((is_array($optionsArray) && count($optionsArray) > 0) ? $optionsArray : [\PDO::ATTR_ERRMODE => \PDO::ERRMODE_EXCEPTION]);
 
        $this->dsn = 'mysql:dbname=' . $this->dbName . ';host=' . $this->hostName . ';port=' . (string)$this->portNumber . ';charset=utf8mb4';
 
        $pdo = new PDO($this->dsn, $this->userName, $this->password, $this->optionsArray);
 
        if (!$pdo->exec('SET NAMES utf8mb4') || !$pdo->exec('SET CHARACTER SET utf8mb4')) {
            $pdoErrorInfo = $pdo->errorInfo();
            $this->errorState = TRUE;
            $this->errorMessage = print_r($pdoErrorInfo, 1);
        }
 
        $this->connectionObject = $pdo;
        $this->errorState = FALSE;
        $this->errorMessage = '';
 
        $this->unfinishedQuery = [];
        $this->unfinishedQueryGroups = [];
 
        $this->_setComparisonValidationArray();
 
    }
 
    /**
     * @param $hostName
/var/www/html/releases/20260609_155504_2026.06.2-67f3a5c1d/dc/common/classes/PDOQueryWrapper.php
     * @param string $hostName
     * @param int $portNumber
     * @param string $dbName
     * @param string $userName
     * @param string $password
     * @param array $optionsArray
     */
    public function __construct($hostName, $portNumber, $dbName, $userName, $password, ?array $optionsArray = NULL)
    {
 
        $this->hostName = ($hostName ? (string)$hostName : 'localhost');
        $this->portNumber = ($portNumber ? (int)$portNumber : 3306);
        $this->dbName = ($dbName ? (string)$dbName : 'dcshop');
        $this->userName = ($userName ? (string)$userName : 'root');
        $this->password = ($password ? (string)$password : '123');
        $this->optionsArray = ((is_array($optionsArray) && count($optionsArray) > 0) ? $optionsArray : [\PDO::ATTR_ERRMODE => \PDO::ERRMODE_EXCEPTION]);
 
        $this->dsn = 'mysql:dbname=' . $this->dbName . ';host=' . $this->hostName . ';port=' . (string)$this->portNumber . ';charset=utf8mb4';
 
        $pdo = new PDO($this->dsn, $this->userName, $this->password, $this->optionsArray);
 
        if (!$pdo->exec('SET NAMES utf8mb4') || !$pdo->exec('SET CHARACTER SET utf8mb4')) {
            $pdoErrorInfo = $pdo->errorInfo();
            $this->errorState = TRUE;
            $this->errorMessage = print_r($pdoErrorInfo, 1);
        }
 
        $this->connectionObject = $pdo;
        $this->errorState = FALSE;
        $this->errorMessage = '';
 
        $this->unfinishedQuery = [];
        $this->unfinishedQueryGroups = [];
 
        $this->_setComparisonValidationArray();
 
    }
 
    /**
     * @param $hostName
/var/www/html/releases/20260609_155504_2026.06.2-67f3a5c1d/dc/common/common_functions.inc.php
    $i = 0;
    foreach ($actualURLPartsQuery as $actualUrlPartQuery) {
        $actualUrlPartQuery = explode('=', $actualUrlPartQuery);
        if ($actualUrlPartQuery[0] === 'action' || $actualUrlPartQuery[0] === 'action_id') {
            unset($actualURLPartsQuery[$i]);
        }
        $i++;
    }
    return implode('&', $actualURLPartsQuery);
}
 
function get_false_password_login_counter($ipHash, $loginHash)
{
    $pdoHost = getenv('MAIN_MYSQL_DB_HOST');
    $pdoPort = getenv('MAIN_MYSQL_DB_PORT');
    $pdoUser = getenv('MAIN_MYSQL_DB_USER');
    $pdoPass = getenv('MAIN_MYSQL_DB_PASS');
    $pdoSchema = getenv('MAIN_MYSQL_DB_SCHEMA');
 
    $pdo = new \DynCom\dc\common\classes\PDOQueryWrapper($pdoHost, $pdoPort, $pdoSchema, $pdoUser, $pdoPass);
 
    $prepStatement = " 
            
            SELECT 
    false_login.*
FROM
    false_login
WHERE
    ( false_login.ip_hash = :ip_hash  OR false_login.login_hash = :login_hash )
        ";
    $params = [
        [':ip_hash', $ipHash, PDO::PARAM_STR],
        [':login_hash', $loginHash, PDO::PARAM_STR],
    ];
    $pdo->setQuery($prepStatement);
    $pdo->prepareQuery();
    $pdo->bindParameters($params);
    $pdo->executePreparedStatement();
    $result = $pdo->getResultArray();
    return $result;
/var/www/html/releases/20260609_155504_2026.06.2-67f3a5c1d/module/dcshop/siteparts/login/shop_login.php
                case 2: //Kunden-Nr., Login & Passwort
                    $field_1_html = $customer_no_field;
                    $field_2_html = $login_field;
                    $loginDataType= ($_POST['input_login'] ?? '') . "_" . ($_POST['input_customer_no'] ?? '');
                    break;
                case 3: //Kunden-Nr., E-Mail & Passwort
                    $field_1_html = $customer_no_field;
                    $field_2_html = $email_field;
                    $loginDataType= $_POST['input_email'] ?? '';
                    break;
                case 4: //Kunden-Nr. & Passwort
                    $field_1_html = $customer_no_field;
                    $loginDataType= $_POST['input_customer_no'] ?? '';
                    break;
                default:
                    break;
            }
 
 
            $falseLoginData = get_false_password_login_counter(md5((string) getUserIP()),md5((string) $loginDataType));
            $now = time();
            $dataBaseCounter = 0;
            $blockTime = $now;
            $blockErrorCounter = 0;
 
            if(count($falseLoginData) > 0)
            {
                $dataBaseCounter = $falseLoginData[0]['total_counter'];
                $blockTime = $falseLoginData[0]['next_login_time'];
                $blockErrorCounter = $falseLoginData[0]['block_counter'];
            }
 
            $counter = $dataBaseCounter / $GLOBALS['shop_setup']['allowed_false_login_times'];
            $counter = (int)$counter;
            $waitingSeconds = $counter * $GLOBALS['shop_setup']['false_login_waiting_seconds'];
 
 
 
            if($counter != $blockErrorCounter)
            {
/var/www/html/releases/20260609_155504_2026.06.2-67f3a5c1d/dc/frontend/frontend_functions.inc.php
            if ($GLOBALS["live_edit_mode"] === TRUE) {
                $translation = \DynCom\dc\common\classes\Registry::get("translation");
                echo "
                    <span class=\"live_edit_overlay\" data-component=\"true\" data-componentid=\"" . $sitepart['main_component_id'] . "\" data-pageid=\"" . (isset($GLOBALS['shopping_world_page_id']) && !empty($GLOBALS['shopping_world_page_id']) ? $GLOBALS['shopping_world_page_id'] : $GLOBALS["page"]['id']) . "\">
                        " . $translation->get("edit_component") . "
                    </span>";
            }
        }
 
        if ((int)$sitepart['main_sitepart_id'] > 0) {
            // anzeige eines siteparts im baustein
            $sitepartData = $allSiteparts[$sitepart['main_sitepart_id']];
            require_once(realpath(MODULE_PATH . $sitepartData['folder']) . DIRECTORY_SEPARATOR . $sitepartData['code'] . ".php");
            $function = $sitepartData['code'] . "_show";
            $reflection = new ReflectionFunction($function);
            $noOfParams = $reflection->getNumberOfParameters();
            if($noOfParams > 1) {
                $function($sitepart['main_sitepart_header_id'], $IOCContainer);
            } else {
                $function($sitepart['main_sitepart_header_id']);
            }
        } elseif ((int)$sitepart['main_collection_list'] == 2) {
            // anzeige einer kollektionsvorschau im baustein
            show_collection_setup_content($sitepart, "main_component_collection_group_link");
        }
 
        $currentComponent = $sitepart['main_component_id'];
    }
    echo "</div>";
}
 
function create_includes( $main_layout_id, $page_id, $type ) {
    $query             = "
        SELECT id, path, default_active, type
        FROM main_layout_inclusions
        WHERE main_layout_id = '" . $main_layout_id . "' AND type = '" . $type . "'
        ORDER BY sorting ASC";
    $result            = mysqli_query($GLOBALS['mysql_con'], $query);
    $layout_inclusions = [];
    while ($row = mysqli_fetch_assoc($result)) {
/var/www/html/releases/20260609_155504_2026.06.2-67f3a5c1d/dc/frontend/frontend_functions.inc.php
        $GLOBALS['shopping_world_page_id'] = $page_id;
    }
    if (null !== $category && !empty($category["in_use_with_page_id_b2b"]) && empty($_GET["card"]) && (int)$GLOBALS["shop"]["shop_typ"] === 0) {
        $page_id      = (int)$category["in_use_with_page_id_b2b"];
        $GLOBALS['shopping_world_page_id'] = $page_id;
    }
    if ($page_id <= 0) {
        return;
    }
 
    $layout_area_code = $layout_area_id;
    $layout_area_entry_query  = "SELECT id FROM main_layout_area WHERE code = '" . $layout_area_id . "' AND main_layout_id = '" . $GLOBALS["layout"]["id"] . "'";
    $layout_area_entry_result = mysqli_query($GLOBALS['mysql_con'], $layout_area_entry_query);
 
    $layout_area_entry = mysqli_fetch_array($layout_area_entry_result);
    $layout_area_id    = $layout_area_entry["id"];
 
 
 
    show_component_content((int)$layout_area_id, $IOCContainer, $layout_area_code, $page_id);
    if ($is_component_only === TRUE) {
        return;
    }
 
 
    $query  = "SELECT * FROM main_page_link WHERE main_page_id = " . (int)$page_id . " AND main_page_link_parent_id = 0 AND layout_area_id = " . (int)$layout_area_id . " AND active = 1 ORDER BY sorting ASC";
    $result = mysqli_query($GLOBALS['mysql_con'], $query);
    if (mysqli_num_rows($result) > 0) {
 
 
        while ($sitepart = mysqli_fetch_array($result)) {
            $backGroundImagePath = $sitepart['background_image_path'];
 
            if ($sitepart['main_page_group'] == 1) {
                show_group_content($sitepart, $backGroundImagePath, $IOCContainer);
                continue;
            }
 
            // layout klassen wrapper anzeigen
            $layoutClassIds = get_content_layout_classes($sitepart);
/var/www/html/releases/20260609_155504_2026.06.2-67f3a5c1d/dc/frontend/frontend_catalog.php
        </div>
        <div id="flashMessages_success">
            <?php
            foreach ($success_flashmsgs as $msg) {
                ?>
                <div class="flashMessage flashMessage_success"><?= $msg ?></div>
                <?
            }
            ?>
        </div>
    </div>
    <div class="modal fade form-label-left" id="lightbox_login" tabindex="-1" role="dialog"
         aria-labelledby="myModalLabel">
        <div class="modal-dialog" role="document">
            <div class="modal-content">
                <div class="modal-header">
                    <button type="button" class="close" data-dismiss="modal" aria-label="Close"><i class="icon icon-close"></i></button>
                </div>
                <div class="modal-body">
                    <? get_content("lightbox_login", TRUE, $IOCContainer); ?>
                </div>
            </div>
        </div>
    </div>
    <div class="modal fade form-label-left" id="lightbox_register" tabindex="-1" role="dialog"
         aria-labelledby="myModalLabel">
        <div class="modal-dialog modal-lg" role="document">
            <div class="modal-content">
                <div class="modal-header">
                    <button type="button" class="close" data-dismiss="modal" aria-label="Close"><i class="icon icon-close"></i></button>
                </div>
                <div class="modal-body">
                    <? get_content("lightbox_register", TRUE, $IOCContainer); ?>
                </div>
            </div>
        </div>
    </div>
 
    <div id="contactBox">
        <div class="inner">
/var/www/html/releases/20260609_155504_2026.06.2-67f3a5c1d/dc/frontend/frontend.php
$displayErrorsString = $displayErrors ? 'On' : 'Off';
ini_set('display_errors', $displayErrorsString);
mb_internal_encoding('UTF-8');
 
check_and_redirect_tracking_api_requests($trackingAPIRequestURLPattern, $trackingAPIIndexFilePath);
 
dcBasicAuth();
try {
    require_once __DIR__ . DIRECTORY_SEPARATOR . 'start.inc.php';
    require_once __DIR__ . DIRECTORY_SEPARATOR . 'check_ip_switch.php';
    require_once __DIR__ . DIRECTORY_SEPARATOR . 'check_language_switch.php';
 
    // Alias-Router hat einen POST-Handler gemappt (z.B. Form-Submit) →
    // nach Bootstrap einbinden, bevor das Layout-Template rendert.
    if ($_aliasMatchedHandler !== null && ($_SERVER['REQUEST_METHOD'] ?? '') === 'POST') {
        require_once dirname(__DIR__, 2) . '/' . $_aliasMatchedHandler;
        exit;
    }
 
    require_once($GLOBALS["layout"]["frontend_include"]);
    require_once __DIR__ . DIRECTORY_SEPARATOR . 'close.inc.php';
} catch (Throwable $t) {
    $errorHandler->handleThrowable($t);
    if (!$errorHandler->isUsingWhoops()) {
        http_response_code(500);
        header('Location: /500.html');
    }
    return;
}
 
function extract_request_uri_variables($request = null)
{
    extract_site_request_uri_variables($request);
}
 
function extract_site_request_uri_variables($request = null)
{
    $GLOBALS['shop_setup']['show_short_url'] = (int)getenv('SHOW_SHORT_URL');
    // language code is not mandatory
    $site_base_pattern = '#/([^/?]+)/([^/?]+){0,1}/{0,1}([^/?]+/){0,1}([^/?]+/){0,1}([^/?]+/){0,1}([^/?]+/){0,1}([^/?]+/){0,1}#';

Environment & details:

Key Value
site catalog
language de
card 6831
level_1 shop
slevel_1 marken_intern
level_5
level_4
level_3
level_2
slevel_2 blaklader
Key Value
input_auto_customer_no
input_auto_customer_name
input_auto_user_name
input_auto_user_email
input_item_no T015022
input_description BLAKLADER Pulloverjacke
input_attribute_color_code Weiß/Grau
Key Value
psr Array ( )
empty
Key Value
pass_auth
check_ip_switch
current_site_code catalog
search_counter 1
current_item_category Array ( [id] => 598 [company] => Mictex OHG [shop_code] => B2B [language_code] => DEU [line_no] => 179882 [parent_line_no] => 119375 [sorting] => 16 [level] => 2 [name] => Blaklader [root_line_no] => 119375 [code] => blaklader [show_random_items] => 0 [no_of_random_items] => 0 [show_campain_items] => 2 [no_of_campain_items] => 8 [show_all_items] => 2 [user_sorting] => 1 [sort_items] => 0 [show_sub_categorys] => 0 [category_picture] => 399105_blaklader.jpeg [category_icon] => [category_description] => [category_description_2] => [active] => 1 [validity_from] => [validity_to] => [promotion_active] => 0 [promotion_validity_from] => [promotion_validity_to] => [promotion_label] => 0 [promotion_description] => [search_query] => [meta_keywords] => [meta_description] => [meta_description_webform] => [site_titel] => [filter_active] => 0 [max_no_of_filter] => 0 [url] => [marketplace_category_id] => [root_code] => [parent_code] => [category_description_excerpt] => [g_product_category] => [in_use_with_page_id] => 0 [in_use_with_page_id_b2b] => 0 [hide_category_sub_navigation] => 0 [to_delete] => 0 )
dc-one_4defb94402ea278a3534243922c91ed7_MSGBAG Array ( [info] => Array ( ) [notice] => Array ( ) [warning] => Array ( ) [error] => Array ( ) [success] => Array ( ) )
Key Value
REDIRECT_HTTPS on
REDIRECT_HTTP_AUTHORIZATION
REDIRECT_STATUS 200
HTTPS on
HTTP_AUTHORIZATION
HTTP_HOST staging.mictex-share.de
HTTP_X_REAL_IP 216.73.217.84
HTTP_X_FORWARDED_FOR 216.73.217.84
HTTP_X_FORWARDED_PROTO https
HTTP_X_FORWARDED_HOST staging.mictex-share.de
HTTP_CONNECTION close
HTTP_ACCEPT */*
HTTP_USER_AGENT Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)
HTTP_ACCEPT_ENCODING gzip, br, zstd, deflate
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
SERVER_SIGNATURE <address>Apache/2.4.66 (Debian) Server at staging.mictex-share.de Port 80</address>
SERVER_SOFTWARE Apache/2.4.66 (Debian)
SERVER_NAME staging.mictex-share.de
SERVER_ADDR 172.18.0.7
SERVER_PORT 80
REMOTE_ADDR 172.18.0.1
DOCUMENT_ROOT /var/www/html/current
REQUEST_SCHEME http
CONTEXT_PREFIX
CONTEXT_DOCUMENT_ROOT /var/www/html/current
SERVER_ADMIN webmaster@localhost
SCRIPT_FILENAME /var/www/html/current/dc/frontend/frontend.php
REMOTE_PORT 53408
REDIRECT_URL /catalog/de/blaklader-pulloverjacke-p6831/
GATEWAY_INTERFACE CGI/1.1
SERVER_PROTOCOL HTTP/1.1
REQUEST_METHOD GET
QUERY_STRING
REQUEST_URI /catalog/de/marken_intern/blaklader/
SCRIPT_NAME /dc/frontend/frontend.php
PHP_SELF /dc/frontend/frontend.php
REQUEST_TIME_FLOAT 1781358357.24
REQUEST_TIME 1781358357
argv Array ( )
argc 0
APP_ENV staging
PROJECT_ROOT
TEXT_PROVIDER PDO
MAIN_MYSQL_DB_HOST mariadb
MAIN_MYSQL_DB_PORT 3306
MAIN_MYSQL_DB_USER shop_core
MAIN_MYSQL_DB_PASS cgRh8N*_6xAG
MAIN_MYSQL_DB_SCHEMA shop_staging
LOG_LEVEL DEBUG
APP_LOG_LEVEL DEBUG
FRONTEND_LOG_PATH
LOGLEVEL_GLOBAL
LOGLEVEL_HOOK
LOG_QUERIES 1
QUERY_LOG_TABLES
QUERY_LOG_METHODS
DISPLAY_ERRORS 0
HIDE_ERROR_PAGE 1
WHOOPS_SEVERITIES error
SHOP_PASSWORD 7eK.Mebjb3
BASIC_AUTH_DOMAIN dynamics-shop.ddev.site
BASIC_AUTH_USER_INTERNAL dc
BASIC_AUTH_USER_PASSWORD_INTERNAL ICG#2013x
BASIC_AUTH_USER_EXTERNAL CUSTOMER
BASIC_AUTH_USER_PASSWORD_EXTERNAL CUSTOMER_PASSWORD
PASSWORD_STRENGTH_LENGTH
PASSWORD_STRENGTH 8
COOKIE_CONSENT_REQUIRED 1
COOKIE_CONSENT_COOKIE_NAME cookie_consent
COOKIE_CONSENT_EXPIRATION_DAYS 356
USE_SECURE_COOKIES 0
USE_NEW_IMAGE_COMPRESSION 1
IMAGE_COMPRESSION_LEVEL 95
ALLOW_COMPERESSED_FILES
SHOW_SHORT_URL 1
MAIN_SMTP_MAILER_IP mailpit
MAIN_SMTP_MAILER_PORT 1025
FTP_HOST ftp-host
FTP_USER webXXX
FTP_PASS !§123abcABC
GOOGLE_MAPS_API_KEY
MODULE_CUSTOMER_ADDRESS_ENABLED
ITEM_RATING_RECAPTCHA_ACTIVE 0
NEWSLETTER_VERSION 0
ACTIVE_MODULE_SUBSCRIPTIONS 1
BC_MONITORING false
SENTRY_DSN https://5e17fdd3d2844640894501aff368cf45@wintermute.mictex-share.de/1
SENTRY_ENVIRONMENT staging
SENTRY_RELEASE
SENTRY_TRACES_SAMPLE_RATE 0.01
ORIGINAL_REQUEST_URI /catalog/de/blaklader-pulloverjacke-p6831/
TAXJAR_API_AUTH
US_NEXUS_ZIP 00000
US_NEXUS_STATE XX
US_NEXUS_CITY
US_NEXUS_STREET
Key Value
HOSTNAME cf66d278f3c7
PHP_VERSION 8.4.20
APACHE_CONFDIR /etc/apache2
PHP_INI_DIR /usr/local/etc/php
GPG_KEYS AFD8691FDAEDF03BDF6E460563F15A9B715376CA 9D7F99A0CB8F05C8A6958D6256A97AF7600A39A6 0616E93D95AF471243E26761770426E17EBBB3DD
PHP_LDFLAGS -Wl,-O1 -pie
PWD /var/www/html
APACHE_LOG_DIR /var/log/apache2
LANG C
PHP_SHA256 e454c6f7c89a42f41ebb06dc5c3578e8c8b5f1a3f0da6675665affab04e221f7
APACHE_PID_FILE /var/run/apache2/apache2.pid
PHPIZE_DEPS autoconf dpkg-dev file g++ gcc libc-dev make pkg-config re2c
PHP_URL https://www.php.net/distributions/php-8.4.20.tar.xz
APACHE_RUN_GROUP www-data
APACHE_LOCK_DIR /var/lock/apache2
SHLVL 0
PHP_CFLAGS -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
APACHE_RUN_DIR /var/run/apache2
APACHE_ENVVARS /etc/apache2/envvars
APACHE_RUN_USER www-data
PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PHP_ASC_URL https://www.php.net/distributions/php-8.4.20.tar.xz.asc
PHP_CPPFLAGS -fstack-protector-strong -fpic -fpie -O2 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
APP_ENV staging
PROJECT_ROOT
TEXT_PROVIDER PDO
MAIN_MYSQL_DB_HOST mariadb
MAIN_MYSQL_DB_PORT 3306
MAIN_MYSQL_DB_USER shop_core
MAIN_MYSQL_DB_PASS cgRh8N*_6xAG
MAIN_MYSQL_DB_SCHEMA shop_staging
LOG_LEVEL DEBUG
APP_LOG_LEVEL DEBUG
FRONTEND_LOG_PATH
LOGLEVEL_GLOBAL
LOGLEVEL_HOOK
LOG_QUERIES 1
QUERY_LOG_TABLES
QUERY_LOG_METHODS
DISPLAY_ERRORS 0
HIDE_ERROR_PAGE 1
WHOOPS_SEVERITIES error
SHOP_PASSWORD 7eK.Mebjb3
BASIC_AUTH_DOMAIN dynamics-shop.ddev.site
BASIC_AUTH_USER_INTERNAL dc
BASIC_AUTH_USER_PASSWORD_INTERNAL ICG#2013x
BASIC_AUTH_USER_EXTERNAL CUSTOMER
BASIC_AUTH_USER_PASSWORD_EXTERNAL CUSTOMER_PASSWORD
PASSWORD_STRENGTH_LENGTH
PASSWORD_STRENGTH 8
COOKIE_CONSENT_REQUIRED 1
COOKIE_CONSENT_COOKIE_NAME cookie_consent
COOKIE_CONSENT_EXPIRATION_DAYS 356
USE_SECURE_COOKIES 0
USE_NEW_IMAGE_COMPRESSION 1
IMAGE_COMPRESSION_LEVEL 95
ALLOW_COMPERESSED_FILES
SHOW_SHORT_URL 1
MAIN_SMTP_MAILER_IP mailpit
MAIN_SMTP_MAILER_PORT 1025
FTP_HOST ftp-host
FTP_USER webXXX
FTP_PASS !§123abcABC
GOOGLE_MAPS_API_KEY
MODULE_CUSTOMER_ADDRESS_ENABLED
ITEM_RATING_RECAPTCHA_ACTIVE 0
NEWSLETTER_VERSION 0
ACTIVE_MODULE_SUBSCRIPTIONS 1
BC_MONITORING false
SENTRY_DSN https://5e17fdd3d2844640894501aff368cf45@wintermute.mictex-share.de/1
SENTRY_ENVIRONMENT staging
SENTRY_RELEASE
SENTRY_TRACES_SAMPLE_RATE 0.01
TAXJAR_API_AUTH
US_NEXUS_ZIP 00000
US_NEXUS_STATE XX
US_NEXUS_CITY
US_NEXUS_STREET
0. Whoops\Handler\PrettyPageHandler