ErrorController
Request
GET Parameters
No GET parameters
POST Parameters
No POST parameters
Uploaded Files
No files were uploaded
Request Attributes
Key | Value |
---|---|
_controller | "error_controller" |
_stopwatch_token | "a41fb6" |
exception | Twig\Error\RuntimeError {#3399 #message: "Variable "search_form" does not exist." #code: 0 #file: "/home/c9635817/public_html/attrait-shop.com/app/template/user_data/category.twig" #line: 101 -lineno: 101 -name: "@user_data/category.twig" -rawMessage: "Variable "search_form" does not exist." -sourcePath: "/home/c9635817/public_html/attrait-shop.com/app/template/user_data/category.twig" -sourceCode: """ {#\n This file is part of EC-CUBE\n \n Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.\n \n http://www.ec-cube.co.jp/\n \n For the full copyright and license information, please view the LICENSE\n file that was distributed with this source code.\n #}\n {% extends 'default_frame.twig' %}\n \n {% set body_class = 'product_page' %}\n \n {% block javascript %}\n <script>\n eccube.productsClassCategories = {\n {% for Product in pagination %}\n "{{ Product.id|escape('js') }}": {{ class_categories_as_json(Product)|raw }}{% if loop.last == false %}, {% endif %}\n {% endfor %}\n };\n \n $(function() {\n \n // 表示件数を変更\n $('.disp-number').change(function() {\n var dispNumber = $(this).val();\n $('#disp_number').val(dispNumber);\n $('#pageno').val(1);\n $("#form1").submit();\n });\n \n // 並び順を変更\n $('.order-by').change(function() {\n var orderBy = $(this).val();\n $('#orderby').val(orderBy);\n $('#pageno').val(1);\n $("#form1").submit();\n });\n \n $('.add-cart').on('click', function(e) {\n var $form = $(this).parents('li').find('form');\n \n // 個数フォームのチェック\n var $quantity = $form.parent().find('.quantity');\n if ($quantity.val() < 1) {\n $quantity[0].setCustomValidity('{{ '1以上で入力してください。'|trans }}');\n setTimeout(function() {\n loadingOverlay('hide');\n }, 100);\n return true;\n } else {\n $quantity[0].setCustomValidity('');\n }\n e.preventDefault();\n $.ajax({\n url: $form.attr('action'),\n type: $form.attr('method'),\n data: $form.serialize(),\n dataType: 'json',\n beforeSend: function(xhr, settings) {\n // Buttonを無効にする\n $('.add-cart').prop('disabled', true);\n }\n }).done(function(data) {\n // レスポンス内のメッセージをalertで表示\n $.each(data.messages, function() {\n $('#ec-modal-header').text(this);\n });\n \n $('.ec-modal').show()\n \n // カートブロックを更新する\n $.ajax({\n url: '{{ url('block_cart') }}',\n type: 'GET',\n dataType: 'html'\n }).done(function(html) {\n $('.ec-headerRole__cart').html(html);\n });\n }).fail(function(data) {\n alert('{{ 'カートへの追加に失敗しました。'|trans }}');\n }).always(function(data) {\n // Buttonを有効にする\n $('.add-cart').prop('disabled', false);\n });\n });\n });\n \n $('.ec-modal-wrap').on('click', function(e) {\n // モーダル内の処理は外側にバブリングさせない\n e.stopPropagation();\n });\n $('.ec-modal-overlay, .ec-modal, .ec-modal-close, .ec-inlineBtn--cancel').on('click', function() {\n $('.ec-modal').hide()\n });\n </script>\n {% endblock %}\n \n {% block main %}\n {% if search_form.category_id.vars.errors|length > 0 %}\n <div class="ec-searchnavRole">\n <p class="errormsg text-danger">{{ 'ご指定のカテゴリは存在しません'|trans }}</p>\n </div>\n {% else %}\n <div class="ec-searchnavRole">\n <form name="form1" id="form1" method="get" action="?">\n {% for item in search_form %}\n <input type="hidden" id="{{ item.vars.id }}"\n name="{{ item.vars.full_name }}"\n {% if item.vars.value is not empty %}value="{{ item.vars.value }}" {% endif %}/>\n {% endfor %}\n </form>\n <div class="ec-searchnavRole__topicpath">\n <ol class="ec-topicpath">\n <li class="ec-topicpath__item"><a href="{{ url('product_list') }}">{{ '全て'|trans }}</a>\n </li>\n {% if Category is not null %}\n {% for Path in Category.path %}\n <li class="ec-topicpath__divider">|</li>\n <li class="ec-topicpath__item{% if loop.last %}--active{% endif %}"><a\n href="{{ url('product_list') }}?category_id={{ Path.id }}">{{ Path.name }}</a>\n </li>\n {% endfor %}\n {% endif %}\n {% if search_form.vars.value and search_form.vars.value.name %}\n <li class="ec-topicpath__divider">|</li>\n <li class="ec-topicpath__item">{{ '「%name%」の検索結果'|trans({ '%name%': search_form.vars.value.name }) }}</li>\n {% endif %}\n </ol>\n </div>\n <div class="ec-searchnavRole__infos">\n <div class="ec-searchnavRole__counter">\n {% if pagination.totalItemCount > 0 %}\n {{ '<span class="ec-font-bold">%count%件</span><span>の商品が見つかりました</span>'|trans({ '%count%': pagination.totalItemCount })|raw }}\n {% else %}\n <span>{{ 'お探しの商品は見つかりませんでした'|trans }}</span>\n {% endif %}\n </div>\n {% if pagination.totalItemCount > 0 %}\n <div class="ec-searchnavRole__actions">\n <div class="ec-select">\n {{ form_widget(search_form.disp_number, {'id': '', 'attr': {'class': 'disp-number'}}) }}\n {{ form_widget(search_form.orderby, {'id': '', 'attr': {'class': 'order-by'}}) }}\n </div>\n </div>\n {% endif %}\n </div>\n </div>\n {% if pagination.totalItemCount > 0 %}\n <div class="ec-shelfRole">\n <ul class="ec-shelfGrid">\n {% for Product in pagination %}\n <li class="ec-shelfGrid__item">\n <a href="{{ url('product_detail', {'id': Product.id}) }}">\n <p class="ec-shelfGrid__item-image">\n <img src="{{ asset(Product.main_list_image|no_image_product, 'save_image') }}" alt="{{ Product.name }}" {% if loop.index > 5 %} loading="lazy"{% endif %}>\n </p>\n <p>{{ Product.name }}</p>\n {% if Product.description_list %}\n <p>{{ Product.description_list|raw|nl2br }}</p>\n {% endif %}\n <p class="price02-default">\n {% if Product.hasProductClass %}\n {% if Product.getPrice02Min == Product.getPrice02Max %}\n {{ Product.getPrice02IncTaxMin|price }}\n {% else %}\n {{ Product.getPrice02IncTaxMin|price }} ~ {{ Product.getPrice02IncTaxMax|price }}\n {% endif %}\n {% else %}\n {{ Product.getPrice02IncTaxMin|price }}\n {% endif %}\n </p>\n </a>\n \n {% if Product.stock_find %}\n {% set form = forms[Product.id] %}\n <form name="form{{ Product.id }}" id="productForm{{ Product.id }}" action="{{ url('product_add_cart', {id:Product.id}) }}" method="post">\n <div class="ec-productRole__actions">\n {% if form.classcategory_id1 is defined %}\n <div class="ec-select">\n {{ form_widget(form.classcategory_id1) }}\n {{ form_errors(form.classcategory_id1) }}\n </div>\n {% if form.classcategory_id2 is defined %}\n <div class="ec-select">\n {{ form_widget(form.classcategory_id2) }}\n {{ form_errors(form.classcategory_id2) }}\n </div>\n {% endif %}\n {% endif %}\n <div class="ec-numberInput"><span>{{ '数量'|trans }}</span>\n {{ form_widget(form.quantity, {'attr': {'class': 'quantity'}}) }}\n {{ form_errors(form.quantity) }}\n </div>\n </div>\n {{ form_rest(form) }}\n </form>\n <div class="ec-productRole__btn">\n <button type="submit" class="ec-blockBtn--action add-cart" data-cartid="{{ Product.id }}" form="productForm{{ Product.id }}">\n {{ 'カートに入れる'|trans }}\n </button>\n </div>\n {% else %}\n <div class="ec-productRole__btn">\n <button type="button" class="ec-blockBtn--action" disabled="disabled">\n {{ 'ただいま品切れ中です。'|trans }}\n </button>\n </div>\n {% endif %}\n </li>\n {% endfor %}\n </ul>\n </div>\n <div class="ec-modal">\n <div class="ec-modal-overlay">\n <div class="ec-modal-wrap">\n <span class="ec-modal-close"><span class="ec-icon"><img src="{{ asset('assets/icon/cross-dark.svg') }}" alt=""/></span></span>\n <div id="ec-modal-header" class="text-center">{{ 'カートに追加しました。'|trans }}</div>\n <div class="ec-modal-box">\n <div class="ec-role">\n <span class="ec-inlineBtn--cancel">{{ 'お買い物を続ける'|trans }}</span>\n <a href="{{ url('cart') }}" class="ec-inlineBtn--action">{{ 'カートへ進む'|trans }}</a>\n </div>\n </div>\n </div>\n </div>\n </div>\n <div class="ec-pagerRole">\n {% include "pager.twig" with {'pages': pagination.paginationData} %}\n </div>\n {% endif %}\n {% endif %}\n {% endblock %} """ : { { __TwigTemplate_87698cadbf4525a8789b19432719229c->{closure} … › |
logger | Symfony\Bridge\Monolog\Logger {#533 …9} |
Request Headers
Header | Value |
---|---|
accept | "*/*" |
accept-encoding | "gzip, br, zstd, deflate" |
authorization | "" |
content-length | "0" |
geoip-addr | "3.147.73.112" |
geoip-continent-code | "NA" |
geoip-country-code | "US" |
geoip-country-name | "United States" |
host | "attrait-shop.com" |
user-agent | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
x-forwarded-host | "attrait-shop.com" |
x-forwarded-port | "443" |
x-forwarded-proto | "https" |
x-php-ob-level | "1" |
x-real-ip | "3.147.73.112" |
Request Content
Request content not available (it was retrieved as a resource).
Response
Response Headers
Header | Value |
---|---|
cache-control | "no-cache, private" |
content-type | "text/html; charset=UTF-8" |
date | "Wed, 16 Apr 2025 00:12:43 GMT" |
set-cookie | "maintenance_token=deleted; expires=Tue, 16-Apr-2024 00:12:42 GMT; Max-Age=0; path=/; httponly" |
vary | "Accept" |
x-debug-exception | "Variable%20%22search_form%22%20does%20not%20exist." |
x-debug-exception-file | "%2Fhome%2Fc9635817%2Fpublic_html%2Fattrait-shop.com%2Fapp%2Ftemplate%2Fuser_data%2Fcategory.twig:101" |
x-debug-token | "2af127" |
Cookies
Request Cookies
No request cookies
Response Cookies
Key | Value |
---|---|
maintenance_token | Symfony\Component\HttpFoundation\Cookie {#4371 #name: "maintenance_token" #value: null #domain: null #expire: 1 #path: "/" #secure: false #httpOnly: true -raw: false -sameSite: null -secureDefault: false } |
Session 9
Session Metadata
Key | Value |
---|---|
Created | "Wed, 16 Apr 25 09:12:43 +0900" |
Last used | "Wed, 16 Apr 25 09:12:43 +0900" |
Lifetime | 0 |
Session Attributes
Attribute | Value |
---|---|
_csrf/https-_token | "vi5TqLyXPecZWd1zrchKZTkXdnjbVO9GSvgEYdU5mFk" |
Session Usage
9
Usages
Stateless check enabled
Usage |
---|
Symfony\Component\Security\Core\Authentication\Token\Storage\UsageTrackingTokenStorage:44
[ [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/security-core/Authentication/Token/Storage/UsageTrackingTokenStorage.php" "line" => 44 "function" => "getMetadataBag" "class" => "Symfony\Component\HttpFoundation\Session\Session" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Log/Processor/TokenProcessor.php" "line" => 34 "function" => "getToken" "class" => "Symfony\Component\Security\Core\Authentication\Token\Storage\UsageTrackingTokenStorage" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/monolog/monolog/src/Monolog/Logger.php" "line" => 388 "function" => "__invoke" "class" => "Eccube\Log\Processor\TokenProcessor" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/monolog/monolog/src/Monolog/Logger.php" "line" => 598 "function" => "addRecord" "class" => "Monolog\Logger" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/security-http/Authentication/AuthenticatorManager.php" "line" => 99 "function" => "debug" "class" => "Monolog\Logger" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/security-http/Firewall/AuthenticatorManagerListener.php" "line" => 34 "function" => "supports" "class" => "Symfony\Component\Security\Http\Authentication\AuthenticatorManager" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/security-http/Authenticator/Debug/TraceableAuthenticatorManagerListener.php" "line" => 40 "function" => "supports" "class" => "Symfony\Component\Security\Http\Firewall\AuthenticatorManagerListener" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/security-bundle/Debug/WrappedLazyListener.php" "line" => 38 "function" => "supports" "class" => "Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticatorManagerListener" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/security-http/Firewall/AbstractListener.php" "line" => 25 "function" => "supports" "class" => "Symfony\Bundle\SecurityBundle\Debug\WrappedLazyListener" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/security-bundle/Debug/TraceableFirewallListener.php" "line" => 80 "function" => "__invoke" "class" => "Symfony\Component\Security\Http\Firewall\AbstractListener" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/security-http/Firewall.php" "line" => 92 "function" => "callListeners" "class" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/event-dispatcher/Debug/WrappedListener.php" "line" => 118 "function" => "onKernelRequest" "class" => "Symfony\Component\Security\Http\Firewall" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 230 "function" => "__invoke" "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 59 "function" => "callListeners" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php" "line" => 154 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 139 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 75 "function" => "handleRaw" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/Kernel.php" "line" => 202 "function" => "handle" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/index.php" "line" => 83 "function" => "handle" "class" => "Symfony\Component\HttpKernel\Kernel" "type" => "->" ] ] |
Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage:76
[ [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/security-csrf/TokenStorage/SessionTokenStorage.php" "line" => 76 "function" => "start" "class" => "Symfony\Component\HttpFoundation\Session\Session" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/security-csrf/CsrfTokenManager.php" "line" => 69 "function" => "hasToken" "class" => "Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/form/FormRenderer.php" "line" => 65 "function" => "getToken" "class" => "Symfony\Component\Security\Csrf\CsrfTokenManager" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/var/cache/dev/twig/c9/c9066efe81b58ccc9dd701df19cf0ae4.php" "line" => 59 "function" => "renderCsrfToken" "class" => "Symfony\Component\Form\FormRenderer" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 405 "function" => "doDisplay" "class" => "__TwigTemplate_d7825d9a933dbeaacdde9f382c7f8f65" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 378 "function" => "displayWithErrorHandling" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Template.php" "line" => 41 "function" => "display" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/var/cache/dev/twig/4d/4ddf49ede611e1f9acf508bff2617a7c.php" "line" => 54 "function" => "display" "class" => "Eccube\Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 405 "function" => "doDisplay" "class" => "__TwigTemplate_87698cadbf4525a8789b19432719229c" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 378 "function" => "displayWithErrorHandling" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Template.php" "line" => 41 "function" => "display" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 390 "function" => "display" "class" => "Eccube\Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/TemplateWrapper.php" "line" => 45 "function" => "render" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Environment.php" "line" => 318 "function" => "render" "class" => "Twig\TemplateWrapper" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/framework-bundle/Controller/AbstractController.php" "line" => 258 "function" => "render" "class" => "Twig\Environment" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/framework-bundle/Controller/AbstractController.php" "line" => 266 "function" => "renderView" "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Controller/UserDataController.php" "line" => 78 "function" => "render" "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 163 "function" => "index" "class" => "Eccube\Controller\UserDataController" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 75 "function" => "handleRaw" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/Kernel.php" "line" => 202 "function" => "handle" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/index.php" "line" => 83 "function" => "handle" "class" => "Symfony\Component\HttpKernel\Kernel" "type" => "->" ] ] |
Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage:79
[ [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/security-csrf/TokenStorage/SessionTokenStorage.php" "line" => 79 "function" => "has" "class" => "Symfony\Component\HttpFoundation\Session\Session" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/security-csrf/CsrfTokenManager.php" "line" => 69 "function" => "hasToken" "class" => "Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/form/FormRenderer.php" "line" => 65 "function" => "getToken" "class" => "Symfony\Component\Security\Csrf\CsrfTokenManager" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/var/cache/dev/twig/c9/c9066efe81b58ccc9dd701df19cf0ae4.php" "line" => 59 "function" => "renderCsrfToken" "class" => "Symfony\Component\Form\FormRenderer" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 405 "function" => "doDisplay" "class" => "__TwigTemplate_d7825d9a933dbeaacdde9f382c7f8f65" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 378 "function" => "displayWithErrorHandling" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Template.php" "line" => 41 "function" => "display" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/var/cache/dev/twig/4d/4ddf49ede611e1f9acf508bff2617a7c.php" "line" => 54 "function" => "display" "class" => "Eccube\Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 405 "function" => "doDisplay" "class" => "__TwigTemplate_87698cadbf4525a8789b19432719229c" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 378 "function" => "displayWithErrorHandling" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Template.php" "line" => 41 "function" => "display" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 390 "function" => "display" "class" => "Eccube\Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/TemplateWrapper.php" "line" => 45 "function" => "render" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Environment.php" "line" => 318 "function" => "render" "class" => "Twig\TemplateWrapper" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/framework-bundle/Controller/AbstractController.php" "line" => 258 "function" => "render" "class" => "Twig\Environment" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/framework-bundle/Controller/AbstractController.php" "line" => 266 "function" => "renderView" "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Controller/UserDataController.php" "line" => 78 "function" => "render" "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 163 "function" => "index" "class" => "Eccube\Controller\UserDataController" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 75 "function" => "handleRaw" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/Kernel.php" "line" => 202 "function" => "handle" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/index.php" "line" => 83 "function" => "handle" "class" => "Symfony\Component\HttpKernel\Kernel" "type" => "->" ] ] |
Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage:69
[ [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/security-csrf/TokenStorage/SessionTokenStorage.php" "line" => 69 "function" => "set" "class" => "Symfony\Component\HttpFoundation\Session\Session" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/security-csrf/CsrfTokenManager.php" "line" => 74 "function" => "setToken" "class" => "Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/form/FormRenderer.php" "line" => 65 "function" => "getToken" "class" => "Symfony\Component\Security\Csrf\CsrfTokenManager" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/var/cache/dev/twig/c9/c9066efe81b58ccc9dd701df19cf0ae4.php" "line" => 59 "function" => "renderCsrfToken" "class" => "Symfony\Component\Form\FormRenderer" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 405 "function" => "doDisplay" "class" => "__TwigTemplate_d7825d9a933dbeaacdde9f382c7f8f65" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 378 "function" => "displayWithErrorHandling" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Template.php" "line" => 41 "function" => "display" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/var/cache/dev/twig/4d/4ddf49ede611e1f9acf508bff2617a7c.php" "line" => 54 "function" => "display" "class" => "Eccube\Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 405 "function" => "doDisplay" "class" => "__TwigTemplate_87698cadbf4525a8789b19432719229c" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 378 "function" => "displayWithErrorHandling" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Template.php" "line" => 41 "function" => "display" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 390 "function" => "display" "class" => "Eccube\Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/TemplateWrapper.php" "line" => 45 "function" => "render" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Environment.php" "line" => 318 "function" => "render" "class" => "Twig\TemplateWrapper" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/framework-bundle/Controller/AbstractController.php" "line" => 258 "function" => "render" "class" => "Twig\Environment" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/framework-bundle/Controller/AbstractController.php" "line" => 266 "function" => "renderView" "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Controller/UserDataController.php" "line" => 78 "function" => "render" "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 163 "function" => "index" "class" => "Eccube\Controller\UserDataController" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 75 "function" => "handleRaw" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/Kernel.php" "line" => 202 "function" => "handle" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/index.php" "line" => 83 "function" => "handle" "class" => "Symfony\Component\HttpKernel\Kernel" "type" => "->" ] ] |
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:72
[ [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php" "line" => 72 "function" => "getMetadataBag" "class" => "Symfony\Component\HttpFoundation\Session\Session" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/Profiler/Profiler.php" "line" => 161 "function" => "collect" "class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/EventListener/ProfilerListener.php" "line" => 108 "function" => "collect" "class" => "Symfony\Component\HttpKernel\Profiler\Profiler" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/event-dispatcher/Debug/WrappedListener.php" "line" => 118 "function" => "onKernelResponse" "class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 230 "function" => "__invoke" "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 59 "function" => "callListeners" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php" "line" => 154 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 196 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 184 "function" => "filterResponse" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 75 "function" => "handleRaw" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php" "line" => 86 "function" => "handle" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php" "line" => 80 "function" => "handle" "class" => "Symfony\Component\HttpKernel\HttpCache\SubRequestHandler" "type" => "::" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/Fragment/FragmentHandler.php" "line" => 85 "function" => "render" "class" => "Symfony\Component\HttpKernel\Fragment\InlineFragmentRenderer" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php" "line" => 49 "function" => "render" "class" => "Symfony\Component\HttpKernel\Fragment\FragmentHandler" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/twig-bridge/Extension/HttpKernelRuntime.php" "line" => 46 "function" => "render" "class" => "Symfony\Component\HttpKernel\DependencyInjection\LazyLoadingFragmentHandler" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/var/cache/dev/twig/6b/6b93281d65a22cb7f5357c8ceb60df79.php" "line" => 242 "function" => "renderFragment" "class" => "Symfony\Bridge\Twig\Extension\HttpKernelRuntime" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 405 "function" => "doDisplay" "class" => "__TwigTemplate_514b56e542c9f7af52df1fcdd8555cfd" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 378 "function" => "displayWithErrorHandling" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Template.php" "line" => 41 "function" => "display" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 390 "function" => "display" "class" => "Eccube\Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/TemplateWrapper.php" "line" => 45 "function" => "render" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Environment.php" "line" => 318 "function" => "render" "class" => "Twig\TemplateWrapper" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Extension/TwigIncludeExtension.php" "line" => 42 "function" => "render" "class" => "Twig\Environment" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/var/cache/dev/twig/bd/bda4e2f70fdcbcd4a387dfb9c67ea805.php" "line" => 63 "function" => "include_dispatch" "class" => "Eccube\Twig\Extension\TwigIncludeExtension" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 405 "function" => "doDisplay" "class" => "__TwigTemplate_cf8c079157b96c7212b82ae59279f896" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 378 "function" => "displayWithErrorHandling" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Template.php" "line" => 41 "function" => "display" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 390 "function" => "display" "class" => "Eccube\Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Extension/CoreExtension.php" "line" => 1290 "function" => "render" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Extension/IgnoreTwigSandboxErrorExtension.php" "line" => 59 "function" => "twig_include" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/var/cache/dev/twig/c9/c9066efe81b58ccc9dd701df19cf0ae4.php" "line" => 226 "function" => "twig_include" "class" => "Eccube\Twig\Extension\IgnoreTwigSandboxErrorExtension" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 405 "function" => "doDisplay" "class" => "__TwigTemplate_d7825d9a933dbeaacdde9f382c7f8f65" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 378 "function" => "displayWithErrorHandling" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Template.php" "line" => 41 "function" => "display" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/var/cache/dev/twig/4d/4ddf49ede611e1f9acf508bff2617a7c.php" "line" => 54 "function" => "display" "class" => "Eccube\Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 405 "function" => "doDisplay" "class" => "__TwigTemplate_87698cadbf4525a8789b19432719229c" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 378 "function" => "displayWithErrorHandling" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Template.php" "line" => 41 "function" => "display" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 390 "function" => "display" "class" => "Eccube\Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/TemplateWrapper.php" "line" => 45 "function" => "render" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Environment.php" "line" => 318 "function" => "render" "class" => "Twig\TemplateWrapper" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/framework-bundle/Controller/AbstractController.php" "line" => 258 "function" => "render" "class" => "Twig\Environment" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/framework-bundle/Controller/AbstractController.php" "line" => 266 "function" => "renderView" "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Controller/UserDataController.php" "line" => 78 "function" => "render" "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 163 "function" => "index" "class" => "Eccube\Controller\UserDataController" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 75 "function" => "handleRaw" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/Kernel.php" "line" => 202 "function" => "handle" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/index.php" "line" => 83 "function" => "handle" "class" => "Symfony\Component\HttpKernel\Kernel" "type" => "->" ] ] |
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:73
[ [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php" "line" => 73 "function" => "getMetadataBag" "class" => "Symfony\Component\HttpFoundation\Session\Session" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/Profiler/Profiler.php" "line" => 161 "function" => "collect" "class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/EventListener/ProfilerListener.php" "line" => 108 "function" => "collect" "class" => "Symfony\Component\HttpKernel\Profiler\Profiler" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/event-dispatcher/Debug/WrappedListener.php" "line" => 118 "function" => "onKernelResponse" "class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 230 "function" => "__invoke" "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 59 "function" => "callListeners" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php" "line" => 154 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 196 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 184 "function" => "filterResponse" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 75 "function" => "handleRaw" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php" "line" => 86 "function" => "handle" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php" "line" => 80 "function" => "handle" "class" => "Symfony\Component\HttpKernel\HttpCache\SubRequestHandler" "type" => "::" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/Fragment/FragmentHandler.php" "line" => 85 "function" => "render" "class" => "Symfony\Component\HttpKernel\Fragment\InlineFragmentRenderer" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php" "line" => 49 "function" => "render" "class" => "Symfony\Component\HttpKernel\Fragment\FragmentHandler" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/twig-bridge/Extension/HttpKernelRuntime.php" "line" => 46 "function" => "render" "class" => "Symfony\Component\HttpKernel\DependencyInjection\LazyLoadingFragmentHandler" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/var/cache/dev/twig/6b/6b93281d65a22cb7f5357c8ceb60df79.php" "line" => 242 "function" => "renderFragment" "class" => "Symfony\Bridge\Twig\Extension\HttpKernelRuntime" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 405 "function" => "doDisplay" "class" => "__TwigTemplate_514b56e542c9f7af52df1fcdd8555cfd" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 378 "function" => "displayWithErrorHandling" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Template.php" "line" => 41 "function" => "display" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 390 "function" => "display" "class" => "Eccube\Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/TemplateWrapper.php" "line" => 45 "function" => "render" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Environment.php" "line" => 318 "function" => "render" "class" => "Twig\TemplateWrapper" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Extension/TwigIncludeExtension.php" "line" => 42 "function" => "render" "class" => "Twig\Environment" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/var/cache/dev/twig/bd/bda4e2f70fdcbcd4a387dfb9c67ea805.php" "line" => 63 "function" => "include_dispatch" "class" => "Eccube\Twig\Extension\TwigIncludeExtension" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 405 "function" => "doDisplay" "class" => "__TwigTemplate_cf8c079157b96c7212b82ae59279f896" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 378 "function" => "displayWithErrorHandling" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Template.php" "line" => 41 "function" => "display" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 390 "function" => "display" "class" => "Eccube\Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Extension/CoreExtension.php" "line" => 1290 "function" => "render" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Extension/IgnoreTwigSandboxErrorExtension.php" "line" => 59 "function" => "twig_include" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/var/cache/dev/twig/c9/c9066efe81b58ccc9dd701df19cf0ae4.php" "line" => 226 "function" => "twig_include" "class" => "Eccube\Twig\Extension\IgnoreTwigSandboxErrorExtension" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 405 "function" => "doDisplay" "class" => "__TwigTemplate_d7825d9a933dbeaacdde9f382c7f8f65" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 378 "function" => "displayWithErrorHandling" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Template.php" "line" => 41 "function" => "display" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/var/cache/dev/twig/4d/4ddf49ede611e1f9acf508bff2617a7c.php" "line" => 54 "function" => "display" "class" => "Eccube\Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 405 "function" => "doDisplay" "class" => "__TwigTemplate_87698cadbf4525a8789b19432719229c" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 378 "function" => "displayWithErrorHandling" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Template.php" "line" => 41 "function" => "display" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 390 "function" => "display" "class" => "Eccube\Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/TemplateWrapper.php" "line" => 45 "function" => "render" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Environment.php" "line" => 318 "function" => "render" "class" => "Twig\TemplateWrapper" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/framework-bundle/Controller/AbstractController.php" "line" => 258 "function" => "render" "class" => "Twig\Environment" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/framework-bundle/Controller/AbstractController.php" "line" => 266 "function" => "renderView" "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Controller/UserDataController.php" "line" => 78 "function" => "render" "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 163 "function" => "index" "class" => "Eccube\Controller\UserDataController" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 75 "function" => "handleRaw" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/Kernel.php" "line" => 202 "function" => "handle" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/index.php" "line" => 83 "function" => "handle" "class" => "Symfony\Component\HttpKernel\Kernel" "type" => "->" ] ] |
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:74
[ [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php" "line" => 74 "function" => "getMetadataBag" "class" => "Symfony\Component\HttpFoundation\Session\Session" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/Profiler/Profiler.php" "line" => 161 "function" => "collect" "class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/EventListener/ProfilerListener.php" "line" => 108 "function" => "collect" "class" => "Symfony\Component\HttpKernel\Profiler\Profiler" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/event-dispatcher/Debug/WrappedListener.php" "line" => 118 "function" => "onKernelResponse" "class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 230 "function" => "__invoke" "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 59 "function" => "callListeners" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php" "line" => 154 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 196 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 184 "function" => "filterResponse" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 75 "function" => "handleRaw" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php" "line" => 86 "function" => "handle" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php" "line" => 80 "function" => "handle" "class" => "Symfony\Component\HttpKernel\HttpCache\SubRequestHandler" "type" => "::" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/Fragment/FragmentHandler.php" "line" => 85 "function" => "render" "class" => "Symfony\Component\HttpKernel\Fragment\InlineFragmentRenderer" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php" "line" => 49 "function" => "render" "class" => "Symfony\Component\HttpKernel\Fragment\FragmentHandler" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/twig-bridge/Extension/HttpKernelRuntime.php" "line" => 46 "function" => "render" "class" => "Symfony\Component\HttpKernel\DependencyInjection\LazyLoadingFragmentHandler" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/var/cache/dev/twig/6b/6b93281d65a22cb7f5357c8ceb60df79.php" "line" => 242 "function" => "renderFragment" "class" => "Symfony\Bridge\Twig\Extension\HttpKernelRuntime" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 405 "function" => "doDisplay" "class" => "__TwigTemplate_514b56e542c9f7af52df1fcdd8555cfd" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 378 "function" => "displayWithErrorHandling" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Template.php" "line" => 41 "function" => "display" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 390 "function" => "display" "class" => "Eccube\Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/TemplateWrapper.php" "line" => 45 "function" => "render" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Environment.php" "line" => 318 "function" => "render" "class" => "Twig\TemplateWrapper" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Extension/TwigIncludeExtension.php" "line" => 42 "function" => "render" "class" => "Twig\Environment" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/var/cache/dev/twig/bd/bda4e2f70fdcbcd4a387dfb9c67ea805.php" "line" => 63 "function" => "include_dispatch" "class" => "Eccube\Twig\Extension\TwigIncludeExtension" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 405 "function" => "doDisplay" "class" => "__TwigTemplate_cf8c079157b96c7212b82ae59279f896" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 378 "function" => "displayWithErrorHandling" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Template.php" "line" => 41 "function" => "display" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 390 "function" => "display" "class" => "Eccube\Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Extension/CoreExtension.php" "line" => 1290 "function" => "render" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Extension/IgnoreTwigSandboxErrorExtension.php" "line" => 59 "function" => "twig_include" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/var/cache/dev/twig/c9/c9066efe81b58ccc9dd701df19cf0ae4.php" "line" => 226 "function" => "twig_include" "class" => "Eccube\Twig\Extension\IgnoreTwigSandboxErrorExtension" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 405 "function" => "doDisplay" "class" => "__TwigTemplate_d7825d9a933dbeaacdde9f382c7f8f65" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 378 "function" => "displayWithErrorHandling" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Template.php" "line" => 41 "function" => "display" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/var/cache/dev/twig/4d/4ddf49ede611e1f9acf508bff2617a7c.php" "line" => 54 "function" => "display" "class" => "Eccube\Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 405 "function" => "doDisplay" "class" => "__TwigTemplate_87698cadbf4525a8789b19432719229c" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 378 "function" => "displayWithErrorHandling" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Template.php" "line" => 41 "function" => "display" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 390 "function" => "display" "class" => "Eccube\Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/TemplateWrapper.php" "line" => 45 "function" => "render" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Environment.php" "line" => 318 "function" => "render" "class" => "Twig\TemplateWrapper" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/framework-bundle/Controller/AbstractController.php" "line" => 258 "function" => "render" "class" => "Twig\Environment" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/framework-bundle/Controller/AbstractController.php" "line" => 266 "function" => "renderView" "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Controller/UserDataController.php" "line" => 78 "function" => "render" "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 163 "function" => "index" "class" => "Eccube\Controller\UserDataController" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 75 "function" => "handleRaw" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/Kernel.php" "line" => 202 "function" => "handle" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/index.php" "line" => 83 "function" => "handle" "class" => "Symfony\Component\HttpKernel\Kernel" "type" => "->" ] ] |
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:75
[ [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php" "line" => 75 "function" => "all" "class" => "Symfony\Component\HttpFoundation\Session\Session" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/Profiler/Profiler.php" "line" => 161 "function" => "collect" "class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/EventListener/ProfilerListener.php" "line" => 108 "function" => "collect" "class" => "Symfony\Component\HttpKernel\Profiler\Profiler" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/event-dispatcher/Debug/WrappedListener.php" "line" => 118 "function" => "onKernelResponse" "class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 230 "function" => "__invoke" "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 59 "function" => "callListeners" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php" "line" => 154 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 196 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 184 "function" => "filterResponse" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 75 "function" => "handleRaw" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php" "line" => 86 "function" => "handle" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php" "line" => 80 "function" => "handle" "class" => "Symfony\Component\HttpKernel\HttpCache\SubRequestHandler" "type" => "::" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/Fragment/FragmentHandler.php" "line" => 85 "function" => "render" "class" => "Symfony\Component\HttpKernel\Fragment\InlineFragmentRenderer" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php" "line" => 49 "function" => "render" "class" => "Symfony\Component\HttpKernel\Fragment\FragmentHandler" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/twig-bridge/Extension/HttpKernelRuntime.php" "line" => 46 "function" => "render" "class" => "Symfony\Component\HttpKernel\DependencyInjection\LazyLoadingFragmentHandler" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/var/cache/dev/twig/6b/6b93281d65a22cb7f5357c8ceb60df79.php" "line" => 242 "function" => "renderFragment" "class" => "Symfony\Bridge\Twig\Extension\HttpKernelRuntime" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 405 "function" => "doDisplay" "class" => "__TwigTemplate_514b56e542c9f7af52df1fcdd8555cfd" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 378 "function" => "displayWithErrorHandling" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Template.php" "line" => 41 "function" => "display" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 390 "function" => "display" "class" => "Eccube\Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/TemplateWrapper.php" "line" => 45 "function" => "render" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Environment.php" "line" => 318 "function" => "render" "class" => "Twig\TemplateWrapper" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Extension/TwigIncludeExtension.php" "line" => 42 "function" => "render" "class" => "Twig\Environment" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/var/cache/dev/twig/bd/bda4e2f70fdcbcd4a387dfb9c67ea805.php" "line" => 63 "function" => "include_dispatch" "class" => "Eccube\Twig\Extension\TwigIncludeExtension" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 405 "function" => "doDisplay" "class" => "__TwigTemplate_cf8c079157b96c7212b82ae59279f896" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 378 "function" => "displayWithErrorHandling" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Template.php" "line" => 41 "function" => "display" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 390 "function" => "display" "class" => "Eccube\Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Extension/CoreExtension.php" "line" => 1290 "function" => "render" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Extension/IgnoreTwigSandboxErrorExtension.php" "line" => 59 "function" => "twig_include" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/var/cache/dev/twig/c9/c9066efe81b58ccc9dd701df19cf0ae4.php" "line" => 226 "function" => "twig_include" "class" => "Eccube\Twig\Extension\IgnoreTwigSandboxErrorExtension" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 405 "function" => "doDisplay" "class" => "__TwigTemplate_d7825d9a933dbeaacdde9f382c7f8f65" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 378 "function" => "displayWithErrorHandling" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Template.php" "line" => 41 "function" => "display" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/var/cache/dev/twig/4d/4ddf49ede611e1f9acf508bff2617a7c.php" "line" => 54 "function" => "display" "class" => "Eccube\Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 405 "function" => "doDisplay" "class" => "__TwigTemplate_87698cadbf4525a8789b19432719229c" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 378 "function" => "displayWithErrorHandling" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Template.php" "line" => 41 "function" => "display" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 390 "function" => "display" "class" => "Eccube\Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/TemplateWrapper.php" "line" => 45 "function" => "render" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Environment.php" "line" => 318 "function" => "render" "class" => "Twig\TemplateWrapper" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/framework-bundle/Controller/AbstractController.php" "line" => 258 "function" => "render" "class" => "Twig\Environment" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/framework-bundle/Controller/AbstractController.php" "line" => 266 "function" => "renderView" "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Controller/UserDataController.php" "line" => 78 "function" => "render" "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 163 "function" => "index" "class" => "Eccube\Controller\UserDataController" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 75 "function" => "handleRaw" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/Kernel.php" "line" => 202 "function" => "handle" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/index.php" "line" => 83 "function" => "handle" "class" => "Symfony\Component\HttpKernel\Kernel" "type" => "->" ] ] |
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:76
[ [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php" "line" => 76 "function" => "getFlashBag" "class" => "Symfony\Component\HttpFoundation\Session\Session" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/Profiler/Profiler.php" "line" => 161 "function" => "collect" "class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/EventListener/ProfilerListener.php" "line" => 108 "function" => "collect" "class" => "Symfony\Component\HttpKernel\Profiler\Profiler" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/event-dispatcher/Debug/WrappedListener.php" "line" => 118 "function" => "onKernelResponse" "class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 230 "function" => "__invoke" "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/event-dispatcher/EventDispatcher.php" "line" => 59 "function" => "callListeners" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php" "line" => 154 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\EventDispatcher" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 196 "function" => "dispatch" "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 184 "function" => "filterResponse" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 75 "function" => "handleRaw" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpCache/SubRequestHandler.php" "line" => 86 "function" => "handle" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/Fragment/InlineFragmentRenderer.php" "line" => 80 "function" => "handle" "class" => "Symfony\Component\HttpKernel\HttpCache\SubRequestHandler" "type" => "::" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/Fragment/FragmentHandler.php" "line" => 85 "function" => "render" "class" => "Symfony\Component\HttpKernel\Fragment\InlineFragmentRenderer" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/DependencyInjection/LazyLoadingFragmentHandler.php" "line" => 49 "function" => "render" "class" => "Symfony\Component\HttpKernel\Fragment\FragmentHandler" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/twig-bridge/Extension/HttpKernelRuntime.php" "line" => 46 "function" => "render" "class" => "Symfony\Component\HttpKernel\DependencyInjection\LazyLoadingFragmentHandler" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/var/cache/dev/twig/6b/6b93281d65a22cb7f5357c8ceb60df79.php" "line" => 242 "function" => "renderFragment" "class" => "Symfony\Bridge\Twig\Extension\HttpKernelRuntime" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 405 "function" => "doDisplay" "class" => "__TwigTemplate_514b56e542c9f7af52df1fcdd8555cfd" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 378 "function" => "displayWithErrorHandling" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Template.php" "line" => 41 "function" => "display" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 390 "function" => "display" "class" => "Eccube\Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/TemplateWrapper.php" "line" => 45 "function" => "render" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Environment.php" "line" => 318 "function" => "render" "class" => "Twig\TemplateWrapper" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Extension/TwigIncludeExtension.php" "line" => 42 "function" => "render" "class" => "Twig\Environment" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/var/cache/dev/twig/bd/bda4e2f70fdcbcd4a387dfb9c67ea805.php" "line" => 63 "function" => "include_dispatch" "class" => "Eccube\Twig\Extension\TwigIncludeExtension" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 405 "function" => "doDisplay" "class" => "__TwigTemplate_cf8c079157b96c7212b82ae59279f896" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 378 "function" => "displayWithErrorHandling" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Template.php" "line" => 41 "function" => "display" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 390 "function" => "display" "class" => "Eccube\Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Extension/CoreExtension.php" "line" => 1290 "function" => "render" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Extension/IgnoreTwigSandboxErrorExtension.php" "line" => 59 "function" => "twig_include" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/var/cache/dev/twig/c9/c9066efe81b58ccc9dd701df19cf0ae4.php" "line" => 226 "function" => "twig_include" "class" => "Eccube\Twig\Extension\IgnoreTwigSandboxErrorExtension" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 405 "function" => "doDisplay" "class" => "__TwigTemplate_d7825d9a933dbeaacdde9f382c7f8f65" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 378 "function" => "displayWithErrorHandling" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Template.php" "line" => 41 "function" => "display" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/var/cache/dev/twig/4d/4ddf49ede611e1f9acf508bff2617a7c.php" "line" => 54 "function" => "display" "class" => "Eccube\Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 405 "function" => "doDisplay" "class" => "__TwigTemplate_87698cadbf4525a8789b19432719229c" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 378 "function" => "displayWithErrorHandling" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Twig/Template.php" "line" => 41 "function" => "display" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Template.php" "line" => 390 "function" => "display" "class" => "Eccube\Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/TemplateWrapper.php" "line" => 45 "function" => "render" "class" => "Twig\Template" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/twig/twig/src/Environment.php" "line" => 318 "function" => "render" "class" => "Twig\TemplateWrapper" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/framework-bundle/Controller/AbstractController.php" "line" => 258 "function" => "render" "class" => "Twig\Environment" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/framework-bundle/Controller/AbstractController.php" "line" => 266 "function" => "renderView" "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/src/Eccube/Controller/UserDataController.php" "line" => 78 "function" => "render" "class" => "Symfony\Bundle\FrameworkBundle\Controller\AbstractController" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 163 "function" => "index" "class" => "Eccube\Controller\UserDataController" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/HttpKernel.php" "line" => 75 "function" => "handleRaw" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/vendor/symfony/http-kernel/Kernel.php" "line" => 202 "function" => "handle" "class" => "Symfony\Component\HttpKernel\HttpKernel" "type" => "->" ] [ "file" => "/home/c9635817/public_html/attrait-shop.com/index.php" "line" => 83 "function" => "handle" "class" => "Symfony\Component\HttpKernel\Kernel" "type" => "->" ] ] |
Flashes
Flashes
No flash messages were created.
Server Parameters
Server Parameters
Defined in .env
Key | Value |
---|---|
(no data) |
Defined as regular env variables
Key | Value |
---|---|
APP_DEBUG | "1" |
APP_ENV | "dev" |
CONTENT_LENGTH | "0" |
CONTEXT_DOCUMENT_ROOT | "/home/c9635817/public_html/attrait-shop.com" |
CONTEXT_PREFIX | "" |
DATABASE_CHARSET | "utf8mb4" |
DATABASE_SERVER_VERSION | "5.7.12" |
DATABASE_URL | "mysql://oi1mh_web:vgxRm7CaJRG8sq3pq-G3u-9JWE3x9xUZKFcpwHt7Z-D-wuFnJFFQtpxvkMJfE@mysql1004.conoha.ne.jp/oi1mh_eccube" |
DOCUMENT_ROOT | "/home/c9635817/public_html/attrait-shop.com" |
ECCUBE_ADMIN_ALLOW_HOSTS | "[]" |
ECCUBE_ADMIN_ROUTE | "admin_stg" |
ECCUBE_AUTH_MAGIC | "t8bebQ5Da8N1TixgfSgvgmSi7vWbR3hD" |
ECCUBE_COOKIE_PATH | "/" |
ECCUBE_FORCE_SSL | "0" |
ECCUBE_LOCALE | "ja" |
ECCUBE_TEMPLATE_CODE | "default" |
GEOIP_ADDR | "3.147.73.112" |
GEOIP_CONTINENT_CODE | "NA" |
GEOIP_COUNTRY_CODE | "US" |
GEOIP_COUNTRY_NAME | "United States" |
HTTPS | "on" |
HTTP_ACCEPT | "*/*" |
HTTP_ACCEPT_ENCODING | "gzip, br, zstd, deflate" |
HTTP_AUTHORIZATION | "" |
HTTP_GEOIP_ADDR | "3.147.73.112" |
HTTP_GEOIP_CONTINENT_CODE | "NA" |
HTTP_GEOIP_COUNTRY_CODE | "US" |
HTTP_GEOIP_COUNTRY_NAME | "United States" |
HTTP_HOST | "attrait-shop.com" |
HTTP_USER_AGENT | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)" |
HTTP_X_FORWARDED_HOST | "attrait-shop.com" |
HTTP_X_FORWARDED_PORT | "443" |
HTTP_X_FORWARDED_PROTO | "https" |
HTTP_X_REAL_IP | "3.147.73.112" |
LSPHP_ENABLE_USER_INI | "on" |
MAILER_DSN | "smtp://info@attrait-shop.com:attraitshop0412^^@mail1012.conoha.ne.jp:587?auth_mode=plain" |
MAILER_URL | "null://localhost" |
PATH | "/usr/local/bin:/usr/bin:/bin" |
PATH_INFO | "/user_data/category" |
PATH_TRANSLATED | "redirect:/index.php/category" |
PHP_SELF | "/index.php" |
PWD | "/" |
QUERY_STRING | "" |
REMOTE_ADDR | "3.147.73.112" |
REMOTE_PORT | "33926" |
REQUEST_METHOD | "GET" |
REQUEST_SCHEME | "http" |
REQUEST_TIME | 1744762363 |
REQUEST_TIME_FLOAT | 1744762363.8646 |
REQUEST_URI | "/index.php/user_data/category" |
SCRIPT_FILENAME | "/home/c9635817/public_html/attrait-shop.com/index.php" |
SCRIPT_NAME | "/index.php" |
SERVER_ADDR | "127.0.0.1" |
SERVER_ADMIN | "root@localhost" |
SERVER_NAME | "attrait-shop.com" |
SERVER_PORT | "8080" |
SERVER_PROTOCOL | "HTTP/1.1" |
SERVER_SIGNATURE | "" |
SERVER_SOFTWARE | "Apache" |
SITE_GUARD | "off" |
TEMP | "/tmp" |
TMP | "/tmp" |
TMPDIR | "/tmp" |
TRUSTED_HOSTS | "^attrait-shop\.com$" |
UNIQUE_ID | "Z_71-xVKpApzFek7NmRPsgAAAB8" |
Parent Request
Return to parent request (token = 11990c)
Key | Value |
---|---|
_controller | "Eccube\Controller\UserDataController::index" |
_firewall_context | "security.firewall.map.context.customer" |
_remove_csp_headers | true |
_route | "user_data" |
_route_params | [ "route" => "category" ] |
_security_firewall_run | "_security_customer" |
_stopwatch_token | "af9c20" |
route | "category" |