Symfony Exception

NotFoundHttpException

HTTP 404 Not Found

Exception

Symfony\Component\HttpKernel\Exception\ NotFoundHttpException

  1.      * @return array
  2.      */
  3.     public function detail(Request $requestProduct $Product)
  4.     {
  5.         if (!$this->checkVisibility($Product)) {
  6.             throw new NotFoundHttpException();
  7.         }
  8.         $builder $this->formFactory->createNamedBuilder(
  9.             '',
  10.             AddCartType::class,
ProductController->detail(object(Request), object(Product)) in /home/awswebuser/public_html/shop.t-kouryu.com/app/Plugin/Cecplgbase/Controller/ProductController.php (line 174)
  1.      */
  2.     public function detail(Request $requestProduct $Product)
  3.     {
  4.         //親のdetailで作成される変数を用意する。titleとsub_titleは使わない
  5.         $arrRarent parent::detail($request,$Product);
  6.         $form $arrRarent['form'];
  7.         $Product $arrRarent['Product'];
  8.         $is_favorite $arrRarent['is_favorite'];
  9.         // 規格名1/2から組み合わせを生成し, DBから取得した商品規格とマージする.
ProductController->detail(object(Request), object(Product)) in /home/awswebuser/public_html/shop.t-kouryu.com/vendor/symfony/http-kernel/HttpKernel.php (line 151)
  1.         $this->dispatcher->dispatch(KernelEvents::CONTROLLER_ARGUMENTS$event);
  2.         $controller $event->getController();
  3.         $arguments $event->getArguments();
  4.         // call controller
  5.         $response = \call_user_func_array($controller$arguments);
  6.         // view
  7.         if (!$response instanceof Response) {
  8.             $event = new GetResponseForControllerResultEvent($this$request$type$response);
  9.             $this->dispatcher->dispatch(KernelEvents::VIEW$event);
  1.     public function handle(Request $request$type HttpKernelInterface::MASTER_REQUEST$catch true)
  2.     {
  3.         $request->headers->set('X-Php-Ob-Level', (string) ob_get_level());
  4.         try {
  5.             return $this->handleRaw($request$type);
  6.         } catch (\Exception $e) {
  7.             if ($e instanceof RequestExceptionInterface) {
  8.                 $e = new BadRequestHttpException($e->getMessage(), $e);
  9.             }
  10.             if (false === $catch) {
HttpKernel->handle(object(Request), 1, true) in /home/awswebuser/public_html/shop.t-kouryu.com/vendor/symfony/http-kernel/Kernel.php (line 200)
  1.         $this->boot();
  2.         ++$this->requestStackSize;
  3.         $this->resetServices true;
  4.         try {
  5.             return $this->getHttpKernel()->handle($request$type$catch);
  6.         } finally {
  7.             --$this->requestStackSize;
  8.         }
  9.     }
Kernel->handle(object(Request)) in /home/awswebuser/public_html/shop.t-kouryu.com/index.php (line 76)
  1.         return;
  2.     }
  3. }
  4. $kernel = new Kernel($env$debug);
  5. $response $kernel->handle($request);
  6. $response->send();
  7. $kernel->terminate($request$response);

Logs 1

Level Channel Message
DEBUG 00:23:24 doctrine SET SESSION time_zone = '+00:00'
DEBUG 00:23:24 doctrine SELECT t0.id AS id_1, t0.company_name AS company_name_2, t0.company_kana AS company_kana_3, t0.postal_code AS postal_code_4, t0.addr01 AS addr01_5, t0.addr02 AS addr02_6, t0.phone_number AS phone_number_7, t0.business_hour AS business_hour_8, t0.email01 AS email01_9, t0.email02 AS email02_10, t0.email03 AS email03_11, t0.email04 AS email04_12, t0.shop_name AS shop_name_13, t0.shop_kana AS shop_kana_14, t0.shop_name_eng AS shop_name_eng_15, t0.update_date AS update_date_16, t0.good_traded AS good_traded_17, t0.message AS message_18, t0.delivery_free_amount AS delivery_free_amount_19, t0.delivery_free_quantity AS delivery_free_quantity_20, t0.option_mypage_order_status_display AS option_mypage_order_status_display_21, t0.option_nostock_hidden AS option_nostock_hidden_22, t0.option_favorite_product AS option_favorite_product_23, t0.option_product_delivery_fee AS option_product_delivery_fee_24, t0.option_product_tax_rule AS option_product_tax_rule_25, t0.option_customer_activate AS option_customer_activate_26, t0.option_remember_me AS option_remember_me_27, t0.authentication_key AS authentication_key_28, t0.php_path AS php_path_29, t0.option_point AS option_point_30, t0.basic_point_rate AS basic_point_rate_31, t0.point_conversion_rate AS point_conversion_rate_32, t0.welcome_point AS welcome_point_33, t0.first_point AS first_point_34, t0.delivery_advance_free_amount_1 AS delivery_advance_free_amount_1_35, t0.delivery_advance_free_amount_47 AS delivery_advance_free_amount_47_36, t0.customer_discount_rate AS customer_discount_rate_37, t0.country_id AS country_id_38, t0.pref_id AS pref_id_39, t0.discriminator_type FROM dtb_base_info t0 WHERE t0.id = ? AND t0.discriminator_type IN ('baseinfo')
INFO 00:23:24 php User Deprecated: The "base_template_class" option on Twig\Environment is deprecated since Twig 2.7.0.
INFO 00:23:24 php User Deprecated: Creating Doctrine\ORM\Mapping\UnderscoreNamingStrategy without making it number aware is deprecated and will be removed in Doctrine ORM 3.0.
INFO 00:23:24 php User Deprecated: The type "datetime" was implicitly marked as commented due to the configuration. This is deprecated and will be removed in DoctrineBundle 2.0. Either set the "commented" attribute in the configuration to "false" or mark the type as commented in "Eccube\Doctrine\DBAL\Types\UTCDateTimeType::requiresSQLCommentHint()."
INFO 00:23:24 php User Deprecated: The type "datetimetz" was implicitly marked as commented due to the configuration. This is deprecated and will be removed in DoctrineBundle 2.0. Either set the "commented" attribute in the configuration to "false" or mark the type as commented in "Eccube\Doctrine\DBAL\Types\UTCDateTimeTzType::requiresSQLCommentHint()."
INFO 00:23:24 php User Deprecated: The "Plugin\Cecplgbase\Repository\ConfigRepository" service is private, getting it from the container is deprecated since Symfony 3.2 and will fail in 4.0. You should either make the service public, or stop using the container directly and use dependency injection instead.
INFO 00:23:24 php User Deprecated: The "Plugin\Cecplgbase\Repository\SimpleClassNameRepository" service is private, getting it from the container is deprecated since Symfony 3.2 and will fail in 4.0. You should either make the service public, or stop using the container directly and use dependency injection instead.
INFO 00:23:24 php User Deprecated: The "Plugin\Cecplgbase\Repository\SimpleClassCategoryRepository" service is private, getting it from the container is deprecated since Symfony 3.2 and will fail in 4.0. You should either make the service public, or stop using the container directly and use dependency injection instead.
INFO 00:23:24 front INIT
INFO 00:23:24 request Matched route "product_detail".
DEBUG 00:23:24 event Notified event "security.authentication.success" to listener "Plugin\Cecplgbase\Event::onAuthenticationSuccess".
INFO 00:23:24 security Populated the TokenStorage with an anonymous Token.
INFO 00:23:24 front PROCESS START
DEBUG 00:23:24 doctrine SELECT d0_.id AS id_0, d0_.page_name AS page_name_1, d0_.url AS url_2, d0_.file_name AS file_name_3, d0_.edit_type AS edit_type_4, d0_.author AS author_5, d0_.description AS description_6, d0_.keyword AS keyword_7, d0_.create_date AS create_date_8, d0_.update_date AS update_date_9, d0_.meta_robots AS meta_robots_10, d0_.meta_tags AS meta_tags_11, d1_.page_id AS page_id_12, d1_.layout_id AS layout_id_13, d1_.sort_no AS sort_no_14, d2_.id AS id_15, d2_.layout_name AS layout_name_16, d2_.create_date AS create_date_17, d2_.update_date AS update_date_18, d0_.discriminator_type AS discriminator_type_19, d0_.master_page_id AS master_page_id_20, d1_.discriminator_type AS discriminator_type_21, d1_.page_id AS page_id_22, d1_.layout_id AS layout_id_23, d2_.discriminator_type AS discriminator_type_24, d2_.device_type_id AS device_type_id_25 FROM dtb_page d0_ LEFT JOIN dtb_page_layout d1_ ON d0_.id = d1_.page_id AND d1_.discriminator_type IN ('pagelayout') LEFT JOIN dtb_layout d2_ ON d1_.layout_id = d2_.id AND d2_.discriminator_type IN ('layout') WHERE (d0_.url = ?) AND d0_.discriminator_type IN ('page')
DEBUG 00:23:24 doctrine SELECT d0_.id AS id_0, d0_.layout_name AS layout_name_1, d0_.create_date AS create_date_2, d0_.update_date AS update_date_3, d1_.section AS section_4, d1_.block_id AS block_id_5, d1_.layout_id AS layout_id_6, d1_.block_row AS block_row_7, d2_.id AS id_8, d2_.block_name AS block_name_9, d2_.file_name AS file_name_10, d2_.use_controller AS use_controller_11, d2_.deletable AS deletable_12, d2_.create_date AS create_date_13, d2_.update_date AS update_date_14, d2_.field_type AS field_type_15, d2_.field_option AS field_option_16, d0_.discriminator_type AS discriminator_type_17, d0_.device_type_id AS device_type_id_18, d1_.discriminator_type AS discriminator_type_19, d1_.block_id AS block_id_20, d1_.layout_id AS layout_id_21, d2_.discriminator_type AS discriminator_type_22, d2_.device_type_id AS device_type_id_23, d2_.authority_id AS authority_id_24 FROM dtb_layout d0_ LEFT JOIN dtb_block_position d1_ ON d0_.id = d1_.layout_id AND d1_.discriminator_type IN ('blockposition') LEFT JOIN dtb_block d2_ ON d1_.block_id = d2_.id AND d2_.discriminator_type IN ('block') WHERE (d0_.id = ?) AND d0_.discriminator_type IN ('layout') ORDER BY d1_.block_row ASC
DEBUG 00:23:24 doctrine SET SESSION TRANSACTION ISOLATION LEVEL READ COMMITTED
DEBUG 00:23:24 doctrine "START TRANSACTION"
DEBUG 00:23:24 front Begin Transaction.
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SELECT t0.id AS id_1, t0.admin_header AS admin_header_2, t0.front_header AS front_header_3, t0.front_footer AS front_footer_4, t0.order_sex_on AS order_sex_on_5, t0.order_birth_on AS order_birth_on_6, t0.customer_sex_on AS customer_sex_on_7, t0.customer_birth_on AS customer_birth_on_8, t0.product_publish_date_on AS product_publish_date_on_9, t0.product_customer_only_on AS product_customer_only_on_10, t0.product_customer_price_on AS product_customer_price_on_11, t0.product_code_mandatory_on AS product_code_mandatory_on_12, t0.welcome_point_on AS welcome_point_on_13, t0.first_point_on AS first_point_on_14, t0.customer_withdrawing_automail_on AS customer_withdrawing_automail_on_15, t0.fax_number_on AS fax_number_on_16, t0.fax_number_devided_on AS fax_number_devided_on_17, t0.phone_number_devided_on AS phone_number_devided_on_18, t0.delivery_advance_on AS delivery_advance_on_19, t0.delivery_advance_label AS delivery_advance_label_20, t0.delivery_advance_unit AS delivery_advance_unit_21, t0.delivery_advance_cart AS delivery_advance_cart_22, t0.delivery_advance_free_on AS delivery_advance_free_on_23, t0.delivery_advance_free_amount_1 AS delivery_advance_free_amount_1_24, t0.delivery_advance_free_amount_47 AS delivery_advance_free_amount_47_25, t0.top_redirect_on AS top_redirect_on_26, t0.top_redirect_url AS top_redirect_url_27, t0.order_status_flex_on AS order_status_flex_on_28, t0.order_status_by_mail_on AS order_status_by_mail_on_29, t0.masterdata_authority_on AS masterdata_authority_on_30, t0.simplify_deleting_on AS simplify_deleting_on_31, t0.disable_stock_change_by_order_edit_on AS disable_stock_change_by_order_edit_on_32, t0.error_page_redirect_on AS error_page_redirect_on_33, t0.simple_class_on AS simple_class_on_34, t0.login_lock_on AS login_lock_on_35, t0.login_lock_failer_count AS login_lock_failer_count_36, t0.login_lock_duration_second AS login_lock_duration_second_37, t0.login_lock_minute AS login_lock_minute_38, t0.basic_auth AS basic_auth_39, t0.receipt_on AS receipt_on_40, t0.csv_order_group_by_order AS csv_order_group_by_order_41, t0.csv_order_group_by_shipping AS csv_order_group_by_shipping_42, t0.csv_order_only_product AS csv_order_only_product_43 FROM plg_cecplgbase_config t0 WHERE t0.id = ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Plugin\Taba2FA\EventListener\InitializeListener::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Symfony\Bridge\Monolog\Processor\WebProcessor::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Eccube\EventListener\IpAddrListener::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Eccube\EventListener\MobileTemplatePathListener::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Eccube\EventListener\LogListener::onKernelRequestEarly".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\TranslatorListener::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Eccube\EventListener\LogListener::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Eccube\EventListener\TwigInitializeListener::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "SunCat\MobileDetectBundle\EventListener\RequestResponseListener::handleRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Eccube\EventListener\TransactionListener::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Plugin\Cecplgbase\Event::OnKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Plugin\Cecplgresizeimage\Event::OnKernelRequest".
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
INFO 00:23:24 front LOGIC START
INFO 00:23:24 php User Deprecated: The repository_method option of @ParamConverter is deprecated and will be removed in 6.0. Use the expr option or @Entity.
INFO 00:23:24 php User Deprecated: The repository_method option of @ParamConverter is deprecated and will be removed in 6.0. Use the expr option or @Entity.
DEBUG 00:23:24 doctrine SELECT d0_.id AS id_0, d0_.name AS name_1, d0_.note AS note_2, d0_.description_list AS description_list_3, d0_.description_detail AS description_detail_4, d0_.search_word AS search_word_5, d0_.free_area AS free_area_6, d0_.create_date AS create_date_7, d0_.update_date AS update_date_8, d0_.publish_date_start AS publish_date_start_9, d0_.publish_date_end AS publish_date_end_10, d0_.customer_only AS customer_only_11, d0_.author AS author_12, d0_.description AS description_13, d0_.keyword AS keyword_14, d0_.meta_robots AS meta_robots_15, d0_.meta_tags AS meta_tags_16, d0_.title AS title_17, d1_.id AS id_18, d1_.product_code AS product_code_19, d1_.stock AS stock_20, d1_.stock_unlimited AS stock_unlimited_21, d1_.sale_limit AS sale_limit_22, d1_.price01 AS price01_23, d1_.price02 AS price02_24, d1_.delivery_fee AS delivery_fee_25, d1_.visible AS visible_26, d1_.create_date AS create_date_27, d1_.update_date AS update_date_28, d1_.currency_code AS currency_code_29, d1_.point_rate AS point_rate_30, d1_.price03 AS price03_31, d1_.delivery_advance_value AS delivery_advance_value_32, d2_.id AS id_33, d2_.backend_name AS backend_name_34, d2_.name AS name_35, d2_.sort_no AS sort_no_36, d2_.visible AS visible_37, d2_.create_date AS create_date_38, d2_.update_date AS update_date_39, d3_.id AS id_40, d3_.backend_name AS backend_name_41, d3_.name AS name_42, d3_.sort_no AS sort_no_43, d3_.visible AS visible_44, d3_.create_date AS create_date_45, d3_.update_date AS update_date_46, d4_.id AS id_47, d4_.file_name AS file_name_48, d4_.sort_no AS sort_no_49, d4_.create_date AS create_date_50, d5_.id AS id_51, d5_.create_date AS create_date_52, d0_.discriminator_type AS discriminator_type_53, d0_.creator_id AS creator_id_54, d0_.product_status_id AS product_status_id_55, d1_.discriminator_type AS discriminator_type_56, d1_.product_id AS product_id_57, d1_.sale_type_id AS sale_type_id_58, d1_.class_category_id1 AS class_category_id1_59, d1_.class_category_id2 AS class_category_id2_60, d1_.delivery_duration_id AS delivery_duration_id_61, d1_.creator_id AS creator_id_62, d2_.discriminator_type AS discriminator_type_63, d2_.class_name_id AS class_name_id_64, d2_.creator_id AS creator_id_65, d3_.discriminator_type AS discriminator_type_66, d3_.class_name_id AS class_name_id_67, d3_.creator_id AS creator_id_68, d4_.discriminator_type AS discriminator_type_69, d4_.product_id AS product_id_70, d4_.creator_id AS creator_id_71, d5_.discriminator_type AS discriminator_type_72, d5_.product_id AS product_id_73, d5_.tag_id AS tag_id_74, d5_.creator_id AS creator_id_75 FROM dtb_product d0_ INNER JOIN dtb_product_class d1_ ON d0_.id = d1_.product_id AND d1_.discriminator_type IN ('productclass') LEFT JOIN dtb_class_category d2_ ON d1_.class_category_id1 = d2_.id AND d2_.discriminator_type IN ('classcategory') LEFT JOIN dtb_class_category d3_ ON d1_.class_category_id2 = d3_.id AND d3_.discriminator_type IN ('classcategory') LEFT JOIN dtb_product_image d4_ ON d0_.id = d4_.product_id AND d4_.discriminator_type IN ('productimage') LEFT JOIN dtb_product_tag d5_ ON d0_.id = d5_.product_id AND d5_.discriminator_type IN ('producttag') WHERE (d0_.id = ? AND d1_.visible = ?) AND d0_.discriminator_type IN ('product') ORDER BY d2_.sort_no DESC, d3_.sort_no DESC, d4_.sort_no ASC
DEBUG 00:23:24 doctrine SELECT t0.id AS id_1, t0.stock AS stock_2, t0.create_date AS create_date_3, t0.update_date AS update_date_4, t0.product_class_id AS product_class_id_5, t0.creator_id AS creator_id_6, t0.discriminator_type FROM dtb_product_stock t0 WHERE t0.product_class_id = ? AND t0.discriminator_type IN ('productstock')
DEBUG 00:23:24 doctrine SELECT t0.id AS id_1, t0.tax_rate AS tax_rate_2, t0.tax_adjust AS tax_adjust_3, t0.apply_date AS apply_date_4, t0.create_date AS create_date_5, t0.update_date AS update_date_6, t0.product_class_id AS product_class_id_7, t0.creator_id AS creator_id_8, t0.country_id AS country_id_9, t0.pref_id AS pref_id_10, t0.product_id AS product_id_11, t0.rounding_type_id AS rounding_type_id_12, t0.discriminator_type FROM dtb_tax_rule t0 WHERE t0.product_class_id = ? AND t0.discriminator_type IN ('taxrule')
DEBUG 00:23:24 doctrine SELECT t0.id AS id_1, t0.stock AS stock_2, t0.create_date AS create_date_3, t0.update_date AS update_date_4, t0.product_class_id AS product_class_id_5, t0.creator_id AS creator_id_6, t0.discriminator_type FROM dtb_product_stock t0 WHERE t0.product_class_id = ? AND t0.discriminator_type IN ('productstock')
DEBUG 00:23:24 doctrine SELECT d0_.id AS id_0, d0_.tax_rate AS tax_rate_1, d0_.tax_adjust AS tax_adjust_2, d0_.apply_date AS apply_date_3, d0_.create_date AS create_date_4, d0_.update_date AS update_date_5, d0_.discriminator_type AS discriminator_type_6, d0_.product_class_id AS product_class_id_7, d0_.creator_id AS creator_id_8, d0_.country_id AS country_id_9, d0_.pref_id AS pref_id_10, d0_.product_id AS product_id_11, d0_.rounding_type_id AS rounding_type_id_12 FROM dtb_tax_rule d0_ WHERE (d0_.apply_date < ? AND d0_.pref_id IS NULL AND d0_.country_id IS NULL AND d0_.product_id IS NULL AND d0_.product_class_id IS NULL) AND d0_.discriminator_type IN ('taxrule') ORDER BY d0_.apply_date DESC
INFO 00:23:24 php User Deprecated: The "Plugin\Cecplgbase\Repository\ConfigRepository" service is private, getting it from the container is deprecated since Symfony 3.2 and will fail in 4.0. You should either make the service public, or stop using the container directly and use dependency injection instead.
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
INFO 00:23:24 php User Deprecated: The "Plugin\Cecplgbase\Repository\ConfigRepository" service is private, getting it from the container is deprecated since Symfony 3.2 and will fail in 4.0. You should either make the service public, or stop using the container directly and use dependency injection instead.
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SELECT t0.id AS id_1, t0.tax_rate AS tax_rate_2, t0.tax_adjust AS tax_adjust_3, t0.apply_date AS apply_date_4, t0.create_date AS create_date_5, t0.update_date AS update_date_6, t0.product_class_id AS product_class_id_7, t0.creator_id AS creator_id_8, t0.country_id AS country_id_9, t0.pref_id AS pref_id_10, t0.product_id AS product_id_11, t0.rounding_type_id AS rounding_type_id_12, t0.discriminator_type FROM dtb_tax_rule t0 WHERE t0.product_class_id = ? AND t0.discriminator_type IN ('taxrule')
DEBUG 00:23:24 doctrine SELECT t0.id AS id_1, t0.stock AS stock_2, t0.create_date AS create_date_3, t0.update_date AS update_date_4, t0.product_class_id AS product_class_id_5, t0.creator_id AS creator_id_6, t0.discriminator_type FROM dtb_product_stock t0 WHERE t0.product_class_id = ? AND t0.discriminator_type IN ('productstock')
DEBUG 00:23:24 doctrine SELECT t0.id AS id_1, t0.tax_rate AS tax_rate_2, t0.tax_adjust AS tax_adjust_3, t0.apply_date AS apply_date_4, t0.create_date AS create_date_5, t0.update_date AS update_date_6, t0.product_class_id AS product_class_id_7, t0.creator_id AS creator_id_8, t0.country_id AS country_id_9, t0.pref_id AS pref_id_10, t0.product_id AS product_id_11, t0.rounding_type_id AS rounding_type_id_12, t0.discriminator_type FROM dtb_tax_rule t0 WHERE t0.product_class_id = ? AND t0.discriminator_type IN ('taxrule')
DEBUG 00:23:24 doctrine SELECT t0.id AS id_1, t0.stock AS stock_2, t0.create_date AS create_date_3, t0.update_date AS update_date_4, t0.product_class_id AS product_class_id_5, t0.creator_id AS creator_id_6, t0.discriminator_type FROM dtb_product_stock t0 WHERE t0.product_class_id = ? AND t0.discriminator_type IN ('productstock')
DEBUG 00:23:24 doctrine SELECT t0.id AS id_1, t0.tax_rate AS tax_rate_2, t0.tax_adjust AS tax_adjust_3, t0.apply_date AS apply_date_4, t0.create_date AS create_date_5, t0.update_date AS update_date_6, t0.product_class_id AS product_class_id_7, t0.creator_id AS creator_id_8, t0.country_id AS country_id_9, t0.pref_id AS pref_id_10, t0.product_id AS product_id_11, t0.rounding_type_id AS rounding_type_id_12, t0.discriminator_type FROM dtb_tax_rule t0 WHERE t0.product_class_id = ? AND t0.discriminator_type IN ('taxrule')
DEBUG 00:23:24 doctrine SELECT t0.id AS id_1, t0.stock AS stock_2, t0.create_date AS create_date_3, t0.update_date AS update_date_4, t0.product_class_id AS product_class_id_5, t0.creator_id AS creator_id_6, t0.discriminator_type FROM dtb_product_stock t0 WHERE t0.product_class_id = ? AND t0.discriminator_type IN ('productstock')
DEBUG 00:23:24 doctrine SELECT t0.id AS id_1, t0.tax_rate AS tax_rate_2, t0.tax_adjust AS tax_adjust_3, t0.apply_date AS apply_date_4, t0.create_date AS create_date_5, t0.update_date AS update_date_6, t0.product_class_id AS product_class_id_7, t0.creator_id AS creator_id_8, t0.country_id AS country_id_9, t0.pref_id AS pref_id_10, t0.product_id AS product_id_11, t0.rounding_type_id AS rounding_type_id_12, t0.discriminator_type FROM dtb_tax_rule t0 WHERE t0.product_class_id = ? AND t0.discriminator_type IN ('taxrule')
DEBUG 00:23:24 doctrine SELECT t0.id AS id_1, t0.stock AS stock_2, t0.create_date AS create_date_3, t0.update_date AS update_date_4, t0.product_class_id AS product_class_id_5, t0.creator_id AS creator_id_6, t0.discriminator_type FROM dtb_product_stock t0 WHERE t0.product_class_id = ? AND t0.discriminator_type IN ('productstock')
DEBUG 00:23:24 doctrine SELECT t0.id AS id_1, t0.tax_rate AS tax_rate_2, t0.tax_adjust AS tax_adjust_3, t0.apply_date AS apply_date_4, t0.create_date AS create_date_5, t0.update_date AS update_date_6, t0.product_class_id AS product_class_id_7, t0.creator_id AS creator_id_8, t0.country_id AS country_id_9, t0.pref_id AS pref_id_10, t0.product_id AS product_id_11, t0.rounding_type_id AS rounding_type_id_12, t0.discriminator_type FROM dtb_tax_rule t0 WHERE t0.product_class_id = ? AND t0.discriminator_type IN ('taxrule')
DEBUG 00:23:24 doctrine SELECT t0.id AS id_1, t0.stock AS stock_2, t0.create_date AS create_date_3, t0.update_date AS update_date_4, t0.product_class_id AS product_class_id_5, t0.creator_id AS creator_id_6, t0.discriminator_type FROM dtb_product_stock t0 WHERE t0.product_class_id = ? AND t0.discriminator_type IN ('productstock')
DEBUG 00:23:24 doctrine SELECT t0.id AS id_1, t0.tax_rate AS tax_rate_2, t0.tax_adjust AS tax_adjust_3, t0.apply_date AS apply_date_4, t0.create_date AS create_date_5, t0.update_date AS update_date_6, t0.product_class_id AS product_class_id_7, t0.creator_id AS creator_id_8, t0.country_id AS country_id_9, t0.pref_id AS pref_id_10, t0.product_id AS product_id_11, t0.rounding_type_id AS rounding_type_id_12, t0.discriminator_type FROM dtb_tax_rule t0 WHERE t0.product_class_id = ? AND t0.discriminator_type IN ('taxrule')
DEBUG 00:23:24 doctrine SELECT t0.id AS id_1, t0.stock AS stock_2, t0.create_date AS create_date_3, t0.update_date AS update_date_4, t0.product_class_id AS product_class_id_5, t0.creator_id AS creator_id_6, t0.discriminator_type FROM dtb_product_stock t0 WHERE t0.product_class_id = ? AND t0.discriminator_type IN ('productstock')
DEBUG 00:23:24 doctrine SELECT t0.id AS id_1, t0.tax_rate AS tax_rate_2, t0.tax_adjust AS tax_adjust_3, t0.apply_date AS apply_date_4, t0.create_date AS create_date_5, t0.update_date AS update_date_6, t0.product_class_id AS product_class_id_7, t0.creator_id AS creator_id_8, t0.country_id AS country_id_9, t0.pref_id AS pref_id_10, t0.product_id AS product_id_11, t0.rounding_type_id AS rounding_type_id_12, t0.discriminator_type FROM dtb_tax_rule t0 WHERE t0.product_class_id = ? AND t0.discriminator_type IN ('taxrule')
DEBUG 00:23:24 doctrine SELECT t0.id AS id_1, t0.stock AS stock_2, t0.create_date AS create_date_3, t0.update_date AS update_date_4, t0.product_class_id AS product_class_id_5, t0.creator_id AS creator_id_6, t0.discriminator_type FROM dtb_product_stock t0 WHERE t0.product_class_id = ? AND t0.discriminator_type IN ('productstock')
DEBUG 00:23:24 doctrine SELECT t0.id AS id_1, t0.tax_rate AS tax_rate_2, t0.tax_adjust AS tax_adjust_3, t0.apply_date AS apply_date_4, t0.create_date AS create_date_5, t0.update_date AS update_date_6, t0.product_class_id AS product_class_id_7, t0.creator_id AS creator_id_8, t0.country_id AS country_id_9, t0.pref_id AS pref_id_10, t0.product_id AS product_id_11, t0.rounding_type_id AS rounding_type_id_12, t0.discriminator_type FROM dtb_tax_rule t0 WHERE t0.product_class_id = ? AND t0.discriminator_type IN ('taxrule')
DEBUG 00:23:24 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
DEBUG 00:23:24 event Notified event "kernel.controller" to listener "Eccube\EventListener\ForwardOnlyListener::onController".
DEBUG 00:23:24 event Notified event "kernel.controller" to listener "Eccube\EventListener\LogListener::onKernelController".
DEBUG 00:23:24 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RequestDataCollector::onKernelController".
DEBUG 00:23:24 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
DEBUG 00:23:24 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
DEBUG 00:23:24 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
DEBUG 00:23:24 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
DEBUG 00:23:24 event Notified event "kernel.controller_arguments" to listener "Plugin\Taba2FA\Taba2FAEvent::onKernelController".
DEBUG 00:23:24 event Notified event "kernel.controller_arguments" to listener "Plugin\Cecplgbase\Event::onKernelController".
DEBUG 00:23:24 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
DEBUG 00:23:24 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
DEBUG 00:23:24 doctrine "ROLLBACK"
DEBUG 00:23:24 doctrine "START TRANSACTION"
DEBUG 00:23:24 front Rollback executed.
INFO 00:23:24 front
ERROR 00:23:24 request Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\NotFoundHttpException: "" at /home/awswebuser/public_html/shop.t-kouryu.com/src/Eccube/Controller/ProductController.php line 277
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 doctrine SHOW COLUMNS FROM plg_cecplgbase_config LIKE ?
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Plugin\Taba2FA\EventListener\InitializeListener::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\DebugHandlersListener::configure".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Symfony\Bridge\Monolog\Processor\WebProcessor::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Eccube\EventListener\IpAddrListener::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Eccube\EventListener\MobileTemplatePathListener::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Eccube\EventListener\LogListener::onKernelRequestEarly".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\ValidateRequestListener::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\SessionListener::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\FragmentListener::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\RouterListener::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Symfony\Bundle\FrameworkBundle\EventListener\ResolveControllerNameSubscriber::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\LocaleListener::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Symfony\Component\HttpKernel\EventListener\TranslatorListener::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Symfony\Bundle\SecurityBundle\Debug\TraceableFirewallListener::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Eccube\EventListener\LogListener::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Eccube\EventListener\TwigInitializeListener::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "SunCat\MobileDetectBundle\EventListener\RequestResponseListener::handleRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Knp\Bundle\PaginatorBundle\Subscriber\SlidingPaginationSubscriber::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Eccube\EventListener\TransactionListener::onKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Plugin\Cecplgbase\Event::OnKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.request" to listener "Plugin\Cecplgresizeimage\Event::OnKernelRequest".
DEBUG 00:23:24 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RouterDataCollector::onKernelController".
DEBUG 00:23:24 event Notified event "kernel.controller" to listener "Eccube\EventListener\ForwardOnlyListener::onController".
DEBUG 00:23:24 event Notified event "kernel.controller" to listener "Eccube\EventListener\LogListener::onKernelController".
DEBUG 00:23:24 event Notified event "kernel.controller" to listener "Symfony\Bundle\FrameworkBundle\DataCollector\RequestDataCollector::onKernelController".
DEBUG 00:23:24 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ControllerListener::onKernelController".
DEBUG 00:23:24 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\ParamConverterListener::onKernelController".
DEBUG 00:23:24 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\HttpCacheListener::onKernelController".
DEBUG 00:23:24 event Notified event "kernel.controller" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\TemplateListener::onKernelController".
DEBUG 00:23:24 event Notified event "kernel.controller_arguments" to listener "Plugin\Taba2FA\Taba2FAEvent::onKernelController".
DEBUG 00:23:24 event Notified event "kernel.controller_arguments" to listener "Plugin\Cecplgbase\Event::onKernelController".
DEBUG 00:23:24 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\SecurityListener::onKernelControllerArguments".
DEBUG 00:23:24 event Notified event "kernel.controller_arguments" to listener "Sensio\Bundle\FrameworkExtraBundle\EventListener\IsGrantedListener::onKernelControllerArguments".
INFO 00:23:24 php User Deprecated: The "Twig\Template" class is considered internal. It may change without further notice. You should not use it from "Eccube\Twig\Template".

Stack Trace

NotFoundHttpException

Symfony\Component\HttpKernel\Exception\NotFoundHttpException:

  at Eccube/Controller/ProductController.php:277
  at Eccube\Controller\ProductController->detail(object(Request), object(Product))
     (/home/awswebuser/public_html/shop.t-kouryu.com/app/Plugin/Cecplgbase/Controller/ProductController.php:174)
  at Plugin\Cecplgbase\Controller\ProductController->detail(object(Request), object(Product))
     (/home/awswebuser/public_html/shop.t-kouryu.com/vendor/symfony/http-kernel/HttpKernel.php:151)
  at Symfony\Component\HttpKernel\HttpKernel->handleRaw(object(Request), 1)
     (/home/awswebuser/public_html/shop.t-kouryu.com/vendor/symfony/http-kernel/HttpKernel.php:68)
  at Symfony\Component\HttpKernel\HttpKernel->handle(object(Request), 1, true)
     (/home/awswebuser/public_html/shop.t-kouryu.com/vendor/symfony/http-kernel/Kernel.php:200)
  at Symfony\Component\HttpKernel\Kernel->handle(object(Request))
     (/home/awswebuser/public_html/shop.t-kouryu.com/index.php:76)