https://www.eccube41to42test.rmx.cfbx.jp/products/list?category_id=7

ErrorController

Request

GET Parameters

Key Value
category_id
"7"
pageno
""

POST Parameters

No POST parameters

Uploaded Files

No files were uploaded

Request Attributes

Key Value
_controller
"error_controller"
_stopwatch_token
"9d6a5b"
exception
Twig\Error\RuntimeError {#7167
  -lineno: 176
  -name: "Product/list.twig"
  -rawMessage: "Variable "disp_number_form" does not exist."
  -sourcePath: "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/app/template/originalTemplate/Product/list.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
    {% set category_id = '0' %}\n
    \n
    {% if app.request.query.get('category_id') != "" %}\n
        {% set category_id = app.request.query.get('category_id') %}\n
    {% endif %}\n
    \n
    {% block stylesheet %}\n
        <style>\n
    \n
            .categoryImgArea\n
            {\n
                background-image: url(/html/user_data/assets/img/category/category_bg_id-{{ category_id }}.jpg);\n
                background-size:cover;\n
                background-position: center;\n
                height: 375px;\n
                display: flex;\n
                /*flex-direction: column;*/\n
                justify-content: center;\n
                align-items: center;\n
            }\n
            .categoryImgArea img\n
            {\n
                max-width: 80vw;\n
            }\n
    \n
        </style>\n
    {% endblock %}\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').html(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-overlay, .ec-modal .ec-inlineBtn--cancel').on('click', function() {\n
                $('.ec-modal').hide()\n
            });\n
        </script>\n
    {% endblock %}\n
    \n
    {% block main %}\n
        {% set category_name = 'すべての商品' %}\n
        {% if Category is not null %}\n
            {% set category_name = Category.name %}\n
        {% endif %}\n
    \n
        <div class="categoryImgArea">\n
        {# <img src="/html/user_data/assets/img/category/category_banner_id-{{ category_id }}.jpg" alt="カテゴリ画像-{{ category_id }}"> #}\n
        <h2 class="page_title">{{ category_name }}</h2>\n
        </div>\n
    \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(disp_number_form, {'id': '', 'attr': {'class': 'disp-number'}}) }}\n
                                {{ form_widget(order_by_form, {'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
                                    <div class="ec-shelfGrid__item-image__wrapper">\n
                                        <p class="ec-shelfGrid__item-image">\n
                                            <img src="{{ asset(Product.main_list_image|no_image_product, 'save_image') }}">\n
                                        </p>\n
                                    </div>\n
                                    <p class="product_name">{{ 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 %}
    """
  #message: "Variable "disp_number_form" does not exist."
  #code: 0
  #file: "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/app/template/originalTemplate/Product/list.twig"
  #line: 176
  trace: {
    /home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/app/template/originalTemplate/Product/list.twig:176 {
      __TwigTemplate_75237831317f23d23ffe2184314529d674fca4d741b8417c3cc3819c88fc17f5->{closure} …
      › <div class="ec-select">    {{ form_widget(disp_number_form, {'id': '', 'attr': {'class': 'disp-number'}}) }}    {{ form_widget(order_by_form, {'id': '', 'attr': {'class': 'order-by'}}) }}
    }
    /home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/app/template/originalTemplate/Product/list.twig:176 {
      __TwigTemplate_75237831317f23d23ffe2184314529d674fca4d741b8417c3cc3819c88fc17f5->block_main($context, array $blocks = []) …
      › <div class="ec-select">    {{ form_widget(disp_number_form, {'id': '', 'attr': {'class': 'disp-number'}}) }}    {{ form_widget(order_by_form, {'id': '', 'attr': {'class': 'order-by'}}) }}
    }
    /home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/twig/twig/src/Template.php:182 {
      Twig\Template->displayBlock($name, array $context, array $blocks = [], $useBlocks = true, self $templateContext = null) …
      › try {    $template->$block($context, $blocks);} catch (Error $e) {
      arguments: {
        $context: [ …17]
        $blocks: [ …3]
      }
    }
    /home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/var/cache/dev/twig/65/65c90250b0e25c3a09ee32364a04ee85dac7257aebacbbf5839a7ad79be7e33f.php:213 {
      __TwigTemplate_e6f3181a827b35105be229e1afdd8b87ea705100acc7b657118fdbdc4e62bd78->doDisplay(array $context, array $blocks = []) …
      › echo "            ";$this->displayBlock('main', $context, $blocks);// line 88
      arguments: {
        $name: "main"
        $context: [ …16]
        $blocks: [ …3]
      }
    }
    /home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/twig/twig/src/Template.php:405 {
      Twig\Template->displayWithErrorHandling(array $context, array $blocks = []) …
      › try {    $this->doDisplay($context, $blocks);} catch (Error $e) {
      arguments: {
        $context: [ …15]
        $blocks: [ …3]
      }
    }
    /home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/twig/twig/src/Template.php:378 {
      Twig\Template->display(array $context, array $blocks = []) …
      › {    $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));}
      arguments: {
        $context: [ …13]
        $blocks: [ …3]
      }
    }
    /home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/src/Eccube/Twig/Template.php:41 {
      Eccube\Twig\Template->display(array $context, array $blocks = []) …
      › } else {    parent::display($event->getParameters(), $blocks);}
      arguments: {
        $context: [ …5]
        $blocks: []
      }
    }
    /home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/var/cache/dev/twig/da/da26becddc7fe9c6dfe60fdc611a898bf4bb401eeb3bb45d945760efa1a490d0.php:60 {
      __TwigTemplate_75237831317f23d23ffe2184314529d674fca4d741b8417c3cc3819c88fc17f5->doDisplay(array $context, array $blocks = []) …
      › $this->parent = $this->loadTemplate("default_frame.twig", "Product/list.twig", 11);$this->parent->display($context, array_merge($this->blocks, $blocks));arguments: {
        $context: [ …15]
        $blocks: [ …3]
      }
    }
    /home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/twig/twig/src/Template.php:405 {
      Twig\Template->displayWithErrorHandling(array $context, array $blocks = []) …
      › try {    $this->doDisplay($context, $blocks);} catch (Error $e) {
      arguments: {
        $context: [ …15]
        $blocks: [ …3]
      }
    }
    /home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/twig/twig/src/Template.php:378 {
      Twig\Template->display(array $context, array $blocks = []) …
      › {    $this->displayWithErrorHandling($this->env->mergeGlobals($context), array_merge($this->blocks, $blocks));}
      arguments: {
        $context: [ …13]
        $blocks: [ …3]
      }
    }
    /home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/src/Eccube/Twig/Template.php:41 {
      Eccube\Twig\Template->display(array $context, array $blocks = []) …
      › } else {    parent::display($event->getParameters(), $blocks);}
      arguments: {
        $context: [ …5]
        $blocks: []
      }
    }
    /home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/twig/twig/src/Template.php:390 {
      Twig\Template->render(array $context) …
      › try {    $this->display($context);} catch (\Throwable $e) {
      arguments: {
        $context: [ …5]
      }
    }
    /home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/twig/twig/src/TemplateWrapper.php:45 {
      Twig\TemplateWrapper->render(array $context = []): string …
      ›     // as it should only be used by internal code    return $this->template->render($context, \func_get_args()[1] ?? []);}
      arguments: {
        $context: [ …5]
        ...: {
          []
        }
      }
    }
    /home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/twig/twig/src/Environment.php:318 {
      Twig\Environment->render($name, array $context = []) …
      › {    return $this->load($name)->render($context);}
      arguments: {
        $context: [ …5]
      }
    }
    /home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/sensio/framework-extra-bundle/src/EventListener/TemplateListener.php:115 {
      Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener->onKernelView(KernelEvent $event) …
      › } else {    $event->setResponse(new Response($this->twig->render($template->getTemplate(), $parameters)));}
      arguments: {
        $name: "Product/list.twig"
        $context: [ …5]
      }
    }
    /home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/Debug/WrappedListener.php:117 {
      Symfony\Component\EventDispatcher\Debug\WrappedListener->__invoke(object $event, string $eventName, EventDispatcherInterface $dispatcher): void …
      › 
      › ($this->optimizedListener ?? $this->listener)($event, $eventName, $dispatcher);arguments: {
        $event: Symfony\Component\HttpKernel\Event\ViewEvent {#4901 …}
        ...: {
          "kernel.view"
          Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher {#630 …}
        }
      }
    }
    /home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/EventDispatcher.php:230 {
      Symfony\Component\EventDispatcher\EventDispatcher->callListeners(iterable $listeners, string $eventName, object $event) …
      ›     }    $listener($event, $eventName, $this);}
      arguments: {
        $event: Symfony\Component\HttpKernel\Event\ViewEvent {#4901 …}
        $eventName: "kernel.view"
        $dispatcher: Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher {#630 …}
      }
    }
    /home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/EventDispatcher.php:59 {
      Symfony\Component\EventDispatcher\EventDispatcher->dispatch(object $event, string $eventName = null): object …
      › if ($listeners) {    $this->callListeners($listeners, $eventName, $event);}
      arguments: {
        $listeners: [ …1]
        $eventName: "kernel.view"
        $event: Symfony\Component\HttpKernel\Event\ViewEvent {#4901 …}
      }
    }
    /home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php:154 {
      Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher->dispatch(object $event, string $eventName = null): object …
      › try {    $this->dispatcher->dispatch($event, $eventName);} finally {
      arguments: {
        $event: Symfony\Component\HttpKernel\Event\ViewEvent {#4901 …}
        $eventName: "kernel.view"
      }
    }
    /home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php:168 {
      Symfony\Component\HttpKernel\HttpKernel->handleRaw(Request $request, int $type = self::MAIN_REQUEST): Response …
      › $event = new ViewEvent($this, $request, $type, $response);$this->dispatcher->dispatch($event, KernelEvents::VIEW);arguments: {
        $event: Symfony\Component\HttpKernel\Event\ViewEvent {#4901 …}
        $eventName: "kernel.view"
      }
    }
    /home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php:75 {
      Symfony\Component\HttpKernel\HttpKernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true) …
      › try {    return $this->handleRaw($request, $type);} catch (\Exception $e) {
      arguments: {
        $request: Symfony\Component\HttpFoundation\Request {#6 …}
        $type: 1
      }
    }
    /home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/Kernel.php:202 {
      Symfony\Component\HttpKernel\Kernel->handle(Request $request, int $type = HttpKernelInterface::MAIN_REQUEST, bool $catch = true) …
      › try {    return $this->getHttpKernel()->handle($request, $type, $catch);} finally {
      arguments: {
        $request: Symfony\Component\HttpFoundation\Request {#6 …}
        $type: 1
        $catch: true
      }
    }
    /home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/index.php:83 {$kernel = new Kernel($env, $debug);$response = $kernel->handle($request);$response->send();
      arguments: {
        $request: Symfony\Component\HttpFoundation\Request {#6 …}
      }
    }
  }
}
logger
Symfony\Bridge\Monolog\Logger {#517 …8}

Request Headers

Header Value
accept
"*/*"
accept-encoding
"gzip, br, zstd, deflate"
authorization
""
host
"www.eccube41to42test.rmx.cfbx.jp"
user-agent
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
x-php-ob-level
"0"

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, 20 May 2026 10:14:30 GMT"
set-cookie
"maintenance_token=deleted; expires=Tue, 20-May-2025 10:14:29 GMT; Max-Age=0; path=/; httponly"
x-debug-exception
"Variable%20%22disp_number_form%22%20does%20not%20exist."
x-debug-exception-file
"%2Fhome%2Fgswubshm%2Fpublic_html%2Feccube41to42test.rmx.cfbx.jp%2Fprd%2Fapp%2Ftemplate%2ForiginalTemplate%2FProduct%2Flist.twig:176"
x-debug-token
"8bebcb"

Cookies

Request Cookies

No request cookies

Response Cookies

Key Value
maintenance_token
Symfony\Component\HttpFoundation\Cookie {#7626
  #name: "maintenance_token"
  #value: null
  #domain: null
  #expire: 1
  #path: "/"
  #secure: false
  #httpOnly: true
  -raw: false
  -sameSite: null
  -secureDefault: false
}

Session 12

Session Metadata

Key Value
Created
"Wed, 20 May 26 19:14:30 +0900"
Last used
"Wed, 20 May 26 19:14:30 +0900"
Lifetime
0

Session Attributes

Attribute Value
_csrf/https-Eccube\Form\Type\AddCartType
"UaiiGBgVJrtuQeIgYnpKsoUeZpVBmR9tlETi_QUbz18"
_csrf/https-_token
"fMbJ_-9082dJk9JwlSOEIop66DO0NlTpdJHOX7ux9ug"

Session Usage

12 Usages
Stateless check enabled
Usage
Symfony\Component\Security\Core\Authentication\Token\Storage\UsageTrackingTokenStorage:44
[
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/security-core/Authentication/Token/Storage/UsageTrackingTokenStorage.php"
    "line" => 44
    "function" => "getMetadataBag"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/src/Eccube/Log/Processor/TokenProcessor.php"
    "line" => 34
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Core\Authentication\Token\Storage\UsageTrackingTokenStorage"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/monolog/monolog/src/Monolog/Logger.php"
    "line" => 368
    "function" => "__invoke"
    "class" => "Eccube\Log\Processor\TokenProcessor"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/monolog/monolog/src/Monolog/Logger.php"
    "line" => 574
    "function" => "addRecord"
    "class" => "Monolog\Logger"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/security-http/Authentication/AuthenticatorManager.php"
    "line" => 99
    "function" => "debug"
    "class" => "Monolog\Logger"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/security-http/Firewall/AuthenticatorManagerListener.php"
    "line" => 34
    "function" => "supports"
    "class" => "Symfony\Component\Security\Http\Authentication\AuthenticatorManager"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/security-http/Authenticator/Debug/TraceableAuthenticatorManagerListener.php"
    "line" => 39
    "function" => "supports"
    "class" => "Symfony\Component\Security\Http\Firewall\AuthenticatorManagerListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/security-bundle/Debug/WrappedLazyListener.php"
    "line" => 38
    "function" => "supports"
    "class" => "Symfony\Component\Security\Http\Authenticator\Debug\TraceableAuthenticatorManagerListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/security-http/Firewall/AbstractListener.php"
    "line" => 25
    "function" => "supports"
    "class" => "Symfony\Bundle\SecurityBundle\Debug\WrappedLazyListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/security-bundle/Debug/TraceableFirewallListener.php"
    "line" => 73
    "function" => "__invoke"
    "class" => "Symfony\Component\Security\Http\Firewall\AbstractListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/security-http/Firewall.php"
    "line" => 92
    "function" => "callListeners"
    "class" => "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelRequest"
    "class" => "Symfony\Component\Security\Http\Firewall"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 139
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/index.php"
    "line" => 83
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage:98
[
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/security-csrf/TokenStorage/SessionTokenStorage.php"
    "line" => 98
    "function" => "start"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/security-csrf/CsrfTokenManager.php"
    "line" => 72
    "function" => "hasToken"
    "class" => "Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php"
    "line" => 78
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Csrf\CsrfTokenManager"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/form/ResolvedFormType.php"
    "line" => 167
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\Csrf\Type\FormTypeCsrfExtension"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
    "line" => 111
    "function" => "finishView"
    "class" => "Symfony\Component\Form\ResolvedFormType"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/form/ResolvedFormType.php"
    "line" => 160
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
    "line" => 111
    "function" => "finishView"
    "class" => "Symfony\Component\Form\ResolvedFormType"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/form/Form.php"
    "line" => 1070
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/src/Eccube/Controller/ProductController.php"
    "line" => 192
    "function" => "createView"
    "class" => "Symfony\Component\Form\Form"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 163
    "function" => "index"
    "class" => "Eccube\Controller\ProductController"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/index.php"
    "line" => 83
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage:101
[
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/security-csrf/TokenStorage/SessionTokenStorage.php"
    "line" => 101
    "function" => "has"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/security-csrf/CsrfTokenManager.php"
    "line" => 72
    "function" => "hasToken"
    "class" => "Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php"
    "line" => 78
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Csrf\CsrfTokenManager"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/form/ResolvedFormType.php"
    "line" => 167
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\Csrf\Type\FormTypeCsrfExtension"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
    "line" => 111
    "function" => "finishView"
    "class" => "Symfony\Component\Form\ResolvedFormType"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/form/ResolvedFormType.php"
    "line" => 160
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
    "line" => 111
    "function" => "finishView"
    "class" => "Symfony\Component\Form\ResolvedFormType"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/form/Form.php"
    "line" => 1070
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/src/Eccube/Controller/ProductController.php"
    "line" => 192
    "function" => "createView"
    "class" => "Symfony\Component\Form\Form"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 163
    "function" => "index"
    "class" => "Eccube\Controller\ProductController"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/index.php"
    "line" => 83
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage:88
[
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/security-csrf/TokenStorage/SessionTokenStorage.php"
    "line" => 88
    "function" => "set"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/security-csrf/CsrfTokenManager.php"
    "line" => 77
    "function" => "setToken"
    "class" => "Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php"
    "line" => 78
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Csrf\CsrfTokenManager"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/form/ResolvedFormType.php"
    "line" => 167
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\Csrf\Type\FormTypeCsrfExtension"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
    "line" => 111
    "function" => "finishView"
    "class" => "Symfony\Component\Form\ResolvedFormType"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/form/ResolvedFormType.php"
    "line" => 160
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
    "line" => 111
    "function" => "finishView"
    "class" => "Symfony\Component\Form\ResolvedFormType"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/form/Form.php"
    "line" => 1070
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/src/Eccube/Controller/ProductController.php"
    "line" => 192
    "function" => "createView"
    "class" => "Symfony\Component\Form\Form"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 163
    "function" => "index"
    "class" => "Eccube\Controller\ProductController"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/index.php"
    "line" => 83
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage:71
[
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/security-csrf/TokenStorage/SessionTokenStorage.php"
    "line" => 71
    "function" => "has"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/security-csrf/CsrfTokenManager.php"
    "line" => 73
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php"
    "line" => 78
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Csrf\CsrfTokenManager"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/form/ResolvedFormType.php"
    "line" => 167
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\Csrf\Type\FormTypeCsrfExtension"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
    "line" => 111
    "function" => "finishView"
    "class" => "Symfony\Component\Form\ResolvedFormType"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/form/ResolvedFormType.php"
    "line" => 160
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
    "line" => 111
    "function" => "finishView"
    "class" => "Symfony\Component\Form\ResolvedFormType"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/form/Form.php"
    "line" => 1070
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/src/Eccube/Controller/ProductController.php"
    "line" => 192
    "function" => "createView"
    "class" => "Symfony\Component\Form\Form"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 163
    "function" => "index"
    "class" => "Eccube\Controller\ProductController"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/index.php"
    "line" => 83
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage:75
[
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/security-csrf/TokenStorage/SessionTokenStorage.php"
    "line" => 75
    "function" => "get"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/security-csrf/CsrfTokenManager.php"
    "line" => 73
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Csrf\TokenStorage\SessionTokenStorage"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/form/Extension/Csrf/Type/FormTypeCsrfExtension.php"
    "line" => 78
    "function" => "getToken"
    "class" => "Symfony\Component\Security\Csrf\CsrfTokenManager"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/form/ResolvedFormType.php"
    "line" => 167
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\Csrf\Type\FormTypeCsrfExtension"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
    "line" => 111
    "function" => "finishView"
    "class" => "Symfony\Component\Form\ResolvedFormType"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/form/ResolvedFormType.php"
    "line" => 160
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/form/Extension/DataCollector/Proxy/ResolvedTypeDataCollectorProxy.php"
    "line" => 111
    "function" => "finishView"
    "class" => "Symfony\Component\Form\ResolvedFormType"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/form/Form.php"
    "line" => 1070
    "function" => "finishView"
    "class" => "Symfony\Component\Form\Extension\DataCollector\Proxy\ResolvedTypeDataCollectorProxy"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/src/Eccube/Controller/ProductController.php"
    "line" => 192
    "function" => "createView"
    "class" => "Symfony\Component\Form\Form"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 163
    "function" => "index"
    "class" => "Eccube\Controller\ProductController"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/index.php"
    "line" => 83
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Eccube\Service\CartService:174
[
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/src/Eccube/Service/CartService.php"
    "line" => 174
    "function" => "get"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/src/Eccube/Service/CartService.php"
    "line" => 151
    "function" => "getSessionCarts"
    "class" => "Eccube\Service\CartService"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/var/cache/dev/ContainerPxx794n/CartService_9dde17f.php"
    "line" => 29
    "function" => "getCarts"
    "class" => "Eccube\Service\CartService"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/src/Eccube/Twig/Extension/CartServiceExtension.php"
    "line" => 50
    "function" => "getCarts"
    "class" => "ContainerPxx794n\CartService_9dde17f"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/var/cache/dev/twig/bf/bfc9c168cc2ea211c6be8652327aa05255cc0e7c0235c7c167a140593575d262.php"
    "line" => 43
    "function" => "get_all_carts"
    "class" => "Eccube\Twig\Extension\CartServiceExtension"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_a61374dde59ed081903d3f6468e67d22901762d88eb3061709b38489ea62b6a2"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/twig/twig/src/Template.php"
    "line" => 390
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/twig/twig/src/Extension/CoreExtension.php"
    "line" => 1290
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/var/cache/dev/twig/99/99691f7b1b5f253d531aca2d00969219b2769d27c2c392b6bad08c0a349e648a.php"
    "line" => 84
    "function" => "twig_include"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_b3302df34864b010a6436a6d16ba8ef675767ae07aa00b5496a0fd3aded6b6e0"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/twig/twig/src/Template.php"
    "line" => 390
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/twig/twig/src/TemplateWrapper.php"
    "line" => 45
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/twig/twig/src/Environment.php"
    "line" => 318
    "function" => "render"
    "class" => "Twig\TemplateWrapper"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/src/Eccube/Twig/Extension/TwigIncludeExtension.php"
    "line" => 42
    "function" => "render"
    "class" => "Twig\Environment"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/var/cache/dev/twig/f8/f89d37d981112fe9a63156ab6174df75d39e469f2c7c1603c6b52cd7ce2c1cef.php"
    "line" => 61
    "function" => "include_dispatch"
    "class" => "Eccube\Twig\Extension\TwigIncludeExtension"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_ee581318cf8238b87587f13958c410c3c4f993c3d88bd8379d247eb0135cffde"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/twig/twig/src/Template.php"
    "line" => 390
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/twig/twig/src/Extension/CoreExtension.php"
    "line" => 1290
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/var/cache/dev/twig/65/65c90250b0e25c3a09ee32364a04ee85dac7257aebacbbf5839a7ad79be7e33f.php"
    "line" => 133
    "function" => "twig_include"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_e6f3181a827b35105be229e1afdd8b87ea705100acc7b657118fdbdc4e62bd78"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/var/cache/dev/twig/da/da26becddc7fe9c6dfe60fdc611a898bf4bb401eeb3bb45d945760efa1a490d0.php"
    "line" => 60
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/twig/twig/src/Template.php"
    "line" => 405
    "function" => "doDisplay"
    "class" => "__TwigTemplate_75237831317f23d23ffe2184314529d674fca4d741b8417c3cc3819c88fc17f5"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/twig/twig/src/Template.php"
    "line" => 378
    "function" => "displayWithErrorHandling"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/src/Eccube/Twig/Template.php"
    "line" => 41
    "function" => "display"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/twig/twig/src/Template.php"
    "line" => 390
    "function" => "display"
    "class" => "Eccube\Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/twig/twig/src/TemplateWrapper.php"
    "line" => 45
    "function" => "render"
    "class" => "Twig\Template"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/twig/twig/src/Environment.php"
    "line" => 318
    "function" => "render"
    "class" => "Twig\TemplateWrapper"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/sensio/framework-extra-bundle/src/EventListener/TemplateListener.php"
    "line" => 115
    "function" => "render"
    "class" => "Twig\Environment"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelView"
    "class" => "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 168
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/index.php"
    "line" => 83
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:72
[
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php"
    "line" => 72
    "function" => "getMetadataBag"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/Profiler/Profiler.php"
    "line" => 161
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/EventListener/ProfilerListener.php"
    "line" => 108
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\Profiler\Profiler"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelResponse"
    "class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 196
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 184
    "function" => "filterResponse"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/EventListener/ErrorListener.php"
    "line" => 91
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelException"
    "class" => "Symfony\Component\HttpKernel\EventListener\ErrorListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 223
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 86
    "function" => "handleThrowable"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/index.php"
    "line" => 83
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:73
[
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php"
    "line" => 73
    "function" => "getMetadataBag"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/Profiler/Profiler.php"
    "line" => 161
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/EventListener/ProfilerListener.php"
    "line" => 108
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\Profiler\Profiler"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelResponse"
    "class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 196
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 184
    "function" => "filterResponse"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/EventListener/ErrorListener.php"
    "line" => 91
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelException"
    "class" => "Symfony\Component\HttpKernel\EventListener\ErrorListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 223
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 86
    "function" => "handleThrowable"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/index.php"
    "line" => 83
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:74
[
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php"
    "line" => 74
    "function" => "getMetadataBag"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/Profiler/Profiler.php"
    "line" => 161
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/EventListener/ProfilerListener.php"
    "line" => 108
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\Profiler\Profiler"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelResponse"
    "class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 196
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 184
    "function" => "filterResponse"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/EventListener/ErrorListener.php"
    "line" => 91
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelException"
    "class" => "Symfony\Component\HttpKernel\EventListener\ErrorListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 223
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 86
    "function" => "handleThrowable"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/index.php"
    "line" => 83
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:75
[
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php"
    "line" => 75
    "function" => "all"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/Profiler/Profiler.php"
    "line" => 161
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/EventListener/ProfilerListener.php"
    "line" => 108
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\Profiler\Profiler"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelResponse"
    "class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 196
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 184
    "function" => "filterResponse"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/EventListener/ErrorListener.php"
    "line" => 91
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelException"
    "class" => "Symfony\Component\HttpKernel\EventListener\ErrorListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 223
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 86
    "function" => "handleThrowable"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/index.php"
    "line" => 83
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\Kernel"
    "type" => "->"
  ]
]
Symfony\Component\HttpKernel\DataCollector\RequestDataCollector:76
[
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/DataCollector/RequestDataCollector.php"
    "line" => 76
    "function" => "getFlashBag"
    "class" => "Symfony\Component\HttpFoundation\Session\Session"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/Profiler/Profiler.php"
    "line" => 161
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\DataCollector\RequestDataCollector"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/EventListener/ProfilerListener.php"
    "line" => 108
    "function" => "collect"
    "class" => "Symfony\Component\HttpKernel\Profiler\Profiler"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelResponse"
    "class" => "Symfony\Component\HttpKernel\EventListener\ProfilerListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 196
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 184
    "function" => "filterResponse"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 75
    "function" => "handleRaw"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/EventListener/ErrorListener.php"
    "line" => 91
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/Debug/WrappedListener.php"
    "line" => 117
    "function" => "onKernelException"
    "class" => "Symfony\Component\HttpKernel\EventListener\ErrorListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 230
    "function" => "__invoke"
    "class" => "Symfony\Component\EventDispatcher\Debug\WrappedListener"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/EventDispatcher.php"
    "line" => 59
    "function" => "callListeners"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/event-dispatcher/Debug/TraceableEventDispatcher.php"
    "line" => 154
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\EventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 223
    "function" => "dispatch"
    "class" => "Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/HttpKernel.php"
    "line" => 86
    "function" => "handleThrowable"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/vendor/symfony/http-kernel/Kernel.php"
    "line" => 202
    "function" => "handle"
    "class" => "Symfony\Component\HttpKernel\HttpKernel"
    "type" => "->"
  ]
  [
    "file" => "/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/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"
CRAWLER_LOAD_LIMIT
"5.2"
CRAWLER_USLEEP
"1000"
DATABASE_SERVER_VERSION
"10.2.34-MariaDB-cll-lve"
DATABASE_URL
"mysql://gswubshm_S4wQJGt3pqYW:0qwVvCpNh2ZNpP0iiEYHfPXn@localhost/gswubshm_YwCwMH2G9dXA"
DOCUMENT_ROOT
"/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd"
ECCUBE_ADMIN_ALLOW_HOSTS
"[]"
ECCUBE_ADMIN_ROUTE
"R6yJPACAnmR6"
ECCUBE_AUTH_MAGIC
"IgvEoinmeUT6qQMUXDwCqIWC9ezppw68"
ECCUBE_COOKIE_PATH
"/"
ECCUBE_FORCE_SSL
"true"
ECCUBE_LOCALE
"ja"
ECCUBE_TEMPLATE_CODE
"originalTemplate"
GEOIP_ADDR
"216.73.217.172"
GEOIP_CONTINENT_CODE
"NA"
GEOIP_COUNTRY_CODE
"US"
HTTPS
"on"
HTTP_ACCEPT
"*/*"
HTTP_ACCEPT_ENCODING
"gzip, br, zstd, deflate"
HTTP_AUTHORIZATION
""
HTTP_HOST
"www.eccube41to42test.rmx.cfbx.jp"
HTTP_USER_AGENT
"Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
MAILER_URL
"smtp://mail.30s-blockhead.com:465?encryption=ssl&auth_mode=login&username=office@30s-blockhead.com&password=tsujioka1020"
PATH
"/usr/local/bin:/bin:/usr/bin"
PHP_SELF
"/index.php"
QUERY_STRING
"category_id=7"
REDIRECT_QUERY_STRING
"category_id=7"
REDIRECT_REQUEST_METHOD
"GET"
REDIRECT_STATUS
"200"
REDIRECT_URL
"/products/list"
REMOTE_ADDR
"216.73.217.172"
REMOTE_PORT
"22524"
REQUEST_METHOD
"GET"
REQUEST_SCHEME
"https"
REQUEST_TIME
1779272069
REQUEST_TIME_FLOAT
1779272069.4481
REQUEST_URI
"/products/list?category_id=7"
SCRIPT_FILENAME
"/home/gswubshm/public_html/eccube41to42test.rmx.cfbx.jp/prd/index.php"
SCRIPT_NAME
"/index.php"
SCRIPT_URI
"https://www.eccube41to42test.rmx.cfbx.jp/products/list"
SCRIPT_URL
"/products/list"
SERVER_ADDR
"160.251.152.23"
SERVER_ADMIN
"webmaster@eccube41to42test.rmx.cfbx.jp"
SERVER_NAME
"www.eccube41to42test.rmx.cfbx.jp"
SERVER_PORT
"443"
SERVER_PROTOCOL
"HTTP/1.1"
SERVER_SOFTWARE
"LiteSpeed"
SSL_CIPHER
"TLS_AES_256_GCM_SHA384"
SSL_CIPHER_ALGKEYSIZE
"256"
SSL_CIPHER_USEKEYSIZE
"256"
SSL_PROTOCOL
"TLSv1.3"
X-LSCACHE
"on,crawler"
X_SPDY
"HTTP2"
argc
1
argv
[
  "category_id=7"
]

Parent Request

Return to parent request (token = 0705b8)

Key Value
_controller
"Eccube\Controller\ProductController::index"
_firewall_context
"security.firewall.map.context.customer"
_remove_csp_headers
true
_route
"product_list"
_route_params
[]
_security_firewall_run
"_security_customer"
_stopwatch_token
"31d117"
_template
Sensio\Bundle\FrameworkExtraBundle\Configuration\Template {#3871
  #template: "Product/list.twig"
  -vars: []
  -streamable: false
  -owner: [
    Eccube\Controller\ProductController {#3436
      #purchaseFlow: Eccube\Service\PurchaseFlow\PurchaseFlow {#3410 …}
      #customerFavoriteProductRepository: Eccube\Repository\CustomerFavoriteProductRepository {#3435 …}
      #cartService: ContainerPxx794n\CartService_9dde17f {#411 …}
      #productRepository: Eccube\Repository\ProductRepository {#403 …}
      #BaseInfo: Eccube\Entity\BaseInfo {#3526 …}
      #helper: Symfony\Component\Security\Http\Authentication\AuthenticationUtils {#3769 …}
      #productListMaxRepository: Eccube\Repository\Master\ProductListMaxRepository {#3770 …}
      -title: ""
      #eccubeConfig: Eccube\Common\EccubeConfig {#561 …}
      #entityManager: ContainerPxx794n\EntityManager_9a5be93 {#463 …}
      #translator: Symfony\Component\Translation\DataCollectorTranslator {#681 …}
      #formFactory: Symfony\Component\Form\FormFactory {#3801 …}
      #eventDispatcher: Symfony\Component\HttpKernel\Debug\TraceableEventDispatcher {#630 …}
      #session: Symfony\Component\HttpFoundation\Session\Session {#651 …}
      #container: Symfony\Component\DependencyInjection\Argument\ServiceLocator {#3814 …}
    }
    "index"
  ]
}