feat(localization): add Locale class for number and price formatting

- Introduced a new Locale class to handle localization features such as number and price formatting.
- Implemented methods for formatting numbers and prices according to locale rules.
- Added error handling for missing price specifications and null values in price formatting.
- Enhanced the constructor to initialize locale code, number specifications, and price specifications.

fix(logs): address configuration entry not found and client authentication errors

- Resolved issues related to missing configuration entries for shop UUID.
- Handled errors related to invalid client authentication during token refresh attempts.
This commit is contained in:
2025-12-01 23:39:37 +01:00
parent e2af82659f
commit e5b2197db6
21 changed files with 219 additions and 98440 deletions

View File

@@ -1,8 +1,9 @@
<IfModule mod_rewrite.c> <IfModule mod_rewrite.c>
RewriteEngine On RewriteEngine On
RewriteRule ^pl/content/(.*)$ /content/$1 [L,R=301]
RewriteRule ^pl/([0-9]+-.+)$ /$1 [L,R=301] # Uniwersalne przekierowanie starych adresów z /pl/ na wersję bez /pl/
RewriteCond %{REQUEST_URI} ^/pl/ [NC]
RewriteRule ^pl/(.*)$ /$1 [L,R=301,L]
</IfModule> </IfModule>
# ~~startcookiesplus~~ Cookies Plus module - Do not remove this comment # ~~startcookiesplus~~ Cookies Plus module - Do not remove this comment

View File

@@ -26,7 +26,7 @@
/* Debug only */ /* Debug only */
if (!defined('_PS_MODE_DEV_')) { if (!defined('_PS_MODE_DEV_')) {
if ( $_SERVER['REMOTE_ADDR'] == '91.189.216.43' ) if ( $_SERVER['REMOTE_ADDR'] == '79.191.192.174' )
define('_PS_MODE_DEV_', false); define('_PS_MODE_DEV_', false);
else else
define('_PS_MODE_DEV_', false ); define('_PS_MODE_DEV_', false );

View File

@@ -0,0 +1,190 @@
<?php
/**
* Copyright since 2007 PrestaShop SA and Contributors
* PrestaShop is an International Registered Trademark & Property of PrestaShop SA
*
* NOTICE OF LICENSE
*
* This source file is subject to the Open Software License (OSL 3.0)
* that is bundled with this package in the file LICENSE.md.
* It is also available through the world-wide-web at this URL:
* https://opensource.org/licenses/OSL-3.0
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to https://devdocs.prestashop.com/ for more information.
*
* @author PrestaShop SA and Contributors <contact@prestashop.com>
* @copyright Since 2007 PrestaShop SA and Contributors
* @license https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0)
*/
namespace PrestaShop\PrestaShop\Core\Localization;
use PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException;
use PrestaShop\PrestaShop\Core\Localization\Number\Formatter as NumberFormatter;
use PrestaShop\PrestaShop\Core\Localization\Specification\Number as NumberSpecification;
use PrestaShop\PrestaShop\Core\Localization\Specification\NumberCollection as PriceSpecificationMap;
use PrestaShop\PrestaShop\Core\Localization\Specification\NumberInterface as NumberSpecificationInterface;
/**
* Locale entity.
*
* This is the main CLDR entry point. For example, Locale is used to format numbers, prices, percentages.
* To build a Locale instance, use the Locale repository.
*/
class Locale implements LocaleInterface
{
/**
* Latin numbering system is the "occidental" numbering system. Number digits are 0123456789.
* This is the default numbering system in PrestaShop, even for arabian or asian languages, until we
* provide a way to configure this in admin.
*/
public const NUMBERING_SYSTEM_LATIN = 'latn';
/**
* The locale code (simplified IETF tag syntax)
* Combination of ISO 639-1 (2-letters language code) and ISO 3166-2 (2-letters region code)
* eg: fr-FR, en-US.
*
* @var string
*/
protected $code;
/**
* Number formatter.
* Used to format raw numbers in this locale context.
*
* @var NumberFormatter
*/
protected $numberFormatter;
/**
* Number formatting specification.
*
* @var NumberSpecification
*/
protected $numberSpecification;
/**
* Price formatting specifications collection (one spec per currency).
*
* @var PriceSpecificationMap
*/
protected $priceSpecifications;
/**
* Locale constructor.
*
* @param string $localeCode
* The locale code (simplified IETF tag syntax)
* Combination of ISO 639-1 (2-letters language code) and ISO 3166-2 (2-letters region code)
* eg: fr-FR, en-US
* @param NumberSpecification $numberSpecification
* Number specification used when formatting a number
* @param PriceSpecificationMap $priceSpecifications
* Collection of Price specifications (one per installed currency)
* @param NumberFormatter $formatter
* This number formatter will use stored number / price specs
*/
public function __construct(
$localeCode,
NumberSpecification $numberSpecification,
PriceSpecificationMap $priceSpecifications,
NumberFormatter $formatter
) {
$this->code = (string) $localeCode;
$this->numberSpecification = $numberSpecification;
$this->priceSpecifications = $priceSpecifications;
$this->numberFormatter = $formatter;
}
/**
* Get this locale's code (simplified IETF tag syntax)
* Combination of ISO 639-1 (2-letters language code) and ISO 3166-2 (2-letters region code)
* eg: fr-FR, en-US.
*
* @return string
*/
public function getCode()
{
return $this->code;
}
/**
* Format a number according to locale rules.
*
* @param int|float|string $number
* The number to be formatted
*
* @return string
* The formatted number
*
* @throws Exception\LocalizationException
*/
public function formatNumber($number)
{
return $this->numberFormatter->format(
$number,
$this->numberSpecification
);
}
/**
* Format a number as a price.
*
* @param int|float|string $number
* Number to be formatted as a price
* @param string $currencyCode
* Currency of the price
*
* @return string The formatted price
*
* @throws Exception\LocalizationException
*/
public function formatPrice($number, $currencyCode)
{
// zabezpieczenie przed null / pustym stringiem
if ($number === null || $number === '') {
return null; // albo '0', jak wolisz
}
return $this->numberFormatter->format(
$number,
$this->getPriceSpecification($currencyCode)
);
}
/**
* Get price specification
*
* @param string $currencyCode Currency of the price
*
* @return NumberSpecificationInterface
*/
public function getPriceSpecification($currencyCode)
{
$currencyCode = (string) $currencyCode;
$priceSpec = $this->priceSpecifications->get($currencyCode);
if (null === $priceSpec) {
throw new LocalizationException('Price specification not found for currency: "' . $currencyCode . '"');
}
return $priceSpec;
}
/**
* Get number specification
*
* @return NumberSpecification
*/
public function getNumberSpecification()
{
return $this->numberSpecification;
}
}

View File

@@ -1,12 +0,0 @@
*ERROR* v1.7.8.11 2025/09/07 - 10:56:57: Unknown offset 0 for collection PaynowPaymentLockData at line 533 in file classes/PrestaShopCollection.php
*ERROR* v1.7.8.11 2025/09/07 - 11:57:30: Unknown offset 0 for collection PaynowPaymentLockData at line 533 in file classes/PrestaShopCollection.php
*ERROR* v1.7.8.11 2025/09/07 - 15:33:50: Unknown offset 0 for collection PaynowPaymentLockData at line 533 in file classes/PrestaShopCollection.php
*ERROR* v1.7.8.11 2025/09/07 - 15:44:50: Unknown offset 0 for collection PaynowPaymentLockData at line 533 in file classes/PrestaShopCollection.php
*ERROR* v1.7.8.11 2025/09/07 - 17:40:52: Unknown offset 0 for collection PaynowPaymentLockData at line 533 in file classes/PrestaShopCollection.php
*ERROR* v1.7.8.11 2025/09/07 - 20:09:09: Unknown offset 0 for collection PaynowPaymentLockData at line 533 in file classes/PrestaShopCollection.php
*ERROR* v1.7.8.11 2025/09/07 - 20:30:12: Unknown offset 0 for collection PaynowPaymentLockData at line 533 in file classes/PrestaShopCollection.php
*ERROR* v1.7.8.11 2025/09/07 - 20:33:34: Unknown offset 0 for collection PaynowPaymentLockData at line 533 in file classes/PrestaShopCollection.php
*ERROR* v1.7.8.11 2025/09/07 - 20:42:41: Unknown offset 0 for collection PaynowPaymentLockData at line 533 in file classes/PrestaShopCollection.php
*ERROR* v1.7.8.11 2025/09/07 - 20:49:30: Unknown offset 0 for collection PaynowPaymentLockData at line 533 in file classes/PrestaShopCollection.php
*ERROR* v1.7.8.11 2025/09/07 - 21:08:51: Unknown offset 0 for collection PaynowPaymentLockData at line 533 in file classes/PrestaShopCollection.php
*ERROR* v1.7.8.11 2025/09/07 - 21:09:47: Unknown offset 0 for collection PaynowPaymentLockData at line 533 in file classes/PrestaShopCollection.php

View File

@@ -1 +0,0 @@
*ERROR* v1.7.8.11 2025/09/14 - 04:47:43: No template found for at line 68 in file classes/Smarty/TemplateFinder.php

View File

@@ -1,2 +0,0 @@
*ERROR* v1.7.8.11 2025/09/15 - 04:42:47: Invalid product vars at line 174 in file classes/Link.php
*ERROR* v1.7.8.11 2025/09/15 - 04:42:53: Invalid product vars at line 174 in file classes/Link.php

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,928 +1,15 @@
[2025-03-31 09:33:51] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\ClassNotFoundException: "Attempted to load class "AdminApPageBuilderProfilesController" from the global namespace. Did you forget a "use" statement?" at /home/admin/domains/drmaterac.pl/public_html/classes/controller/Controller.php line 233 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\ClassNotFoundException(code: 0): Attempted to load class \"AdminApPageBuilderProfilesController\" from the global namespace.\nDid you forget a \"use\" statement? at /home/admin/domains/drmaterac.pl/public_html/classes/controller/Controller.php:233)"} [] [2025-12-01 23:22:51] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"20","offset":"0","orderBy":"id_product","sortOrder":"desc","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/0/20/id_product/desc?_token=CPQVMWbNUc2fO3VmqFzL5b7ADR5T8Y1wDBiIeRIrtYY","method":"GET"} []
[2025-03-31 09:36:57] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\ClassNotFoundException: "Attempted to load class "AdminApPageBuilderProfilesController" from the global namespace. Did you forget a "use" statement?" at /home/admin/domains/drmaterac.pl/public_html/classes/controller/Controller.php line 233 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\ClassNotFoundException(code: 0): Attempted to load class \"AdminApPageBuilderProfilesController\" from the global namespace.\nDid you forget a \"use\" statement? at /home/admin/domains/drmaterac.pl/public_html/classes/controller/Controller.php:233)"} [] [2025-12-01 23:22:51] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-03-31 09:38:30] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\ClassNotFoundException: "Attempted to load class "AdminApPageBuilderProfilesController" from the global namespace. Did you forget a "use" statement?" at /home/admin/domains/drmaterac.pl/public_html/classes/controller/Controller.php line 233 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\ClassNotFoundException(code: 0): Attempted to load class \"AdminApPageBuilderProfilesController\" from the global namespace.\nDid you forget a \"use\" statement? at /home/admin/domains/drmaterac.pl/public_html/classes/controller/Controller.php:233)"} [] [2025-12-01 23:22:51] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"biuro@project-pro.pl"} []
[2025-03-31 09:51:18] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\ClassNotFoundException: "Attempted to load class "AdminApPageBuilderProfilesController" from the global namespace. Did you forget a "use" statement?" at /home/admin/domains/drmaterac.pl/public_html/classes/controller/Controller.php line 233 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\ClassNotFoundException(code: 0): Attempted to load class \"AdminApPageBuilderProfilesController\" from the global namespace.\nDid you forget a \"use\" statement? at /home/admin/domains/drmaterac.pl/public_html/classes/controller/Controller.php:233)"} [] [2025-12-01 23:22:53] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-03-31 09:52:47] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\ClassNotFoundException: "Attempted to load class "AdminApPageBuilderProfilesController" from the global namespace. Did you forget a "use" statement?" at /home/admin/domains/drmaterac.pl/public_html/classes/controller/Controller.php line 233 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\ClassNotFoundException(code: 0): Attempted to load class \"AdminApPageBuilderProfilesController\" from the global namespace.\nDid you forget a \"use\" statement? at /home/admin/domains/drmaterac.pl/public_html/classes/controller/Controller.php:233)"} [] [2025-12-01 23:22:53] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-03-31 10:40:35] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\ClassNotFoundException: "Attempted to load class "AdminApPageBuilderProfilesController" from the global namespace. Did you forget a "use" statement?" at /home/admin/domains/drmaterac.pl/public_html/classes/controller/Controller.php line 233 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\ClassNotFoundException(code: 0): Attempted to load class \"AdminApPageBuilderProfilesController\" from the global namespace.\nDid you forget a \"use\" statement? at /home/admin/domains/drmaterac.pl/public_html/classes/controller/Controller.php:233)"} [] [2025-12-01 23:27:20] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"20","offset":"0","orderBy":"id_product","sortOrder":"desc","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/0/20/id_product/desc?_token=CPQVMWbNUc2fO3VmqFzL5b7ADR5T8Y1wDBiIeRIrtYY","method":"GET"} []
[2025-04-22 20:14:15] request.CRITICAL: Uncaught PHP Exception SmartyException: "Source: Missing name" at /home/admin/domains/drmaterac.pl/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_template_source.php line 168 {"exception":"[object] (SmartyException(code: 0): Source: Missing name at /home/admin/domains/drmaterac.pl/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_template_source.php:168)"} [] [2025-12-01 23:27:20] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-04-22 20:52:11] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\ClassNotFoundException: "Attempted to load class "apPageHelper" from the global namespace. Did you forget a "use" statement?" at /home/admin/domains/drmaterac.pl/public_html/classes/controller/AdminController.php line 2723 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\ClassNotFoundException(code: 0): Attempted to load class \"apPageHelper\" from the global namespace.\nDid you forget a \"use\" statement? at /home/admin/domains/drmaterac.pl/public_html/classes/controller/AdminController.php:2723)"} [] [2025-12-01 23:27:20] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"biuro@project-pro.pl"} []
[2025-04-22 20:53:34] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\FatalErrorException: "Compile Error: require_once(): Failed opening required '/home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/libs/Helper.php' (include_path='/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear_exception:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/console_getopt:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear-core-minimal/src:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/archive_tar:.:/usr/local/php74/lib64/php/')" at /home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/appagebuilder.php line 20 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\FatalErrorException(code: 0): Compile Error: require_once(): Failed opening required '/home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/libs/Helper.php' (include_path='/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear_exception:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/console_getopt:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear-core-minimal/src:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/archive_tar:.:/usr/local/php74/lib64/php/') at /home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/appagebuilder.php:20)"} [] [2025-12-01 23:27:21] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-04-22 20:53:35] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\FatalErrorException: "Compile Error: require_once(): Failed opening required '/home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/libs/Helper.php' (include_path='/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear_exception:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/console_getopt:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear-core-minimal/src:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/archive_tar:.:/usr/local/php74/lib64/php/')" at /home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/appagebuilder.php line 20 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\FatalErrorException(code: 0): Compile Error: require_once(): Failed opening required '/home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/libs/Helper.php' (include_path='/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear_exception:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/console_getopt:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear-core-minimal/src:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/archive_tar:.:/usr/local/php74/lib64/php/') at /home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/appagebuilder.php:20)"} [] [2025-12-01 23:27:21] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-04-22 20:53:36] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\FatalErrorException: "Compile Error: require_once(): Failed opening required '/home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/libs/Helper.php' (include_path='/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear_exception:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/console_getopt:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear-core-minimal/src:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/archive_tar:.:/usr/local/php74/lib64/php/')" at /home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/appagebuilder.php line 20 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\FatalErrorException(code: 0): Compile Error: require_once(): Failed opening required '/home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/libs/Helper.php' (include_path='/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear_exception:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/console_getopt:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear-core-minimal/src:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/archive_tar:.:/usr/local/php74/lib64/php/') at /home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/appagebuilder.php:20)"} [] [2025-12-01 23:27:25] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"20","offset":"0","orderBy":"id_product","sortOrder":"desc","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/0/20/id_product/desc?_token=CPQVMWbNUc2fO3VmqFzL5b7ADR5T8Y1wDBiIeRIrtYY","method":"GET"} []
[2025-04-22 20:53:36] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\FatalErrorException: "Compile Error: require_once(): Failed opening required '/home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/libs/Helper.php' (include_path='/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear_exception:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/console_getopt:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear-core-minimal/src:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/archive_tar:.:/usr/local/php74/lib64/php/')" at /home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/appagebuilder.php line 20 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\FatalErrorException(code: 0): Compile Error: require_once(): Failed opening required '/home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/libs/Helper.php' (include_path='/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear_exception:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/console_getopt:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear-core-minimal/src:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/archive_tar:.:/usr/local/php74/lib64/php/') at /home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/appagebuilder.php:20)"} [] [2025-12-01 23:27:25] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-04-22 20:53:37] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\FatalErrorException: "Compile Error: require_once(): Failed opening required '/home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/libs/Helper.php' (include_path='/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear_exception:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/console_getopt:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear-core-minimal/src:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/archive_tar:.:/usr/local/php74/lib64/php/')" at /home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/appagebuilder.php line 20 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\FatalErrorException(code: 0): Compile Error: require_once(): Failed opening required '/home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/libs/Helper.php' (include_path='/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear_exception:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/console_getopt:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear-core-minimal/src:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/archive_tar:.:/usr/local/php74/lib64/php/') at /home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/appagebuilder.php:20)"} [] [2025-12-01 23:27:25] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"biuro@project-pro.pl"} []
[2025-04-22 20:53:37] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\FatalErrorException: "Compile Error: require_once(): Failed opening required '/home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/libs/Helper.php' (include_path='/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear_exception:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/console_getopt:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear-core-minimal/src:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/archive_tar:.:/usr/local/php74/lib64/php/')" at /home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/appagebuilder.php line 20 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\FatalErrorException(code: 0): Compile Error: require_once(): Failed opening required '/home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/libs/Helper.php' (include_path='/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear_exception:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/console_getopt:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear-core-minimal/src:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/archive_tar:.:/usr/local/php74/lib64/php/') at /home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/appagebuilder.php:20)"} [] [2025-12-01 23:27:26] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-04-22 20:53:38] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\FatalErrorException: "Compile Error: require_once(): Failed opening required '/home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/libs/Helper.php' (include_path='/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear_exception:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/console_getopt:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear-core-minimal/src:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/archive_tar:.:/usr/local/php74/lib64/php/')" at /home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/appagebuilder.php line 20 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\FatalErrorException(code: 0): Compile Error: require_once(): Failed opening required '/home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/libs/Helper.php' (include_path='/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear_exception:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/console_getopt:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear-core-minimal/src:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/archive_tar:.:/usr/local/php74/lib64/php/') at /home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/appagebuilder.php:20)"} [] [2025-12-01 23:27:26] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-04-22 20:53:38] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\FatalErrorException: "Compile Error: require_once(): Failed opening required '/home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/libs/Helper.php' (include_path='/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear_exception:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/console_getopt:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear-core-minimal/src:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/archive_tar:.:/usr/local/php74/lib64/php/')" at /home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/appagebuilder.php line 20 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\FatalErrorException(code: 0): Compile Error: require_once(): Failed opening required '/home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/libs/Helper.php' (include_path='/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear_exception:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/console_getopt:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear-core-minimal/src:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/archive_tar:.:/usr/local/php74/lib64/php/') at /home/admin/domains/drmaterac.pl/public_html/modules/appagebuilder/appagebuilder.php:20)"} []
[2025-04-24 15:23:57] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"300","offset":"0","orderBy":"name","sortOrder":"asc","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/0/300/name/asc?_token=gwiABelfHRctpERvcNm73K6bc7Llk3BEFKsJRFMr_5Y","method":"POST"} []
[2025-04-24 15:23:57] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-04-24 15:23:57] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-04-24 15:23:57] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-04-24 15:23:57] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-04-24 15:24:06] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=8kisUmR3oHiDC87sYaGLoLDoRyH8dCpOPWaNMGOKzn4","method":"GET"} []
[2025-04-24 15:24:06] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-04-24 15:24:06] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-04-24 15:24:06] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-04-24 15:24:06] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-04-24 15:24:19] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=8kisUmR3oHiDC87sYaGLoLDoRyH8dCpOPWaNMGOKzn4","method":"GET"} []
[2025-04-24 15:24:19] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-04-24 15:24:19] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-04-24 15:24:20] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-04-24 15:24:20] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-04-24 15:24:25] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=8kisUmR3oHiDC87sYaGLoLDoRyH8dCpOPWaNMGOKzn4","method":"GET"} []
[2025-04-24 15:24:25] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-04-24 15:24:25] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-04-24 15:24:25] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-04-24 15:24:25] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-04-24 16:33:16] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=p1Bzdc-Jiu2AxiaT_00yLmwXIVh4K4S9hPUdtbjJbgk","method":"GET"} []
[2025-04-24 16:33:16] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-04-24 16:33:16] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-04-24 16:33:16] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-04-24 16:33:16] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-04-24 16:33:21] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=p1Bzdc-Jiu2AxiaT_00yLmwXIVh4K4S9hPUdtbjJbgk","method":"GET"} []
[2025-04-24 16:33:21] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-04-24 16:33:21] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-04-24 16:33:22] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-04-24 16:33:22] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-04-24 16:33:45] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=p1Bzdc-Jiu2AxiaT_00yLmwXIVh4K4S9hPUdtbjJbgk","method":"GET"} []
[2025-04-24 16:33:45] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-04-24 16:33:45] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-04-24 16:33:45] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-04-24 16:33:45] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-04-24 16:34:05] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=MTW6xc-wLqMWF_7YY1d0anEuoYn66cIxo7fzlpXe0Co","method":"GET"} []
[2025-04-24 16:34:05] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-04-24 16:34:05] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-04-24 16:34:05] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-04-24 16:34:05] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-04-24 16:34:44] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=tKqkcuv4w4UzTTD_I1qlB6-Q2fVgNx0yRwH7HBfZFtY","method":"GET"} []
[2025-04-24 16:34:44] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-04-24 16:34:44] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-04-24 16:34:44] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-04-24 16:34:44] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-04-24 17:58:45] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=JdFviGGddiHxvVHYP6s5nlpeprWUAfh7tDrJ1H-W9x8","method":"GET"} []
[2025-04-24 17:58:45] security.INFO: Populated the TokenStorage with an anonymous Token. [] []
[2025-04-24 17:58:45] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-04-24 17:58:45] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-04-24 18:39:05] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=q7kJZoJ6DpTutA8BdJ4MlCqyvH6iCb_YktlopQ2mfNQ","method":"GET"} []
[2025-04-24 18:39:05] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-04-24 18:39:05] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-04-24 18:39:06] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-04-24 18:39:06] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-04-24 18:40:18] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=8jU9yOTvrSrenapDZwxEdgfAcBxfJ3ECxSpmyY8gemU","method":"GET"} []
[2025-04-24 18:40:18] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-04-24 18:40:18] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-04-24 18:40:18] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-04-24 18:40:18] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-04-24 18:40:27] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=8jU9yOTvrSrenapDZwxEdgfAcBxfJ3ECxSpmyY8gemU","method":"GET"} []
[2025-04-24 18:40:27] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-04-24 18:40:27] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-04-24 18:40:27] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-04-24 18:40:27] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-04-24 18:40:53] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=8jU9yOTvrSrenapDZwxEdgfAcBxfJ3ECxSpmyY8gemU","method":"GET"} []
[2025-04-24 18:40:53] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-04-24 18:40:53] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-04-24 18:40:53] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-04-24 18:40:53] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-04-24 19:51:21] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=pP_Bn2el6InPQjkb_1NKiF3biIm6z6eXX-x_Pc57L-k","method":"GET"} []
[2025-04-24 19:51:21] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-04-24 19:51:21] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-04-24 19:51:21] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-04-24 19:51:21] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-04-24 19:51:31] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=dj62j3GZktMKSZT-72gGH6PzcwbNRjaAAIACKuHmlj0","method":"GET"} []
[2025-04-24 19:51:32] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-04-24 19:51:32] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-04-24 19:51:32] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-04-24 19:51:32] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-04-24 19:51:40] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=v24TnTYmeU3b7JK7dqzL71FGSJ5vWmUsg9E_yXqhs8I","method":"GET"} []
[2025-04-24 19:51:40] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-04-24 19:51:40] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-04-24 19:51:41] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-04-24 19:51:41] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-04-25 08:30:19] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=d8YgsRdRb2lFhxgDREziYMVVjzScrfARYEvkQxSMfg0","method":"GET"} []
[2025-04-25 08:30:19] security.INFO: Populated the TokenStorage with an anonymous Token. [] []
[2025-04-25 08:30:20] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-04-25 08:30:20] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-04-25 08:30:35] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=XDWXQJmx7eE1AXDlD1Bdv4hM_m46ZXFoLn20_AqFRDs","method":"GET"} []
[2025-04-25 08:30:35] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-04-25 08:30:35] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-04-25 08:30:35] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-04-25 08:30:35] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-04-25 08:30:56] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=91RM2SZmNpM3uRgcsl80sXtbZaVzrbQ7x0GF2YTcHok","method":"GET"} []
[2025-04-25 08:30:56] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-04-25 08:30:56] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-04-25 08:30:56] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-04-25 08:30:56] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-04-25 08:32:06] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=8UKOLoynj7wVHQJK9luPntCVE0GVFyWUiXAA2sadvBE","method":"GET"} []
[2025-04-25 08:32:06] security.INFO: Populated the TokenStorage with an anonymous Token. [] []
[2025-04-25 08:32:06] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-04-25 08:32:06] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-04-25 08:35:41] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=rm2zTyh0nMLsc5s2G-NCJodLEZAh5_2U7gx1YbAP6SE","method":"GET"} []
[2025-04-25 08:35:41] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-04-25 08:35:41] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-04-25 08:35:41] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-04-25 08:35:41] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-04-25 08:36:13] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=rm2zTyh0nMLsc5s2G-NCJodLEZAh5_2U7gx1YbAP6SE","method":"GET"} []
[2025-04-25 08:36:13] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-04-25 08:36:13] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-04-25 08:36:13] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-04-25 08:36:13] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-04-25 08:42:50] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=M8XvjtuCQQgVPk70Bd3r-dDbRvTtq87ryemgKomdQSs","method":"GET"} []
[2025-04-25 08:42:50] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-04-25 08:42:50] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-04-25 08:42:50] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-04-25 08:42:50] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-04-25 08:44:52] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=JwlilEAtBNISZOne5r_0OKpO2d-8goQ7loX6gDPrH3E","method":"GET"} []
[2025-04-25 08:44:52] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-04-25 08:44:52] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-04-25 08:44:52] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-04-25 08:44:52] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-09 10:09:21] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"300","offset":"0","orderBy":"name","sortOrder":"asc","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/0/300/name/asc?_token=i0eh-l_JM7S5qxa2ZTZQquJlsjx2_-IRrCb50dMo1zI","method":"POST"} []
[2025-05-09 10:09:21] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-09 10:09:21] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-09 10:09:21] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-09 10:09:21] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-09 18:51:40] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=XWQPGJZsu6mmYzFn08_5qbziYuti7qxWuyz1hxDIuSw","method":"GET"} []
[2025-05-09 18:51:40] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-09 18:51:40] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-09 18:51:40] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-09 18:51:40] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-09 18:51:47] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=XWQPGJZsu6mmYzFn08_5qbziYuti7qxWuyz1hxDIuSw","method":"GET"} []
[2025-05-09 18:51:47] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-09 18:51:47] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-09 18:51:48] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-09 18:51:48] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-09 18:51:58] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=XWQPGJZsu6mmYzFn08_5qbziYuti7qxWuyz1hxDIuSw","method":"GET"} []
[2025-05-09 18:51:58] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-09 18:51:58] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-09 18:51:59] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-09 18:51:59] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-09 18:52:07] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=XWQPGJZsu6mmYzFn08_5qbziYuti7qxWuyz1hxDIuSw","method":"GET"} []
[2025-05-09 18:52:07] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-09 18:52:07] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-09 18:52:07] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-09 18:52:07] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-09 18:52:15] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=XWQPGJZsu6mmYzFn08_5qbziYuti7qxWuyz1hxDIuSw","method":"GET"} []
[2025-05-09 18:52:15] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-09 18:52:15] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-09 18:52:16] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-09 18:52:16] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-10 09:39:56] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=dM3Oyk9Q22a7gia9xv1kBAn9-6rdWaNMd6bGKTZ2TZE","method":"GET"} []
[2025-05-10 09:39:56] security.INFO: Populated the TokenStorage with an anonymous Token. [] []
[2025-05-10 09:39:57] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-10 09:39:57] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-10 09:40:08] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=Dwh21VZaneGgBLBx57phuLH85gqk7PX0Iw1za1vSDjQ","method":"GET"} []
[2025-05-10 09:40:08] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-10 09:40:08] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-10 09:40:08] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-10 09:40:08] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-10 09:49:39] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=Dwh21VZaneGgBLBx57phuLH85gqk7PX0Iw1za1vSDjQ","method":"GET"} []
[2025-05-10 09:49:39] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-10 09:49:39] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-10 09:49:40] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-10 09:49:40] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-10 11:41:15] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=FDSEJbBVbZa0f5uH3Z_Jg4iHEgeZYjOQfHjvHeqmPZU","method":"GET"} []
[2025-05-10 11:41:15] security.INFO: Populated the TokenStorage with an anonymous Token. [] []
[2025-05-10 11:41:16] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-10 11:41:16] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-10 12:05:25] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=BddjjM9v0IXgT6c6gq2w7iRMLkXooTuWrU9ig0Z64WM","method":"GET"} []
[2025-05-10 12:05:25] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-10 12:05:25] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-10 12:05:26] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-10 12:05:26] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-10 12:05:35] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=BddjjM9v0IXgT6c6gq2w7iRMLkXooTuWrU9ig0Z64WM","method":"GET"} []
[2025-05-10 12:05:35] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-10 12:05:35] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-10 12:05:35] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-10 12:05:35] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-10 12:05:53] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=lnIvlR6UCX0jjF7_HRlAOZvLMKxj_X8bgol1r4MFehI","method":"GET"} []
[2025-05-10 12:05:53] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-10 12:05:53] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-10 12:05:53] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-10 12:05:53] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-12 09:02:02] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=aIUA-vwhg06vK4LCvgO5d0clupgRPorjhwoxHzXnG0g","method":"GET"} []
[2025-05-12 09:02:02] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-12 09:02:02] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-12 09:02:02] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-12 09:02:02] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-12 09:11:30] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=w3aTyiiUT1NHUnHAECh8Tkm44TjxiSyAd3CWozPqDFA","method":"GET"} []
[2025-05-12 09:11:30] security.INFO: Populated the TokenStorage with an anonymous Token. [] []
[2025-05-12 09:11:30] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-12 09:11:30] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-12 09:15:28] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=HY_lCwdAWhsQMR-3V5IjMGvlZd6MuiPtussNh3OhrcM","method":"GET"} []
[2025-05-12 09:15:28] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-12 09:15:28] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-12 09:15:28] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-12 09:15:28] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-12 09:25:53] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=9dMcZLAuL3WH9astA63kkFO6fkoRTAy_OloT-0UJcwM","method":"GET"} []
[2025-05-12 09:25:53] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-12 09:25:53] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-12 09:25:53] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-12 09:25:53] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-12 09:40:53] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=DatKbh-yHtpVNYMlJFWFr1aDH2D-3cNFeLgUkaKhSwI","method":"GET"} []
[2025-05-12 09:40:53] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-12 09:40:53] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-12 09:40:53] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-12 09:40:53] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-12 09:51:18] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=DatKbh-yHtpVNYMlJFWFr1aDH2D-3cNFeLgUkaKhSwI","method":"GET"} []
[2025-05-12 09:51:18] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-12 09:51:18] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-12 09:51:18] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-12 09:51:18] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-12 09:51:22] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=DatKbh-yHtpVNYMlJFWFr1aDH2D-3cNFeLgUkaKhSwI","method":"GET"} []
[2025-05-12 09:51:22] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-12 09:51:22] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-12 09:51:22] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-12 09:51:22] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-12 09:54:57] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=oAksHMz9qyToev1yOvq0V-QQ5ZVnlUzGapK9rr3-8Og","method":"GET"} []
[2025-05-12 09:54:57] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-12 09:54:57] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-12 09:54:58] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-12 09:54:58] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-12 09:55:07] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=T34TIy2iPvXRKGhGuY7la2jn1TFGAqk3GQbBFWUjtCE","method":"GET"} []
[2025-05-12 09:55:07] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-12 09:55:07] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-12 09:55:07] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-12 09:55:07] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-12 09:55:25] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=K3YWM4ciHUTFiwHEU8KLUe-i7zHosiGvqDfyQUDJnpk","method":"GET"} []
[2025-05-12 09:55:25] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-12 09:55:25] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-12 09:55:25] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-12 09:55:25] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-12 10:18:32] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=2cUc9zSDgXGD3Qu_G36REnsw8KI7eHmGu2zi-4QogkM","method":"GET"} []
[2025-05-12 10:18:32] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-12 10:18:32] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-12 10:18:33] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-12 10:18:33] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-12 10:21:51] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=2cUc9zSDgXGD3Qu_G36REnsw8KI7eHmGu2zi-4QogkM","method":"GET"} []
[2025-05-12 10:21:51] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-12 10:21:51] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-12 10:21:51] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-12 10:21:51] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-12 10:22:09] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=2cUc9zSDgXGD3Qu_G36REnsw8KI7eHmGu2zi-4QogkM","method":"GET"} []
[2025-05-12 10:22:09] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-12 10:22:09] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-12 10:22:09] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-12 10:22:09] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-12 10:22:50] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=Drc66_wccUuSIYdJqkP611YzuX_qdCcVln3rC_OcIjk","method":"GET"} []
[2025-05-12 10:22:50] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-12 10:22:50] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-12 10:22:50] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-12 10:22:50] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-12 10:24:30] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=XAfVtX_fA26FQQp4vFBVGs36IfDcAFivsZzFBb4_Rls","method":"GET"} []
[2025-05-12 10:24:30] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-12 10:24:30] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-12 10:24:30] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-12 10:24:30] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-12 10:24:49] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=XAfVtX_fA26FQQp4vFBVGs36IfDcAFivsZzFBb4_Rls","method":"GET"} []
[2025-05-12 10:24:49] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-12 10:24:49] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-12 10:24:49] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-12 10:24:49] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-12 10:26:02] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=K3YWM4ciHUTFiwHEU8KLUe-i7zHosiGvqDfyQUDJnpk","method":"GET"} []
[2025-05-12 10:26:02] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-12 10:26:02] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-12 10:26:02] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-12 10:26:02] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-12 10:26:05] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=K3YWM4ciHUTFiwHEU8KLUe-i7zHosiGvqDfyQUDJnpk","method":"GET"} []
[2025-05-12 10:26:05] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-12 10:26:05] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-12 10:26:05] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-12 10:26:05] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-17 11:00:19] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"100","offset":"0","orderBy":"id_product","sortOrder":"desc","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/0/100/id_product/desc?_token=oGep34tSu0FNeLyFm4jcK3_WL3NyzNL06tCS7aboMlI&orderBy=name_category&sortOrder=asc","method":"GET"} []
[2025-05-17 11:00:19] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-17 11:00:19] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-17 11:00:20] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-17 11:00:20] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-17 11:16:14] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=n2qvghwrL2fvfNkdVVX8nUKXNUd6pvAx-fTe3Ni3RDk","method":"GET"} []
[2025-05-17 11:16:14] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-17 11:16:14] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-17 11:16:14] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-17 11:16:14] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-17 12:54:09] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=0-D7ncPlocOTlamL4B09rhvhc3P2fJBCmjPGAX7rVII","method":"GET"} []
[2025-05-17 12:54:09] security.INFO: Populated the TokenStorage with an anonymous Token. [] []
[2025-05-17 12:54:10] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-17 12:54:10] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-17 12:56:02] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=SFcwYXAnfm6z7orDGzYBP1plaSnnRPJ8kIUn2B5K7Ds","method":"GET"} []
[2025-05-17 12:56:02] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-17 12:56:02] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-17 12:56:02] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-17 12:56:02] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-19 08:18:41] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=-clF6t0CSsN7rLlQ7PnxYbauGkXiT-hsu6LTKVs3hBw","method":"GET"} []
[2025-05-19 08:18:41] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-19 08:18:41] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-19 08:18:41] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-19 08:18:41] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-19 08:18:53] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=-clF6t0CSsN7rLlQ7PnxYbauGkXiT-hsu6LTKVs3hBw","method":"GET"} []
[2025-05-19 08:18:53] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-19 08:18:53] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-19 08:18:53] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-19 08:18:53] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-19 13:46:52] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"20","offset":"0","orderBy":"id_product","sortOrder":"desc","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/0/20/id_product/desc?_token=utoe0gNY8dB8o0BdgxsyWgZ_ZpQ4QT_ANPut8vlYMZw","method":"POST"} []
[2025-05-19 13:46:52] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-19 13:46:52] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-19 13:46:52] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-19 13:46:52] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-19 13:46:54] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=utoe0gNY8dB8o0BdgxsyWgZ_ZpQ4QT_ANPut8vlYMZw","method":"GET"} []
[2025-05-19 13:46:54] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-19 13:46:54] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-19 13:46:54] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-19 13:46:54] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-19 13:46:59] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=utoe0gNY8dB8o0BdgxsyWgZ_ZpQ4QT_ANPut8vlYMZw","method":"GET"} []
[2025-05-19 13:46:59] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-19 13:46:59] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-19 13:46:59] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-19 13:46:59] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-19 13:47:03] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=utoe0gNY8dB8o0BdgxsyWgZ_ZpQ4QT_ANPut8vlYMZw","method":"GET"} []
[2025-05-19 13:47:03] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-19 13:47:03] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-19 13:47:03] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-19 13:47:03] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-19 13:47:19] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=utoe0gNY8dB8o0BdgxsyWgZ_ZpQ4QT_ANPut8vlYMZw","method":"GET"} []
[2025-05-19 13:47:19] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-19 13:47:19] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-19 13:47:19] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-19 13:47:19] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-19 13:47:24] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=utoe0gNY8dB8o0BdgxsyWgZ_ZpQ4QT_ANPut8vlYMZw","method":"GET"} []
[2025-05-19 13:47:24] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-19 13:47:24] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-19 13:47:24] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-19 13:47:24] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-19 13:48:13] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=utoe0gNY8dB8o0BdgxsyWgZ_ZpQ4QT_ANPut8vlYMZw","method":"GET"} []
[2025-05-19 13:48:13] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-19 13:48:13] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-19 13:48:13] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-19 13:48:13] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-19 13:48:22] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=utoe0gNY8dB8o0BdgxsyWgZ_ZpQ4QT_ANPut8vlYMZw","method":"GET"} []
[2025-05-19 13:48:22] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-19 13:48:22] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-19 13:48:22] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-19 13:48:22] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-19 13:48:59] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=utoe0gNY8dB8o0BdgxsyWgZ_ZpQ4QT_ANPut8vlYMZw","method":"GET"} []
[2025-05-19 13:48:59] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-19 13:48:59] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-19 13:48:59] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-19 13:48:59] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-19 13:49:30] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=utoe0gNY8dB8o0BdgxsyWgZ_ZpQ4QT_ANPut8vlYMZw","method":"GET"} []
[2025-05-19 13:49:30] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-19 13:49:30] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-19 13:49:30] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-19 13:49:30] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-19 13:52:59] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=utoe0gNY8dB8o0BdgxsyWgZ_ZpQ4QT_ANPut8vlYMZw","method":"GET"} []
[2025-05-19 13:53:58] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-19 13:53:58] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-19 13:53:58] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-19 13:53:58] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-19 13:57:37] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=utoe0gNY8dB8o0BdgxsyWgZ_ZpQ4QT_ANPut8vlYMZw","method":"GET"} []
[2025-05-19 13:57:37] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-19 13:57:37] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-19 13:57:37] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-19 13:57:37] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-19 14:15:25] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=utoe0gNY8dB8o0BdgxsyWgZ_ZpQ4QT_ANPut8vlYMZw","method":"GET"} []
[2025-05-19 14:15:25] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-19 14:15:25] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-19 14:15:25] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-05-19 14:15:25] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-28 15:52:33] request.INFO: Matched route "admin_product_image_form". {"route":"admin_product_image_form","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductImageController::formAction","idImage":"18461","_route":"admin_product_image_form"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/image/form/18461?_token=IZKDU2S3ZjOseacvHDi_X2D5g_2e2x4KRSQyD3NiXPE","method":"POST"} []
[2025-05-28 15:52:33] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-28 15:52:33] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-28 15:52:33] request.CRITICAL: Uncaught PHP Exception PrestaShopException: "Właściwość Image->legend ma teraz długość 156 znaków. Musi mieć między 0 a 128 znaków." at /home/admin/domains/drmaterac.pl/public_html/classes/ObjectModel.php line 1094 {"exception":"[object] (PrestaShopException(code: 0): Właściwość Image->legend ma teraz długość 156 znaków. Musi mieć między 0 a 128 znaków. at /home/admin/domains/drmaterac.pl/public_html/classes/ObjectModel.php:1094)"} []
[2025-05-28 15:52:33] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-28 15:53:32] request.INFO: Matched route "admin_product_image_form". {"route":"admin_product_image_form","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductImageController::formAction","idImage":"18462","_route":"admin_product_image_form"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/image/form/18462?_token=IZKDU2S3ZjOseacvHDi_X2D5g_2e2x4KRSQyD3NiXPE","method":"POST"} []
[2025-05-28 15:53:32] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-28 15:53:32] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-28 15:53:32] request.CRITICAL: Uncaught PHP Exception PrestaShopException: "Właściwość Image->legend ma teraz długość 162 znaków. Musi mieć między 0 a 128 znaków." at /home/admin/domains/drmaterac.pl/public_html/classes/ObjectModel.php line 1094 {"exception":"[object] (PrestaShopException(code: 0): Właściwość Image->legend ma teraz długość 162 znaków. Musi mieć między 0 a 128 znaków. at /home/admin/domains/drmaterac.pl/public_html/classes/ObjectModel.php:1094)"} []
[2025-05-28 15:53:32] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-28 15:55:55] request.INFO: Matched route "admin_product_image_form". {"route":"admin_product_image_form","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductImageController::formAction","idImage":"18461","_route":"admin_product_image_form"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/image/form/18461?_token=IZKDU2S3ZjOseacvHDi_X2D5g_2e2x4KRSQyD3NiXPE","method":"POST"} []
[2025-05-28 15:55:55] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-28 15:55:55] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-28 15:55:55] request.CRITICAL: Uncaught PHP Exception PrestaShopException: "Właściwość Image->legend ma teraz długość 137 znaków. Musi mieć między 0 a 128 znaków." at /home/admin/domains/drmaterac.pl/public_html/classes/ObjectModel.php line 1094 {"exception":"[object] (PrestaShopException(code: 0): Właściwość Image->legend ma teraz długość 137 znaków. Musi mieć między 0 a 128 znaków. at /home/admin/domains/drmaterac.pl/public_html/classes/ObjectModel.php:1094)"} []
[2025-05-28 15:55:55] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-05-28 15:56:29] request.INFO: Matched route "admin_product_image_form". {"route":"admin_product_image_form","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductImageController::formAction","idImage":"18461","_route":"admin_product_image_form"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/image/form/18461?_token=IZKDU2S3ZjOseacvHDi_X2D5g_2e2x4KRSQyD3NiXPE","method":"POST"} []
[2025-05-28 15:56:29] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-05-28 15:56:29] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-05-28 15:56:29] request.CRITICAL: Uncaught PHP Exception PrestaShopException: "Właściwość Image->legend ma teraz długość 137 znaków. Musi mieć między 0 a 128 znaków." at /home/admin/domains/drmaterac.pl/public_html/classes/ObjectModel.php line 1094 {"exception":"[object] (PrestaShopException(code: 0): Właściwość Image->legend ma teraz długość 137 znaków. Musi mieć między 0 a 128 znaków. at /home/admin/domains/drmaterac.pl/public_html/classes/ObjectModel.php:1094)"} []
[2025-05-28 15:56:29] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 09:58:38] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"20","offset":"20","orderBy":"name","sortOrder":"asc","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/20/20/name/asc?_route=0&_token=3nbP6DsaEcAJ5lLmxWW3p1H1olfMTf4dRxjw6KzQqBI&controller_name=PrestaShopBundle%5CController%5CAdmin%5CProductController&controller_type=2","method":"GET"} []
[2025-06-03 09:58:38] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 09:58:38] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"biuro@project-pro.pl"} []
[2025-06-03 09:58:38] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 09:58:38] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 10:00:53] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"20","offset":"20","orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/20/20?_route=0&_token=3nbP6DsaEcAJ5lLmxWW3p1H1olfMTf4dRxjw6KzQqBI&controller_name=PrestaShopBundle%5CController%5CAdmin%5CProductController&controller_type=2","method":"GET"} []
[2025-06-03 10:00:53] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 10:00:53] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"biuro@project-pro.pl"} []
[2025-06-03 10:00:53] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 10:00:53] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 11:33:43] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"300","offset":"0","orderBy":"id_product","sortOrder":"desc","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/0/300/id_product/desc?_token=dG-DAe1YSYPUcNRRfYjhRZC4QfAFJcfWkTl7d9gML-A","method":"POST"} []
[2025-06-03 11:33:43] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 11:33:43] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-03 11:33:43] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 11:33:43] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 11:33:51] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=dG-DAe1YSYPUcNRRfYjhRZC4QfAFJcfWkTl7d9gML-A","method":"GET"} []
[2025-06-03 11:33:51] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 11:33:51] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-03 11:33:51] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 11:33:51] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 11:42:58] request.INFO: Matched route "api_translation_value_edit". {"route":"api_translation_value_edit","route_parameters":{"_controller":"prestashop.core.api.translation.controller:translationEditAction","_legacy_controller":"AdminTranslations","_route":"api_translation_value_edit"},"request_uri":"https://drmaterac.pl/iadmin/index.php/api/translations/edit?_token=un2-S8OahptkVilwzM0gbK4DXpq-p-Qwqz5Fm_F4wQ8","method":"POST"} []
[2025-06-03 11:42:58] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 11:42:58] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"biuro@project-pro.pl"} []
[2025-06-03 11:42:58] app.ERROR: No result was found for query although at least one row was expected. {"object_type":"Translation"} []
[2025-06-03 11:43:00] cache.WARNING: Failed to clear the cache {"exception":"[object] (UnexpectedValueException(code: 0): RecursiveDirectoryIterator::__construct(/home/admin/domains/drmaterac.pl/public_html/var/cache/prod/pools/yocypB9Trp/): failed to open dir: No such file or directory at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/Cache/Traits/FilesystemCommonTrait.php:58)"} []
[2025-06-03 11:43:01] cache.WARNING: Failed to clear the cache {"exception":"[object] (UnexpectedValueException(code: 0): RecursiveDirectoryIterator::__construct(/home/admin/domains/drmaterac.pl/public_html/var/cache/prod/pools/+TSjZejPlm/): failed to open dir: No such file or directory at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/Cache/Traits/FilesystemCommonTrait.php:58)"} []
[2025-06-03 11:43:01] cache.WARNING: Failed to clear the cache {"exception":"[object] (UnexpectedValueException(code: 0): RecursiveDirectoryIterator::__construct(/home/admin/domains/drmaterac.pl/public_html/var/cache/prod/pools/K1vhvQOmY1/): failed to open dir: No such file or directory at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/Cache/Traits/FilesystemCommonTrait.php:58)"} []
[2025-06-03 11:43:01] cache.WARNING: Failed to clear the cache {"exception":"[object] (UnexpectedValueException(code: 0): RecursiveDirectoryIterator::__construct(/home/admin/domains/drmaterac.pl/public_html/var/cache/prod/pools/mZi3TOr1xs/): failed to open dir: No such file or directory at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/Cache/Traits/FilesystemCommonTrait.php:58)"} []
[2025-06-03 11:43:01] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 11:47:14] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=dG-DAe1YSYPUcNRRfYjhRZC4QfAFJcfWkTl7d9gML-A","method":"GET"} []
[2025-06-03 11:47:14] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 11:47:14] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-03 11:47:14] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 11:47:14] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 11:47:31] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=dG-DAe1YSYPUcNRRfYjhRZC4QfAFJcfWkTl7d9gML-A","method":"GET"} []
[2025-06-03 11:47:31] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 11:47:31] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-03 11:47:31] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 11:47:31] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 11:47:54] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=dG-DAe1YSYPUcNRRfYjhRZC4QfAFJcfWkTl7d9gML-A","method":"GET"} []
[2025-06-03 11:47:58] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 11:47:58] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-03 11:47:58] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 11:47:58] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 11:48:12] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=dG-DAe1YSYPUcNRRfYjhRZC4QfAFJcfWkTl7d9gML-A","method":"GET"} []
[2025-06-03 11:48:12] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 11:48:12] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-03 11:48:12] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 11:48:12] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 11:48:22] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=dG-DAe1YSYPUcNRRfYjhRZC4QfAFJcfWkTl7d9gML-A","method":"GET"} []
[2025-06-03 11:48:22] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 11:48:22] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-03 11:48:22] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 11:48:22] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 11:48:32] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=VVIofWl19jH6ndCb7sOEsLvBc3hlSls77DXNNpYy08w","method":"GET"} []
[2025-06-03 11:48:32] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 11:48:32] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-03 11:48:32] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 11:48:32] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 11:57:51] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=VVIofWl19jH6ndCb7sOEsLvBc3hlSls77DXNNpYy08w","method":"GET"} []
[2025-06-03 11:57:51] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 11:57:51] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-03 11:57:51] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 11:57:51] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 11:58:50] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=VVIofWl19jH6ndCb7sOEsLvBc3hlSls77DXNNpYy08w","method":"GET"} []
[2025-06-03 11:58:50] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 11:58:50] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-03 11:58:50] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 11:58:50] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 11:59:30] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=VVIofWl19jH6ndCb7sOEsLvBc3hlSls77DXNNpYy08w","method":"GET"} []
[2025-06-03 11:59:30] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 11:59:30] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-03 11:59:30] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 11:59:30] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 12:09:13] request.INFO: Matched route "api_translation_value_edit". {"route":"api_translation_value_edit","route_parameters":{"_controller":"prestashop.core.api.translation.controller:translationEditAction","_legacy_controller":"AdminTranslations","_route":"api_translation_value_edit"},"request_uri":"https://drmaterac.pl/iadmin/index.php/api/translations/edit?_token=un2-S8OahptkVilwzM0gbK4DXpq-p-Qwqz5Fm_F4wQ8","method":"POST"} []
[2025-06-03 12:09:13] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 12:09:13] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"biuro@project-pro.pl"} []
[2025-06-03 12:09:13] app.ERROR: No result was found for query although at least one row was expected. {"object_type":"Translation"} []
[2025-06-03 12:09:19] cache.WARNING: Failed to clear the cache {"exception":"[object] (UnexpectedValueException(code: 0): RecursiveDirectoryIterator::__construct(/home/admin/domains/drmaterac.pl/public_html/var/cache/prod/pools/yocypB9Trp/): failed to open dir: No such file or directory at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/Cache/Traits/FilesystemCommonTrait.php:58)"} []
[2025-06-03 12:09:19] cache.WARNING: Failed to clear the cache {"exception":"[object] (UnexpectedValueException(code: 0): RecursiveDirectoryIterator::__construct(/home/admin/domains/drmaterac.pl/public_html/var/cache/prod/pools/+TSjZejPlm/): failed to open dir: No such file or directory at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/Cache/Traits/FilesystemCommonTrait.php:58)"} []
[2025-06-03 12:09:19] cache.WARNING: Failed to clear the cache {"exception":"[object] (UnexpectedValueException(code: 0): RecursiveDirectoryIterator::__construct(/home/admin/domains/drmaterac.pl/public_html/var/cache/prod/pools/K1vhvQOmY1/): failed to open dir: No such file or directory at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/Cache/Traits/FilesystemCommonTrait.php:58)"} []
[2025-06-03 12:09:19] cache.WARNING: Failed to clear the cache {"exception":"[object] (UnexpectedValueException(code: 0): RecursiveDirectoryIterator::__construct(/home/admin/domains/drmaterac.pl/public_html/var/cache/prod/pools/mZi3TOr1xs/): failed to open dir: No such file or directory at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/Cache/Traits/FilesystemCommonTrait.php:58)"} []
[2025-06-03 12:09:19] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 16:07:16] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=vwVhc0HleKCJ5DuJFyyYK5v4qJukADB1dM8ccH9Vkws","method":"GET"} []
[2025-06-03 16:07:16] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 16:07:16] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-03 16:07:16] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 16:07:16] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 16:07:27] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=vwVhc0HleKCJ5DuJFyyYK5v4qJukADB1dM8ccH9Vkws","method":"GET"} []
[2025-06-03 16:07:27] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 16:07:27] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-03 16:07:27] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 16:07:27] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 16:07:46] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=vwVhc0HleKCJ5DuJFyyYK5v4qJukADB1dM8ccH9Vkws","method":"GET"} []
[2025-06-03 16:07:46] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 16:07:46] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-03 16:07:46] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 16:07:46] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 16:08:27] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=vwVhc0HleKCJ5DuJFyyYK5v4qJukADB1dM8ccH9Vkws","method":"GET"} []
[2025-06-03 16:08:27] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 16:08:27] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-03 16:08:27] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 16:08:27] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 16:08:33] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=vwVhc0HleKCJ5DuJFyyYK5v4qJukADB1dM8ccH9Vkws","method":"GET"} []
[2025-06-03 16:08:33] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 16:08:33] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-03 16:08:33] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 16:08:33] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 16:08:46] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=vwVhc0HleKCJ5DuJFyyYK5v4qJukADB1dM8ccH9Vkws","method":"GET"} []
[2025-06-03 16:08:46] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 16:08:46] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-03 16:08:46] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 16:08:46] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 16:09:23] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=BeToT4DJv84C0VxhD7s7FvZHHaGTOjKAxlRt_xJ7lGo","method":"GET"} []
[2025-06-03 16:09:23] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 16:09:23] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-03 16:09:24] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 16:09:24] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 16:10:12] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=BeToT4DJv84C0VxhD7s7FvZHHaGTOjKAxlRt_xJ7lGo","method":"GET"} []
[2025-06-03 16:10:12] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 16:10:12] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-03 16:10:12] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 16:10:12] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 16:40:08] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=N3JSm8j0vav23gGDZJxbU1SVZxEnqwIGIl-WAQkIbRE","method":"GET"} []
[2025-06-03 16:40:08] security.INFO: Populated the TokenStorage with an anonymous Token. [] []
[2025-06-03 16:40:08] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 16:40:08] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 16:43:33] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=CDOUVecTvzFZOY1SdmoZ5e8kfR0t7O8cwqUjVkBwesQ","method":"GET"} []
[2025-06-03 16:43:33] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 16:43:33] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-03 16:43:33] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 16:43:33] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 16:59:51] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=CDOUVecTvzFZOY1SdmoZ5e8kfR0t7O8cwqUjVkBwesQ","method":"GET"} []
[2025-06-03 16:59:51] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 16:59:51] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-03 16:59:51] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 16:59:51] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 17:01:08] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=CDOUVecTvzFZOY1SdmoZ5e8kfR0t7O8cwqUjVkBwesQ","method":"GET"} []
[2025-06-03 17:01:08] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 17:01:08] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-03 17:01:08] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 17:01:08] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 17:07:38] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=CDOUVecTvzFZOY1SdmoZ5e8kfR0t7O8cwqUjVkBwesQ","method":"GET"} []
[2025-06-03 17:07:38] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 17:07:38] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-03 17:07:38] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 17:07:38] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 17:07:43] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=CDOUVecTvzFZOY1SdmoZ5e8kfR0t7O8cwqUjVkBwesQ","method":"GET"} []
[2025-06-03 17:07:43] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 17:07:43] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-03 17:07:43] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 17:07:43] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 17:21:56] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=CDOUVecTvzFZOY1SdmoZ5e8kfR0t7O8cwqUjVkBwesQ","method":"GET"} []
[2025-06-03 17:21:56] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 17:21:56] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-03 17:21:56] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 17:21:56] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 17:37:13] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=CDOUVecTvzFZOY1SdmoZ5e8kfR0t7O8cwqUjVkBwesQ","method":"GET"} []
[2025-06-03 17:37:13] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 17:37:13] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-03 17:37:13] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 17:37:13] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 17:37:16] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=CDOUVecTvzFZOY1SdmoZ5e8kfR0t7O8cwqUjVkBwesQ","method":"GET"} []
[2025-06-03 17:37:16] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 17:37:16] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-03 17:37:16] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 17:37:16] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 17:46:59] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=CDOUVecTvzFZOY1SdmoZ5e8kfR0t7O8cwqUjVkBwesQ","method":"GET"} []
[2025-06-03 17:46:59] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 17:46:59] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-03 17:46:59] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 17:46:59] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 19:47:39] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=XFLT-c0Oy0FHorOu3f6FtytZPiRG6rx-HFB8ql8Kw6U","method":"GET"} []
[2025-06-03 19:47:39] security.INFO: Populated the TokenStorage with an anonymous Token. [] []
[2025-06-03 19:47:39] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 19:47:39] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-03 20:03:31] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=XFLT-c0Oy0FHorOu3f6FtytZPiRG6rx-HFB8ql8Kw6U","method":"GET"} []
[2025-06-03 20:03:31] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-03 20:03:31] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-03 20:03:31] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-03 20:03:31] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-04 08:11:37] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=9v902A60OBYwmZrE7yLI81GWWm4yTkOtlsfiqpQYvDk","method":"GET"} []
[2025-06-04 08:11:37] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-04 08:11:37] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-04 08:11:38] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-04 08:11:38] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-04 08:11:46] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=TSiEE3IJh6XyMIyCiyiAYMBRqaArOAkI53-DdF4ANsg","method":"GET"} []
[2025-06-04 08:11:46] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-04 08:11:46] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-04 08:11:46] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-04 08:11:46] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-04 08:12:18] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=K9aEMC3rs3-OYI3aFD3-ZgZOm8K9x7BCpKpSOVnVNbM","method":"GET"} []
[2025-06-04 08:12:18] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-04 08:12:18] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-04 08:12:19] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-04 08:12:19] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-04 08:57:13] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"20","offset":"0","orderBy":"id_product","sortOrder":"desc","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/0/20/id_product/desc?_token=waUQ-tJcwiHrtbTCHHV948T4iDdw8o6xcAkvOPJqrZM","method":"POST"} []
[2025-06-04 08:57:13] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-04 08:57:13] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-04 08:57:13] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-04 08:57:13] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-04 08:57:43] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"20","offset":"460","orderBy":"id_product","sortOrder":"desc","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/460/20/id_product/desc?_route=0&_token=waUQ-tJcwiHrtbTCHHV948T4iDdw8o6xcAkvOPJqrZM&controller_name=PrestaShopBundle%5CController%5CAdmin%5CProductController&controller_type=2","method":"GET"} []
[2025-06-04 08:57:43] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-04 08:57:43] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-04 08:57:43] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-04 08:57:43] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-04 08:58:42] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"20","offset":"0","orderBy":"id_product","sortOrder":"desc","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/0/20/id_product/desc?_token=waUQ-tJcwiHrtbTCHHV948T4iDdw8o6xcAkvOPJqrZM","method":"POST"} []
[2025-06-04 08:58:42] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-04 08:58:42] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-04 08:58:42] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-04 08:58:42] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-04 08:58:45] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=waUQ-tJcwiHrtbTCHHV948T4iDdw8o6xcAkvOPJqrZM","method":"GET"} []
[2025-06-04 08:58:45] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-04 08:58:45] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-04 08:58:45] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-04 08:58:45] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-04 09:06:05] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"20","offset":"0","orderBy":"id_product","sortOrder":"desc","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/0/20/id_product/desc?_token=FK350XrJdKTGBkaBC5Nrskucemc6FBaGm0WnAsorPow","method":"POST"} []
[2025-06-04 09:06:05] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-04 09:06:05] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-04 09:06:05] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-04 09:06:05] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-04 09:09:36] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"20","offset":"0","orderBy":"id_product","sortOrder":"desc","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/0/20/id_product/desc?_token=FK350XrJdKTGBkaBC5Nrskucemc6FBaGm0WnAsorPow","method":"POST"} []
[2025-06-04 09:09:36] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-04 09:09:36] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-04 09:09:36] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-04 09:09:36] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-04 09:11:56] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"20","offset":"0","orderBy":"id_product","sortOrder":"desc","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/0/20/id_product/desc?_token=FK350XrJdKTGBkaBC5Nrskucemc6FBaGm0WnAsorPow","method":"POST"} []
[2025-06-04 09:11:56] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-04 09:11:56] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-04 09:11:56] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-04 09:11:56] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-04 09:16:12] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"20","offset":"0","orderBy":"id_product","sortOrder":"desc","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/0/20/id_product/desc?_token=FK350XrJdKTGBkaBC5Nrskucemc6FBaGm0WnAsorPow","method":"POST"} []
[2025-06-04 09:16:12] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-04 09:16:12] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-04 09:16:12] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-04 09:16:12] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-04 09:16:41] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=vlMYDg5xXF-U4jTghFVRDxkK9UczMscmzuKRsNTDsVU","method":"GET"} []
[2025-06-04 09:16:41] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-04 09:16:41] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-04 09:16:41] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-04 09:16:41] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-04 09:16:52] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=vlMYDg5xXF-U4jTghFVRDxkK9UczMscmzuKRsNTDsVU","method":"GET"} []
[2025-06-04 09:16:52] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-04 09:16:52] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-04 09:16:52] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-04 09:16:52] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-04 09:17:04] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=-tKravQZNE9YX6LE5OKWfWWwGF3SXvWCjq5YswHrZ1U","method":"GET"} []
[2025-06-04 09:17:04] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-04 09:17:04] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-04 09:17:04] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-04 09:17:04] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-04 09:17:38] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=vlMYDg5xXF-U4jTghFVRDxkK9UczMscmzuKRsNTDsVU","method":"GET"} []
[2025-06-04 09:17:38] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-04 09:17:38] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-04 09:17:39] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-04 09:17:39] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-04 09:30:05] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"20","offset":"0","orderBy":"id_product","sortOrder":"desc","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/0/20/id_product/desc?_token=vlMYDg5xXF-U4jTghFVRDxkK9UczMscmzuKRsNTDsVU","method":"POST"} []
[2025-06-04 09:30:05] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-04 09:30:05] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-04 09:30:05] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-04 09:30:05] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-04 09:30:28] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"20","offset":"0","orderBy":"id_product","sortOrder":"desc","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/0/20/id_product/desc?_token=vlMYDg5xXF-U4jTghFVRDxkK9UczMscmzuKRsNTDsVU","method":"POST"} []
[2025-06-04 09:30:28] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-04 09:30:28] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-04 09:30:28] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-04 09:30:28] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-04 09:30:42] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=PX7DuZNG-84_ZBiuDcxvSEzfKphtzjTbm-ItfCZXyLg","method":"GET"} []
[2025-06-04 09:30:42] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-04 09:30:42] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-04 09:30:42] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-04 09:30:42] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-04 09:30:59] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=treuKUZoh6lkRqSYkFjXUJ4UBXG1Sq5w-pN2My31pI4","method":"GET"} []
[2025-06-04 09:30:59] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-04 09:30:59] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-04 09:30:59] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-04 09:30:59] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-04 09:31:18] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=FYKBBf6Gl1VhRfpOWj9Yp2OIEHg9cEvcre9vs_jnqKk","method":"GET"} []
[2025-06-04 09:31:18] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-04 09:31:18] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-04 09:31:18] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-04 09:31:18] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-04 09:31:35] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=PX7DuZNG-84_ZBiuDcxvSEzfKphtzjTbm-ItfCZXyLg","method":"GET"} []
[2025-06-04 09:31:35] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-04 09:31:35] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-04 09:31:35] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-04 09:31:35] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-04 09:39:41] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=treuKUZoh6lkRqSYkFjXUJ4UBXG1Sq5w-pN2My31pI4","method":"GET"} []
[2025-06-04 09:39:41] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-04 09:39:41] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-04 09:39:42] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-04 09:39:42] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-04 17:19:33] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"300","offset":"0","orderBy":"sav_quantity","sortOrder":"asc","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/0/300/sav_quantity/asc?_token=C2N-pOazftoGuw3oArXn5os_NE3IvGygn94OSNQape0","method":"POST"} []
[2025-06-04 17:19:33] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-04 17:19:33] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-04 17:19:33] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-04 17:19:33] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-04 17:20:09] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"300","offset":"0","orderBy":"sav_quantity","sortOrder":"asc","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/0/300/sav_quantity/asc?_token=C2N-pOazftoGuw3oArXn5os_NE3IvGygn94OSNQape0","method":"POST"} []
[2025-06-04 17:20:09] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-04 17:20:09] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-04 17:20:10] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-04 17:20:10] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-04 17:25:01] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"300","offset":"0","orderBy":"sav_quantity","sortOrder":"asc","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/0/300/sav_quantity/asc?_token=C2N-pOazftoGuw3oArXn5os_NE3IvGygn94OSNQape0","method":"POST"} []
[2025-06-04 17:25:01] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-04 17:25:01] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-04 17:25:01] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-04 17:25:01] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-04 23:11:28] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"300","offset":"0","orderBy":"sav_quantity","sortOrder":"asc","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/0/300/sav_quantity/asc?_token=3sfHAnS1lZaghp1KurXUeI1QE3yIZpdMAC2tG78hdDM","method":"GET"} []
[2025-06-04 23:11:28] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-04 23:11:28] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-04 23:11:28] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-04 23:11:28] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-05 08:11:12] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=ZTRABEUIuplABlLYscRMi1SPHOQbM6gaWT3DNh-xok8","method":"GET"} []
[2025-06-05 08:11:12] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-05 08:11:12] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-05 08:11:13] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-05 08:11:13] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-05 08:50:23] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=ZTRABEUIuplABlLYscRMi1SPHOQbM6gaWT3DNh-xok8","method":"GET"} []
[2025-06-05 08:50:24] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-05 08:50:24] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-05 08:50:24] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-05 08:50:24] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-05 08:54:30] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=OY0SWjTVHQmrELYWHT6TAMFIOxM4oBfoaRbJEf3bb64","method":"GET"} []
[2025-06-05 08:54:30] security.INFO: Populated the TokenStorage with an anonymous Token. [] []
[2025-06-05 08:54:31] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-05 08:54:31] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-05 09:28:39] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=OY0SWjTVHQmrELYWHT6TAMFIOxM4oBfoaRbJEf3bb64","method":"GET"} []
[2025-06-05 09:28:39] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-05 09:28:39] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-05 09:28:40] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-05 09:28:40] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-05 10:01:48] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=2VYia82gVsL3zsXKM6IKPC50OUAPs2rKkJRGvG0Cln8","method":"GET"} []
[2025-06-05 10:01:48] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-05 10:01:48] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-05 10:01:48] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-05 10:01:48] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-05 23:32:08] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"100","offset":"0","orderBy":"id_product","sortOrder":"desc","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/0/100/id_product/desc?_token=NSDQpXuBDppyhOFCGeMD1tOc_1Z8iJTsFZYW2uBeI8U&orderBy=id_product&sortOrder=asc","method":"GET"} []
[2025-06-05 23:32:08] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-05 23:32:08] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-05 23:32:08] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-05 23:32:08] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-06 07:30:59] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=Wt-5ojWBxSSMC8MFhFF-1N6D2mtYW700iS6plB5Zxn4","method":"GET"} []
[2025-06-06 07:30:59] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-06 07:30:59] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-06 07:30:59] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-06 07:30:59] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-06 07:31:10] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=Wt-5ojWBxSSMC8MFhFF-1N6D2mtYW700iS6plB5Zxn4","method":"GET"} []
[2025-06-06 07:31:10] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-06 07:31:10] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-06 07:31:10] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-06 07:31:10] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-06 07:37:32] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=N3eyPQlJyCjec2hqXWx8lnHyRt-vP041p0o2gy_CYOU","method":"GET"} []
[2025-06-06 07:37:32] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-06 07:37:32] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-06 07:37:32] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-06 07:37:32] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-06 07:50:38] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=N3eyPQlJyCjec2hqXWx8lnHyRt-vP041p0o2gy_CYOU","method":"GET"} []
[2025-06-06 07:50:38] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-06 07:50:38] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-06 07:50:39] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-06 07:50:39] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-17 18:26:07] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"100","offset":"0","orderBy":"id_product","sortOrder":"asc","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/0/100/id_product/asc?_token=Yvk5XJld-fTI-W4AP6IYknSGwiSiDaBPGvK1kVG3Vsc","method":"POST"} []
[2025-06-17 18:26:07] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-17 18:26:07] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-17 18:26:07] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-17 18:26:07] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-17 18:29:37] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=t9qJqk_PsqsIPYoKShNukkRlNG4nbAIC0R0lA3u633A","method":"GET"} []
[2025-06-17 18:29:37] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-17 18:29:37] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-17 18:29:37] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-17 18:29:37] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-17 18:30:07] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"100","offset":"0","orderBy":"id_product","sortOrder":"asc","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/0/100/id_product/asc?_token=Yvk5XJld-fTI-W4AP6IYknSGwiSiDaBPGvK1kVG3Vsc","method":"POST"} []
[2025-06-17 18:30:07] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-17 18:30:07] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-17 18:30:08] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-17 18:30:08] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-17 18:33:25] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"100","offset":"0","orderBy":"id_product","sortOrder":"asc","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/0/100/id_product/asc?_token=Yvk5XJld-fTI-W4AP6IYknSGwiSiDaBPGvK1kVG3Vsc","method":"POST"} []
[2025-06-17 18:33:25] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-17 18:33:25] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-17 18:33:25] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-17 18:33:25] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-17 18:33:58] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=lgR217pTJHGo5-HEdbCrliFJUrs5TcYw3BQ4vnogiPE","method":"GET"} []
[2025-06-17 18:33:58] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-17 18:33:58] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-17 18:33:58] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-17 18:33:58] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-17 18:34:19] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=lgR217pTJHGo5-HEdbCrliFJUrs5TcYw3BQ4vnogiPE","method":"GET"} []
[2025-06-17 18:34:19] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-17 18:34:19] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-17 18:34:20] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-17 18:34:20] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-17 18:34:50] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=Bll8gMPd-9_tn6Z2T2iTqk1bDocFWbz_ET1ldUstC8A","method":"GET"} []
[2025-06-17 18:34:50] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-17 18:34:50] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-17 18:34:50] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-17 18:34:50] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-17 18:35:00] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=Esvp2ytyzKVok6hs5CMNutAQ4s3R7gOL-RIuiywnS9A","method":"GET"} []
[2025-06-17 18:35:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-17 18:35:00] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-17 18:35:00] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-17 18:35:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-17 18:35:26] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=Esvp2ytyzKVok6hs5CMNutAQ4s3R7gOL-RIuiywnS9A","method":"GET"} []
[2025-06-17 18:35:26] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-17 18:35:26] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-17 18:35:26] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-17 18:35:26] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-17 18:35:29] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=Esvp2ytyzKVok6hs5CMNutAQ4s3R7gOL-RIuiywnS9A","method":"GET"} []
[2025-06-17 18:35:29] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-17 18:35:29] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-17 18:35:29] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-17 18:35:29] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-06-17 18:35:53] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=TxUKWtr-5Azw7LSl6bMazgFHjLDQRXlwDfLvzpcTtRE","method":"GET"} []
[2025-06-17 18:35:53] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-06-17 18:35:53] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-06-17 18:35:53] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-06-17 18:35:53] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-07-02 09:39:59] request.ERROR: Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException: "No route found for "DELETE /security/compromised": Method Not Allowed (Allow: GET)" at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/HttpKernel/EventListener/RouterListener.php line 141 {"exception":"[object] (Symfony\\Component\\HttpKernel\\Exception\\MethodNotAllowedHttpException(code: 0): No route found for \"DELETE /security/compromised\": Method Not Allowed (Allow: GET) at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/HttpKernel/EventListener/RouterListener.php:141, Symfony\\Component\\Routing\\Exception\\MethodNotAllowedException(code: 0): at /home/admin/domains/drmaterac.pl/public_html/var/cache/prod/appProdProjectContainerUrlMatcher.php:7545)"} []
[2025-07-02 09:41:11] request.ERROR: Uncaught PHP Exception Symfony\Component\HttpKernel\Exception\MethodNotAllowedHttpException: "No route found for "DELETE /security/compromised": Method Not Allowed (Allow: GET)" at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/HttpKernel/EventListener/RouterListener.php line 141 {"exception":"[object] (Symfony\\Component\\HttpKernel\\Exception\\MethodNotAllowedHttpException(code: 0): No route found for \"DELETE /security/compromised\": Method Not Allowed (Allow: GET) at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/HttpKernel/EventListener/RouterListener.php:141, Symfony\\Component\\Routing\\Exception\\MethodNotAllowedException(code: 0): at /home/admin/domains/drmaterac.pl/public_html/var/cache/prod/appProdProjectContainerUrlMatcher.php:7545)"} []
[2025-07-26 14:36:06] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"50","offset":"0","orderBy":"reference","sortOrder":"desc","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/0/50/reference/desc?_token=I5v6i4CFxryFR3juBhx186Ai64hJJicHX4uJIa0Aurg","method":"POST"} []
[2025-07-26 14:36:06] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-07-26 14:36:06] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-07-26 14:36:06] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-07-26 14:36:06] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-07-26 14:38:06] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=fxIUAUYq0ZgNXUJSF4fvSbjdcVH5w0lHklYRCUSurVA","method":"GET"} []
[2025-07-26 14:38:06] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-07-26 14:38:06] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-07-26 14:38:06] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-07-26 14:38:06] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-07-26 14:57:35] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"50","offset":"0","orderBy":"reference","sortOrder":"desc","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/0/50/reference/desc?_token=fxIUAUYq0ZgNXUJSF4fvSbjdcVH5w0lHklYRCUSurVA","method":"GET"} []
[2025-07-26 14:57:35] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-07-26 14:57:35] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-07-26 14:57:35] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-07-26 14:57:35] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-07-27 21:51:23] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=uEwVb2mpL-RdWlApZnZkE-df4T95U8h7DYeYmhdTKoo","method":"GET"} []
[2025-07-27 21:51:23] security.INFO: Populated the TokenStorage with an anonymous Token. [] []
[2025-07-27 21:51:23] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-07-27 21:51:23] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-07-28 09:48:06] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=rO7fkWGB304GDdojFxPX_ryX57IeAf0SeH4TFnTrxXI","method":"GET"} []
[2025-07-28 09:48:06] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-07-28 09:48:06] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-07-28 09:48:06] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-07-28 09:48:06] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-07-28 09:49:01] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=rO7fkWGB304GDdojFxPX_ryX57IeAf0SeH4TFnTrxXI","method":"GET"} []
[2025-07-28 09:49:01] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-07-28 09:49:01] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-07-28 09:49:02] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-07-28 09:49:02] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-07-28 12:56:33] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=Me7VWJ8dSFKDD8VPZ1lIilEv8KjEBXmsFNUOFwi8PjY","method":"GET"} []
[2025-07-28 12:56:33] security.INFO: Populated the TokenStorage with an anonymous Token. [] []
[2025-07-28 12:56:33] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-07-28 12:56:33] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-07-28 13:44:05] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=tU3UGlpEfvnClnJzz5jj4MHgTUDdZ5x7ek-OXXZZCNQ","method":"GET"} []
[2025-07-28 13:44:05] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-07-28 13:44:05] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-07-28 13:44:06] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-07-28 13:44:06] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-07-28 14:11:08] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=uhthoxwbCbKINajymEn1p01uII5_pgqhMd_nw2baQtQ","method":"GET"} []
[2025-07-28 14:11:08] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-07-28 14:11:08] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-07-28 14:11:08] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-07-28 14:11:08] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-07-28 14:13:38] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=uhthoxwbCbKINajymEn1p01uII5_pgqhMd_nw2baQtQ","method":"GET"} []
[2025-07-28 14:13:38] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-07-28 14:13:38] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-07-28 14:13:38] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-07-28 14:13:38] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-07-28 14:14:24] request.INFO: Matched route "admin_product_catalog". {"route":"admin_product_catalog","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::catalogAction","_legacy_controller":"AdminProducts","limit":"last","offset":0,"orderBy":"last","sortOrder":"last","_route":"admin_product_catalog"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products?_token=1PKy4GOUciCI7V9fJIKPHEnijipHJ46uo0WcYhb4vBg","method":"GET"} []
[2025-07-28 14:14:24] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-07-28 14:14:24] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-07-28 14:14:24] request.CRITICAL: Uncaught PHP Exception PrestaShop\PrestaShop\Core\Localization\Exception\LocalizationException: "Invalid $number parameter: "" cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php line 108 {"exception":"[object] (PrestaShop\\PrestaShop\\Core\\Localization\\Exception\\LocalizationException(code: 0): Invalid $number parameter: \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/Core/Localization/Number/Formatter.php:108, InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Builder.php:40)"} []
[2025-07-28 14:14:24] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-08-13 11:34:08] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\FatalErrorException: "Core Error: <br>The encoded file <b>/home/admin/domains/drmaterac.pl/public_html/modules/pshowsso/src/Module.php</b> requires a license file.<br>The license file <b>.license.txt</b> has expired." at Unknown line 0 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\FatalErrorException(code: 0): Core Error: <br>The encoded file <b>/home/admin/domains/drmaterac.pl/public_html/modules/pshowsso/src/Module.php</b> requires a license file.<br>The license file <b>.license.txt</b> has expired. at Unknown:0)"} []
[2025-08-14 11:44:45] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\FatalErrorException: "Core Error: <br>The encoded file <b>/home/admin/domains/drmaterac.pl/public_html/modules/pshowsso/vendor/prestashow/presta-core/Model/AbstractAdminController.php</b> requires a license file.<br>The license file <b>.license.txt</b> has expired." at Unknown line 0 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\FatalErrorException(code: 0): Core Error: <br>The encoded file <b>/home/admin/domains/drmaterac.pl/public_html/modules/pshowsso/vendor/prestashow/presta-core/Model/AbstractAdminController.php</b> requires a license file.<br>The license file <b>.license.txt</b> has expired. at Unknown:0)"} []
[2025-09-01 21:40:45] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Routing\Exception\RouteNotFoundException: "Unable to generate a URL for the named route "pshowsso.admin.config" as such route does not exist." at /home/admin/domains/drmaterac.pl/public_html/var/cache/prod/appProdProjectContainerUrlGenerator.php line 587 {"exception":"[object] (Symfony\\Component\\Routing\\Exception\\RouteNotFoundException(code: 0): Unable to generate a URL for the named route \"pshowsso.admin.config\" as such route does not exist. at /home/admin/domains/drmaterac.pl/public_html/var/cache/prod/appProdProjectContainerUrlGenerator.php:587)"} []
[2025-09-01 21:40:55] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Routing\Exception\RouteNotFoundException: "Unable to generate a URL for the named route "pshowsso.admin.config" as such route does not exist." at /home/admin/domains/drmaterac.pl/public_html/var/cache/prod/appProdProjectContainerUrlGenerator.php line 587 {"exception":"[object] (Symfony\\Component\\Routing\\Exception\\RouteNotFoundException(code: 0): Unable to generate a URL for the named route \"pshowsso.admin.config\" as such route does not exist. at /home/admin/domains/drmaterac.pl/public_html/var/cache/prod/appProdProjectContainerUrlGenerator.php:587)"} []
[2025-09-01 21:41:09] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\FatalErrorException: "Compile Error: require(): Failed opening required '/home/admin/domains/drmaterac.pl/public_html/var/cache/prod/ContainerCuqbagc/getPrestashop_Module_ManagerService.php' (include_path='/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear_exception:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/console_getopt:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear-core-minimal/src:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/archive_tar:.:/usr/local/php74/lib64/php/')" at /home/admin/domains/drmaterac.pl/public_html/var/cache/prod/ContainerCuqbagc/appProdProjectContainer.php line 2883 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\FatalErrorException(code: 0): Compile Error: require(): Failed opening required '/home/admin/domains/drmaterac.pl/public_html/var/cache/prod/ContainerCuqbagc/getPrestashop_Module_ManagerService.php' (include_path='/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear_exception:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/console_getopt:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear-core-minimal/src:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/archive_tar:.:/usr/local/php74/lib64/php/') at /home/admin/domains/drmaterac.pl/public_html/var/cache/prod/ContainerCuqbagc/appProdProjectContainer.php:2883)"} []
[2025-09-01 21:41:11] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Routing\Exception\RouteNotFoundException: "Unable to generate a URL for the named route "pshowsso.admin.config" as such route does not exist." at /home/admin/domains/drmaterac.pl/public_html/var/cache/prod/appProdProjectContainerUrlGenerator.php line 587 {"exception":"[object] (Symfony\\Component\\Routing\\Exception\\RouteNotFoundException(code: 0): Unable to generate a URL for the named route \"pshowsso.admin.config\" as such route does not exist. at /home/admin/domains/drmaterac.pl/public_html/var/cache/prod/appProdProjectContainerUrlGenerator.php:587)"} []
[2025-09-01 21:41:18] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\FatalErrorException: "Compile Error: require(): Failed opening required '/home/admin/domains/drmaterac.pl/public_html/var/cache/prod/ContainerCuqbagc/getPrestashop_Core_Admin_PagePreferenceInterfaceService.php' (include_path='/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear_exception:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/console_getopt:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear-core-minimal/src:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/archive_tar:.:/usr/local/php74/lib64/php/')" at /home/admin/domains/drmaterac.pl/public_html/var/cache/prod/ContainerCuqbagc/appProdProjectContainer.php line 2883 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\FatalErrorException(code: 0): Compile Error: require(): Failed opening required '/home/admin/domains/drmaterac.pl/public_html/var/cache/prod/ContainerCuqbagc/getPrestashop_Core_Admin_PagePreferenceInterfaceService.php' (include_path='/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear_exception:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/console_getopt:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear-core-minimal/src:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/archive_tar:.:/usr/local/php74/lib64/php/') at /home/admin/domains/drmaterac.pl/public_html/var/cache/prod/ContainerCuqbagc/appProdProjectContainer.php:2883)"} []
[2025-09-01 21:41:20] request.INFO: Matched route "admin_module_manage". {"route":"admin_module_manage","route_parameters":{"category":null,"keyword":null,"_controller":"PrestaShopBundle\\Controller\\Admin\\Improve\\ModuleController::manageAction","_legacy_controller":"AdminModulesManage","_legacy_link":["AdminModulesManage","AdminModulesSf"],"_route":"admin_module_manage"},"request_uri":"https://drmaterac.pl/iadmin/index.php/improve/modules/manage?_token=QQwAhnU6Pd3iY47rXClnUChS8bhNb-YrRoMxu4m2j0U","method":"GET"} []
[2025-09-01 21:41:20] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-09-01 21:41:20] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"kacper@layersshow.com"} []
[2025-09-01 21:41:20] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\FatalErrorException: "Compile Error: require(): Failed opening required '/home/admin/domains/drmaterac.pl/public_html/var/cache/prod/ContainerCuqbagc/getModuleControllerService.php' (include_path='/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear_exception:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/console_getopt:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear-core-minimal/src:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/archive_tar:.:/usr/local/php74/lib64/php/')" at /home/admin/domains/drmaterac.pl/public_html/var/cache/prod/ContainerCuqbagc/appProdProjectContainer.php line 2883 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\FatalErrorException(code: 0): Compile Error: require(): Failed opening required '/home/admin/domains/drmaterac.pl/public_html/var/cache/prod/ContainerCuqbagc/getModuleControllerService.php' (include_path='/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear_exception:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/console_getopt:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear-core-minimal/src:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/archive_tar:.:/usr/local/php74/lib64/php/') at /home/admin/domains/drmaterac.pl/public_html/var/cache/prod/ContainerCuqbagc/appProdProjectContainer.php:2883)"} []
[2025-09-01 21:41:24] request.INFO: Matched route "admin_module_manage". {"route":"admin_module_manage","route_parameters":{"category":null,"keyword":null,"_controller":"PrestaShopBundle\\Controller\\Admin\\Improve\\ModuleController::manageAction","_legacy_controller":"AdminModulesManage","_legacy_link":["AdminModulesManage","AdminModulesSf"],"_route":"admin_module_manage"},"request_uri":"https://drmaterac.pl/iadmin/index.php/improve/modules/manage?_token=QQwAhnU6Pd3iY47rXClnUChS8bhNb-YrRoMxu4m2j0U","method":"GET"} []
[2025-09-01 21:41:24] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-09-01 21:41:24] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"kacper@layersshow.com"} []
[2025-09-01 21:41:24] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\FatalErrorException: "Compile Error: require(): Failed opening required '/home/admin/domains/drmaterac.pl/public_html/var/cache/prod/ContainerCuqbagc/getModuleControllerService.php' (include_path='/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear_exception:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/console_getopt:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear-core-minimal/src:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/archive_tar:.:/usr/local/php74/lib64/php/')" at /home/admin/domains/drmaterac.pl/public_html/var/cache/prod/ContainerCuqbagc/appProdProjectContainer.php line 2883 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\FatalErrorException(code: 0): Compile Error: require(): Failed opening required '/home/admin/domains/drmaterac.pl/public_html/var/cache/prod/ContainerCuqbagc/getModuleControllerService.php' (include_path='/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear_exception:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/console_getopt:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear-core-minimal/src:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/archive_tar:.:/usr/local/php74/lib64/php/') at /home/admin/domains/drmaterac.pl/public_html/var/cache/prod/ContainerCuqbagc/appProdProjectContainer.php:2883)"} []
[2025-09-01 21:41:42] request.INFO: Matched route "admin_module_manage". {"route":"admin_module_manage","route_parameters":{"category":null,"keyword":null,"_controller":"PrestaShopBundle\\Controller\\Admin\\Improve\\ModuleController::manageAction","_legacy_controller":"AdminModulesManage","_legacy_link":["AdminModulesManage","AdminModulesSf"],"_route":"admin_module_manage"},"request_uri":"https://drmaterac.pl/iadmin/index.php/improve/modules/manage?_token=QQwAhnU6Pd3iY47rXClnUChS8bhNb-YrRoMxu4m2j0U","method":"GET"} []
[2025-09-01 21:41:42] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-09-01 21:41:42] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"kacper@layersshow.com"} []
[2025-09-01 21:41:42] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\FatalErrorException: "Compile Error: require(): Failed opening required '/home/admin/domains/drmaterac.pl/public_html/var/cache/prod/ContainerCuqbagc/getModuleControllerService.php' (include_path='/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear_exception:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/console_getopt:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear-core-minimal/src:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/archive_tar:.:/usr/local/php74/lib64/php/')" at /home/admin/domains/drmaterac.pl/public_html/var/cache/prod/ContainerCuqbagc/appProdProjectContainer.php line 2883 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\FatalErrorException(code: 0): Compile Error: require(): Failed opening required '/home/admin/domains/drmaterac.pl/public_html/var/cache/prod/ContainerCuqbagc/getModuleControllerService.php' (include_path='/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear_exception:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/console_getopt:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear-core-minimal/src:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/archive_tar:.:/usr/local/php74/lib64/php/') at /home/admin/domains/drmaterac.pl/public_html/var/cache/prod/ContainerCuqbagc/appProdProjectContainer.php:2883)"} []
[2025-09-01 21:41:44] request.INFO: Matched route "admin_module_manage". {"route":"admin_module_manage","route_parameters":{"category":null,"keyword":null,"_controller":"PrestaShopBundle\\Controller\\Admin\\Improve\\ModuleController::manageAction","_legacy_controller":"AdminModulesManage","_legacy_link":["AdminModulesManage","AdminModulesSf"],"_route":"admin_module_manage"},"request_uri":"https://drmaterac.pl/iadmin/index.php/improve/modules/manage?_token=QQwAhnU6Pd3iY47rXClnUChS8bhNb-YrRoMxu4m2j0U","method":"GET"} []
[2025-09-01 21:41:44] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-09-01 21:41:44] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"kacper@layersshow.com"} []
[2025-09-01 21:41:44] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\FatalErrorException: "Compile Error: require(): Failed opening required '/home/admin/domains/drmaterac.pl/public_html/var/cache/prod/ContainerCuqbagc/getModuleControllerService.php' (include_path='/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear_exception:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/console_getopt:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear-core-minimal/src:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/archive_tar:.:/usr/local/php74/lib64/php/')" at /home/admin/domains/drmaterac.pl/public_html/var/cache/prod/ContainerCuqbagc/appProdProjectContainer.php line 2883 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\FatalErrorException(code: 0): Compile Error: require(): Failed opening required '/home/admin/domains/drmaterac.pl/public_html/var/cache/prod/ContainerCuqbagc/getModuleControllerService.php' (include_path='/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear_exception:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/console_getopt:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear-core-minimal/src:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/archive_tar:.:/usr/local/php74/lib64/php/') at /home/admin/domains/drmaterac.pl/public_html/var/cache/prod/ContainerCuqbagc/appProdProjectContainer.php:2883)"} []
[2025-09-01 21:41:50] request.INFO: Matched route "admin_module_notification_count". {"route":"admin_module_notification_count","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\Improve\\Modules\\AlertsController::notificationsCountAction","_legacy_controller":"AdminModulesNotifications","_legacy_link":"AdminModulesNotifications:count","_route":"admin_module_notification_count"},"request_uri":"https://drmaterac.pl/iadmin/index.php/improve/modules/alerts/count?_token=QQwAhnU6Pd3iY47rXClnUChS8bhNb-YrRoMxu4m2j0U","method":"GET"} []
[2025-09-01 21:41:50] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\FatalErrorException: "Compile Error: require(): Failed opening required '/home/admin/domains/drmaterac.pl/public_html/var/cache/prod/ContainerCuqbagc/getSecurity_Firewall_Map_Context_MainService.php' (include_path='/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear_exception:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/console_getopt:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear-core-minimal/src:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/archive_tar:.:/usr/local/php74/lib64/php/')" at /home/admin/domains/drmaterac.pl/public_html/var/cache/prod/ContainerCuqbagc/appProdProjectContainer.php line 2883 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\FatalErrorException(code: 0): Compile Error: require(): Failed opening required '/home/admin/domains/drmaterac.pl/public_html/var/cache/prod/ContainerCuqbagc/getSecurity_Firewall_Map_Context_MainService.php' (include_path='/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear_exception:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/console_getopt:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/pear-core-minimal/src:/home/admin/domains/drmaterac.pl/public_html/vendor/pear/archive_tar:.:/usr/local/php74/lib64/php/') at /home/admin/domains/drmaterac.pl/public_html/var/cache/prod/ContainerCuqbagc/appProdProjectContainer.php:2883)"} []
[2025-09-01 21:43:36] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Routing\Exception\RouteNotFoundException: "Unable to generate a URL for the named route "pshowsso.admin.config" as such route does not exist." at /home/admin/domains/drmaterac.pl/public_html/var/cache/prod/appProdProjectContainerUrlGenerator.php line 587 {"exception":"[object] (Symfony\\Component\\Routing\\Exception\\RouteNotFoundException(code: 0): Unable to generate a URL for the named route \"pshowsso.admin.config\" as such route does not exist. at /home/admin/domains/drmaterac.pl/public_html/var/cache/prod/appProdProjectContainerUrlGenerator.php:587)"} []
[2025-09-02 11:55:33] request.INFO: Matched route "admin_module_configure_action". {"route":"admin_module_configure_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\Improve\\ModuleController::configureModuleAction","_legacy_controller":"AdminModules","module_name":"pdcsvpriceupdate","_route":"admin_module_configure_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/improve/modules/manage/action/configure/pdcsvpriceupdate?_token=qV6eBhCEoUmNSD5TyFosYk_r0svfIOXYu2TftDb5fbQ","method":"GET"} []
[2025-09-02 11:55:33] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-09-02 11:55:33] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-09-02 11:55:33] request.CRITICAL: Uncaught PHP Exception InvalidArgumentException: "The routing file "/home/admin/domains/drmaterac.pl/public_html/app/config/routing.yml" contains unsupported keys for "app_modules": "pshowsso.admin.config". Expected one of: "resource", "type", "prefix", "path", "host", "schemes", "methods", "defaults", "requirements", "options", "condition", "controller"." at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/Routing/Loader/YamlFileLoader.php line 206 {"exception":"[object] (InvalidArgumentException(code: 0): The routing file \"/home/admin/domains/drmaterac.pl/public_html/app/config/routing.yml\" contains unsupported keys for \"app_modules\": \"pshowsso.admin.config\". Expected one of: \"resource\", \"type\", \"prefix\", \"path\", \"host\", \"schemes\", \"methods\", \"defaults\", \"requirements\", \"options\", \"condition\", \"controller\". at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/Routing/Loader/YamlFileLoader.php:206)"} []
[2025-09-02 11:55:33] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-09-02 11:57:09] request.INFO: Matched route "admin_module_configure_action". {"route":"admin_module_configure_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\Improve\\ModuleController::configureModuleAction","_legacy_controller":"AdminModules","module_name":"pdcsvpriceupdate","_route":"admin_module_configure_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/improve/modules/manage/action/configure/pdcsvpriceupdate?_token=htt9ja4RFldVUdO3aFF13y1mYrOF1DO75ySM-ZZIKzE","method":"GET"} []
[2025-09-02 11:57:09] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-09-02 11:57:09] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-09-02 11:57:09] request.CRITICAL: Uncaught PHP Exception InvalidArgumentException: "The routing file "/home/admin/domains/drmaterac.pl/public_html/app/config/routing.yml" contains unsupported keys for "app_modules": "pshowsso.admin.config". Expected one of: "resource", "type", "prefix", "path", "host", "schemes", "methods", "defaults", "requirements", "options", "condition", "controller"." at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/Routing/Loader/YamlFileLoader.php line 206 {"exception":"[object] (InvalidArgumentException(code: 0): The routing file \"/home/admin/domains/drmaterac.pl/public_html/app/config/routing.yml\" contains unsupported keys for \"app_modules\": \"pshowsso.admin.config\". Expected one of: \"resource\", \"type\", \"prefix\", \"path\", \"host\", \"schemes\", \"methods\", \"defaults\", \"requirements\", \"options\", \"condition\", \"controller\". at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/Routing/Loader/YamlFileLoader.php:206)"} []
[2025-09-02 11:57:09] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-09-02 11:57:28] request.INFO: Matched route "admin_module_configure_action". {"route":"admin_module_configure_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\Improve\\ModuleController::configureModuleAction","_legacy_controller":"AdminModules","module_name":"pdcsvpriceupdate","_route":"admin_module_configure_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/improve/modules/manage/action/configure/pdcsvpriceupdate?_token=htt9ja4RFldVUdO3aFF13y1mYrOF1DO75ySM-ZZIKzE","method":"GET"} []
[2025-09-02 11:57:28] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-09-02 11:57:28] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-09-02 11:57:28] request.CRITICAL: Uncaught PHP Exception InvalidArgumentException: "The routing file "/home/admin/domains/drmaterac.pl/public_html/app/config/routing.yml" contains unsupported keys for "app_modules": "pshowsso.admin.config". Expected one of: "resource", "type", "prefix", "path", "host", "schemes", "methods", "defaults", "requirements", "options", "condition", "controller"." at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/Routing/Loader/YamlFileLoader.php line 206 {"exception":"[object] (InvalidArgumentException(code: 0): The routing file \"/home/admin/domains/drmaterac.pl/public_html/app/config/routing.yml\" contains unsupported keys for \"app_modules\": \"pshowsso.admin.config\". Expected one of: \"resource\", \"type\", \"prefix\", \"path\", \"host\", \"schemes\", \"methods\", \"defaults\", \"requirements\", \"options\", \"condition\", \"controller\". at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/Routing/Loader/YamlFileLoader.php:206)"} []
[2025-09-02 11:57:28] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-09-02 12:56:02] request.INFO: Matched route "admin_module_configure_action". {"route":"admin_module_configure_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\Improve\\ModuleController::configureModuleAction","_legacy_controller":"AdminModules","module_name":"pdcsvpriceupdate","_route":"admin_module_configure_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/improve/modules/manage/action/configure/pdcsvpriceupdate?_token=htt9ja4RFldVUdO3aFF13y1mYrOF1DO75ySM-ZZIKzE","method":"GET"} []
[2025-09-02 12:56:02] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-09-02 12:56:02] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
[2025-09-02 12:56:02] request.CRITICAL: Uncaught PHP Exception InvalidArgumentException: "The routing file "/home/admin/domains/drmaterac.pl/public_html/app/config/routing.yml" contains unsupported keys for "app_modules": "pshowsso.admin.config". Expected one of: "resource", "type", "prefix", "path", "host", "schemes", "methods", "defaults", "requirements", "options", "condition", "controller"." at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/Routing/Loader/YamlFileLoader.php line 206 {"exception":"[object] (InvalidArgumentException(code: 0): The routing file \"/home/admin/domains/drmaterac.pl/public_html/app/config/routing.yml\" contains unsupported keys for \"app_modules\": \"pshowsso.admin.config\". Expected one of: \"resource\", \"type\", \"prefix\", \"path\", \"host\", \"schemes\", \"methods\", \"defaults\", \"requirements\", \"options\", \"condition\", \"controller\". at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/Routing/Loader/YamlFileLoader.php:206)"} []
[2025-09-02 12:56:02] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-09-02 13:39:36] request.INFO: Matched route "admin_module_configure_action". {"route":"admin_module_configure_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\Improve\\ModuleController::configureModuleAction","_legacy_controller":"AdminModules","module_name":"caraty","_route":"admin_module_configure_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/improve/modules/manage/action/configure/caraty?_token=D6xr0Y3aBvdGWjVDVVzfKVE55w9vI-cshe9iAJKIW1s","method":"GET"} []
[2025-09-02 13:39:36] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
[2025-09-02 13:39:36] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"biuro@project-pro.pl"} []
[2025-09-02 13:39:36] request.CRITICAL: Uncaught PHP Exception InvalidArgumentException: "The routing file "/home/admin/domains/drmaterac.pl/public_html/app/config/routing.yml" contains unsupported keys for "app_modules": "pshowsso.admin.config". Expected one of: "resource", "type", "prefix", "path", "host", "schemes", "methods", "defaults", "requirements", "options", "condition", "controller"." at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/Routing/Loader/YamlFileLoader.php line 206 {"exception":"[object] (InvalidArgumentException(code: 0): The routing file \"/home/admin/domains/drmaterac.pl/public_html/app/config/routing.yml\" contains unsupported keys for \"app_modules\": \"pshowsso.admin.config\". Expected one of: \"resource\", \"type\", \"prefix\", \"path\", \"host\", \"schemes\", \"methods\", \"defaults\", \"requirements\", \"options\", \"condition\", \"controller\". at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/Routing/Loader/YamlFileLoader.php:206)"} []
[2025-09-02 13:39:36] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
[2025-09-15 23:18:26] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\FatalErrorException: "Core Error: <br>The encoded file <b>/home/admin/domains/drmaterac.pl/public_html/modules/pshowsso/src/Module.php</b> requires a license file.<br>The license file <b>.license.txt</b> has expired." at Unknown line 0 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\FatalErrorException(code: 0): Core Error: <br>The encoded file <b>/home/admin/domains/drmaterac.pl/public_html/modules/pshowsso/src/Module.php</b> requires a license file.<br>The license file <b>.license.txt</b> has expired. at Unknown:0)"} []
[2025-09-15 23:18:33] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\FatalErrorException: "Core Error: <br>The encoded file <b>/home/admin/domains/drmaterac.pl/public_html/modules/pshowsso/src/Module.php</b> requires a license file.<br>The license file <b>.license.txt</b> has expired." at Unknown line 0 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\FatalErrorException(code: 0): Core Error: <br>The encoded file <b>/home/admin/domains/drmaterac.pl/public_html/modules/pshowsso/src/Module.php</b> requires a license file.<br>The license file <b>.license.txt</b> has expired. at Unknown:0)"} []
[2025-09-15 23:18:40] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\FatalErrorException: "Core Error: <br>The encoded file <b>/home/admin/domains/drmaterac.pl/public_html/modules/pshowsso/src/Module.php</b> requires a license file.<br>The license file <b>.license.txt</b> has expired." at Unknown line 0 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\FatalErrorException(code: 0): Core Error: <br>The encoded file <b>/home/admin/domains/drmaterac.pl/public_html/modules/pshowsso/src/Module.php</b> requires a license file.<br>The license file <b>.license.txt</b> has expired. at Unknown:0)"} []

View File

@@ -1,357 +0,0 @@
*ERROR* v1.7.6.0 2025/03/21 - 12:24:52: Current version: 1.7.5.2. Version to install: 1.7.5.1.
*INFO* v1.7.6.0 2025/03/21 - 12:33:26: [OK] SQL 1.7.6.0 : SET SESSION sql_mode = ''
*INFO* v1.7.6.0 2025/03/21 - 12:33:26: [OK] SQL 1.7.6.0 : SET NAMES 'utf8'
*INFO* v1.7.6.0 2025/03/21 - 12:33:26: SQL 1.7.6.0
1060 in ALTER TABLE `materac_currency` ADD `numeric_iso_code` varchar(3) NOT NULL DEFAULT '0' AFTER `iso_code`: Duplicate column name 'numeric_iso_code'
*INFO* v1.7.6.0 2025/03/21 - 12:33:26: SQL 1.7.6.0
1060 in ALTER TABLE `materac_currency` ADD `precision` int(2) NOT NULL DEFAULT 6 AFTER `numeric_iso_code`: Duplicate column name 'precision'
*INFO* v1.7.6.0 2025/03/21 - 12:33:26: SQL 1.7.6.0
1061 in ALTER TABLE `materac_currency` ADD KEY `currency_iso_code` (`iso_code`): Duplicate key name 'currency_iso_code'
*INFO* v1.7.6.0 2025/03/21 - 12:33:26: SQL 1.7.6.0
1050 in /* Localized currency information */
CREATE TABLE `materac_currency_lang` (
`id_currency` int(10) unsigned NOT NULL,
`id_lang` int(10) unsigned NOT NULL,
`name` varchar(255) NOT NULL,
`symbol` varchar(255) NOT NULL,
PRIMARY KEY (`id_currency`,`id_lang`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8: Table 'materac_currency_lang' already exists
*INFO* v1.7.6.0 2025/03/21 - 12:33:26: [OK] PHP 1.7.6.0 : /* PHP:ps_1760_copy_data_from_currency_to_currency_lang(); */
*INFO* v1.7.6.0 2025/03/21 - 12:33:26: [OK] SQL 1.7.6.0 : /* Module Manager tab should be the first tab in Modules Tab */
UPDATE `materac_tab` SET `position` = 0 WHERE `class_name` = 'AdminModulesSf' AND `position`= 1
*INFO* v1.7.6.0 2025/03/21 - 12:33:26: [OK] SQL 1.7.6.0 : UPDATE `materac_tab` SET `position` = 1 WHERE `class_name` = 'AdminParentModulesCatalog' AND `position`= 0
*INFO* v1.7.6.0 2025/03/21 - 12:33:27: [OK] SQL 1.7.6.0 : /* Fix Problem with missing lang entries in Configuration */
INSERT INTO `materac_configuration_lang` (`id_configuration`, `id_lang`, `value`)
SELECT `id_configuration`, l.`id_lang`, `value`
FROM `materac_configuration` c
JOIN `materac_lang_shop` l on l.`id_shop` = COALESCE(c.`id_shop`, 1)
WHERE `name` IN (
'PS_DELIVERY_PREFIX',
'PS_INVOICE_PREFIX',
'PS_INVOICE_LEGAL_FREE_TEXT',
'PS_INVOICE_FREE_TEXT',
'PS_RETURN_PREFIX',
'PS_SEARCH_BLACKLIST',
'PS_CUSTOMER_SERVICE_SIGNATURE',
'PS_MAINTENANCE_TEXT',
'PS_LABEL_IN_STOCK_PRODUCTS',
'PS_LABEL_OOS_PRODUCTS_BOA',
'PS_LABEL_OOS_PRODUCTS_BOD'
)
AND NOT EXISTS (SELECT 1 FROM `materac_configuration_lang` WHERE `id_configuration` = c.`id_configuration`)
*INFO* v1.7.6.0 2025/03/21 - 12:33:27: [OK] PHP 1.7.6.0 : /* PHP:ps_1760_update_configuration(); */
*INFO* v1.7.6.0 2025/03/21 - 12:33:27: [OK] PHP 1.7.6.0 : /* PHP:ps_1760_update_tabs(); */
*INFO* v1.7.6.0 2025/03/21 - 12:33:27: [OK] SQL 1.7.6.0 : /* Insert new hooks */
INSERT IGNORE INTO `materac_hook` (`id_hook`, `name`, `title`, `description`, `position`) VALUES
(NULL, 'actionListMailThemes', 'List the available email themes and layouts', 'This hook allows to add/remove available email themes (ThemeInterface) and/or to add/remove their layouts (LayoutInterface)', '1'),
(NULL, 'actionGetMailThemeFolder', 'Define the folder of an email theme', 'This hook allows to change the folder of an email theme (useful if you theme is in a module for example)', '1'),
(NULL, 'actionBuildMailLayoutVariables', 'Build the variables used in email layout rendering', 'This hook allows to change the variables used when an email layout is rendered', '1'),
(NULL, 'actionGetMailLayoutTransformations', 'Define the transformation to apply on layout', 'This hook allows to add/remove TransformationInterface used to generate an email layout', '1'),
(NULL, 'actionSqlRequestFormBuilderModifier', 'Modify sql request identifiable object form', 'This hook allows to modify sql request identifiable object forms content by modifying form builder data or FormBuilder itself', '1 '),
(NULL, 'actionCustomerFormBuilderModifier', 'Modify customer identifiable object form', 'This hook allows to modify customer identifiable object forms content by modifying form builder data or FormBuilder itself', '1 '),
(NULL, 'actionLanguageFormBuilderModifier', 'Modify language identifiable object form', 'This hook allows to modify language identifiable object forms content by modifying form builder data or FormBuilder itself', '1 '),
(NULL, 'actionCurrencyFormBuilderModifier', 'Modify currency identifiable object form', 'This hook allows to modify currency identifiable object forms content by modifying form builder data or FormBuilder itself', '1 '),
(NULL, 'actionWebserviceKeyFormBuilderModifier', 'Modify webservice key identifiable object form', 'This hook allows to modify webservice key identifiable object forms content by modifying form builder data or FormBuilder itself', '1 '),
(NULL, 'actionMetaFormBuilderModifier', 'Modify meta identifiable object form', 'This hook allows to modify meta identifiable object forms content by modifying form builder data or FormBuilder itself', '1 '),
(NULL, 'actionCategoryFormBuilderModifier', 'Modify category identifiable object form', 'This hook allows to modify category identifiable object forms content by modifying form builder data or FormBuilder itself', '1 '),
(NULL, 'actionRootCategoryFormBuilderModifier', 'Modify root category identifiable object form', 'This hook allows to modify root category identifiable object forms content by modifying form builder data or FormBuilder itself', '1 '),
(NULL, 'actionContactFormBuilderModifier', 'Modify contact identifiable object form', 'This hook allows to modify contact identifiable object forms content by modifying form builder data or FormBuilder itself', '1 '),
(NULL, 'actionCmsPageCategoryFormBuilderModifier', 'Modify cms page category identifiable object form', 'This hook allows to modify cms page category identifiable object forms content by modifying form builder data or FormBuilder itself', '1 '),
(NULL, 'actionTaxFormBuilderModifier', 'Modify tax identifiable object form', 'This hook allows to modify tax identifiable object forms content by modifying form builder data or FormBuilder itself', '1 '),
(NULL, 'actionManufacturerFormBuilderModifier', 'Modify manufacturer identifiable object form', 'This hook allows to modify manufacturer identifiable object forms content by modifying form builder data or FormBuilder itself', '1 '),
(NULL, 'actionEmployeeFormBuilderModifier', 'Modify employee identifiable object form', 'This hook allows to modify employee identifiable object forms content by modifying form builder data or FormBuilder itself', '1 '),
(NULL, 'actionProfileFormBuilderModifier', 'Modify profile identifiable object form', 'This hook allows to modify profile identifiable object forms content by modifying form builder data or FormBuilder itself', '1 '),
(NULL, 'actionCmsPageFormBuilderModifier', 'Modify cms page identifiable object form', 'This hook allows to modify cms page identifiable object forms content by modifying form builder data or FormBuilder itself', '1 '),
(NULL, 'actionManufacturerAddressFormBuilderModifier', 'Modify manufacturer address identifiable object form', 'This hook allows to modify manufacturer address identifiable object forms content by modifying form builder data or FormBuilder itself', '1 '),
(NULL, 'actionBeforeUpdateSqlRequestFormHandler', 'Modify sql request identifiable object data before updating it', 'This hook allows to modify sql request identifiable object forms data before it was updated', '1 '),
(NULL, 'actionBeforeUpdateCustomerFormHandler', 'Modify customer identifiable object data before updating it', 'This hook allows to modify customer identifiable object forms data before it was updated', '1 '),
(NULL, 'actionBeforeUpdateLanguageFormHandler', 'Modify language identifiable object data before updating it', 'This hook allows to modify language identifiable object forms data before it was updated', '1 '),
(NULL, 'actionBeforeUpdateCurrencyFormHandler', 'Modify currency identifiable object data before updating it', 'This hook allows to modify currency identifiable object forms data before it was updated', '1 '),
(NULL, 'actionBeforeUpdateWebserviceKeyFormHandler', 'Modify webservice key identifiable object data before updating it', 'This hook allows to modify webservice key identifiable object forms data before it was updated', '1 '),
(NULL, 'actionBeforeUpdateMetaFormHandler', 'Modify meta identifiable object data before updating it', 'This hook allows to modify meta identifiable object forms data before it was updated', '1 '),
(NULL, 'actionBeforeUpdateCategoryFormHandler', 'Modify category identifiable object data before updating it', 'This hook allows to modify category identifiable object forms data before it was updated', '1 '),
(NULL, 'actionBeforeUpdateRootCategoryFormHandler', 'Modify root category identifiable object data before updating it', 'This hook allows to modify root category identifiable object forms data before it was updated', '1 '),
(NULL, 'actionBeforeUpdateContactFormHandler', 'Modify contact identifiable object data before updating it', 'This hook allows to modify contact identifiable object forms data before it was updated', '1 '),
(NULL, 'actionBeforeUpdateCmsPageCategoryFormHandler', 'Modify cms page category identifiable object data before updating it', 'This hook allows to modify cms page category identifiable object forms data before it was updated', '1 '),
(NULL, 'actionBeforeUpdateTaxFormHandler', 'Modify tax identifiable object data before updating it', 'This hook allows to modify tax identifiable object forms data before it was updated', '1 '),
(NULL, 'actionBeforeUpdateManufacturerFormHandler', 'Modify manufacturer identifiable object data before updating it', 'This hook allows to modify manufacturer identifiable object forms data before it was updated', '1 '),
(NULL, 'actionBeforeUpdateEmployeeFormHandler', 'Modify employee identifiable object data before updating it', 'This hook allows to modify employee identifiable object forms data before it was updated', '1 '),
(NULL, 'actionBeforeUpdateProfileFormHandler', 'Modify profile identifiable object data before updating it', 'This hook allows to modify profile identifiable object forms data before it was updated', '1 '),
(NULL, 'actionBeforeUpdateCmsPageFormHandler', 'Modify cms page identifiable object data before updating it', 'This hook allows to modify cms page identifiable object forms data before it was updated', '1 '),
(NULL, 'actionBeforeUpdateManufacturerAddressFormHandler', 'Modify manufacturer address identifiable object data before updating it', 'This hook allows to modify manufacturer address identifiable object forms data before it was updated', '1 '),
(NULL, 'actionAfterUpdateSqlRequestFormHandler', 'Modify sql request identifiable object data after updating it', 'This hook allows to modify sql request identifiable object forms data after it was updated', '1 '),
(NULL, 'actionAfterUpdateCustomerFormHandler', 'Modify customer identifiable object data after updating it', 'This hook allows to modify customer identifiable object forms data after it was updated', '1 '),
(NULL, 'actionAfterUpdateLanguageFormHandler', 'Modify language identifiable object data after updating it', 'This hook allows to modify language identifiable object forms data after it was updated', '1 '),
(NULL, 'actionAfterUpdateCurrencyFormHandler', 'Modify currency identifiable object data after updating it', 'This hook allows to modify currency identifiable object forms data after it was updated', '1 '),
(NULL, 'actionAfterUpdateWebserviceKeyFormHandler', 'Modify webservice key identifiable object data after updating it', 'This hook allows to modify webservice key identifiable object forms data after it was updated', '1 '),
(NULL, 'actionAfterUpdateMetaFormHandler', 'Modify meta identifiable object data after updating it', 'This hook allows to modify meta identifiable object forms data after it was updated', '1 '),
(NULL, 'actionAfterUpdateCategoryFormHandler', 'Modify category identifiable object data after updating it', 'This hook allows to modify category identifiable object forms data after it was updated', '1 '),
(NULL, 'actionAfterUpdateRootCategoryFormHandler', 'Modify root category identifiable object data after updating it', 'This hook allows to modify root category identifiable object forms data after it was updated', '1 '),
(NULL, 'actionAfterUpdateContactFormHandler', 'Modify contact identifiable object data after updating it', 'This hook allows to modify contact identifiable object forms data after it was updated', '1 '),
(NULL, 'actionAfterUpdateCmsPageCategoryFormHandler', 'Modify cms page category identifiable object data after updating it', 'This hook allows to modify cms page category identifiable object forms data after it was updated', '1 '),
(NULL, 'actionAfterUpdateTaxFormHandler', 'Modify tax identifiable object data after updating it', 'This hook allows to modify tax identifiable object forms data after it was updated', '1 '),
(NULL, 'actionAfterUpdateManufacturerFormHandler', 'Modify manufacturer identifiable object data after updating it', 'This hook allows to modify manufacturer identifiable object forms data after it was updated', '1 '),
(NULL, 'actionAfterUpdateEmployeeFormHandler', 'Modify employee identifiable object data after updating it', 'This hook allows to modify employee identifiable object forms data after it was updated', '1 '),
(NULL, 'actionAfterUpdateProfileFormHandler', 'Modify profile identifiable object data after updating it', 'This hook allows to modify profile identifiable object forms data after it was updated', '1 '),
(NULL, 'actionAfterUpdateCmsPageFormHandler', 'Modify cms page identifiable object data after updating it', 'This hook allows to modify cms page identifiable object forms data after it was updated', '1 '),
(NULL, 'actionAfterUpdateManufacturerAddressFormHandler', 'Modify manufacturer address identifiable object data after updating it', 'This hook allows to modify manufacturer address identifiable object forms data after it was updated', '1 '),
(NULL, 'actionBeforeCreateSqlRequestFormHandler', 'Modify sql request identifiable object data before creating it', 'This hook allows to modify sql request identifiable object forms data before it was created', '1 '),
(NULL, 'actionBeforeCreateCustomerFormHandler', 'Modify customer identifiable object data before creating it', 'This hook allows to modify customer identifiable object forms data before it was created', '1 '),
(NULL, 'actionBeforeCreateLanguageFormHandler', 'Modify language identifiable object data before creating it', 'This hook allows to modify language identifiable object forms data before it was created', '1 '),
(NULL, 'actionBeforeCreateCurrencyFormHandler', 'Modify currency identifiable object data before creating it', 'This hook allows to modify currency identifiable object forms data before it was created', '1 '),
(NULL, 'actionBeforeCreateWebserviceKeyFormHandler', 'Modify webservice key identifiable object data before creating it', 'This hook allows to modify webservice key identifiable object forms data before it was created', '1 '),
(NULL, 'actionBeforeCreateMetaFormHandler', 'Modify meta identifiable object data before creating it', 'This hook allows to modify meta identifiable object forms data before it was created', '1 '),
(NULL, 'actionBeforeCreateCategoryFormHandler', 'Modify category identifiable object data before creating it', 'This hook allows to modify category identifiable object forms data before it was created', '1 '),
(NULL, 'actionBeforeCreateRootCategoryFormHandler', 'Modify root category identifiable object data before creating it', 'This hook allows to modify root category identifiable object forms data before it was created', '1 '),
(NULL, 'actionBeforeCreateContactFormHandler', 'Modify contact identifiable object data before creating it', 'This hook allows to modify contact identifiable object forms data before it was created', '1 '),
(NULL, 'actionBeforeCreateCmsPageCategoryFormHandler', 'Modify cms page category identifiable object data before creating it', 'This hook allows to modify cms page category identifiable object forms data before it was created', '1 '),
(NULL, 'actionBeforeCreateTaxFormHandler', 'Modify tax identifiable object data before creating it', 'This hook allows to modify tax identifiable object forms data before it was created', '1 '),
(NULL, 'actionBeforeCreateManufacturerFormHandler', 'Modify manufacturer identifiable object data before creating it', 'This hook allows to modify manufacturer identifiable object forms data before it was created', '1 '),
(NULL, 'actionBeforeCreateEmployeeFormHandler', 'Modify employee identifiable object data before creating it', 'This hook allows to modify employee identifiable object forms data before it was created', '1 '),
(NULL, 'actionBeforeCreateProfileFormHandler', 'Modify profile identifiable object data before creating it', 'This hook allows to modify profile identifiable object forms data before it was created', '1 '),
(NULL, 'actionBeforeCreateCmsPageFormHandler', 'Modify cms page identifiable object data before creating it', 'This hook allows to modify cms page identifiable object forms data before it was created', '1 '),
(NULL, 'actionBeforeCreateManufacturerAddressFormHandler', 'Modify manufacturer address identifiable object data before creating it', 'This hook allows to modify manufacturer address identifiable object forms data before it was created', '1 '),
(NULL, 'actionAfterCreateSqlRequestFormHandler', 'Modify sql request identifiable object data after creating it', 'This hook allows to modify sql request identifiable object forms data after it was created', '1 '),
(NULL, 'actionAfterCreateCustomerFormHandler', 'Modify customer identifiable object data after creating it', 'This hook allows to modify customer identifiable object forms data after it was created', '1 '),
(NULL, 'actionAfterCreateLanguageFormHandler', 'Modify language identifiable object data after creating it', 'This hook allows to modify language identifiable object forms data after it was created', '1 '),
(NULL, 'actionAfterCreateCurrencyFormHandler', 'Modify currency identifiable object data after creating it', 'This hook allows to modify currency identifiable object forms data after it was created', '1 '),
(NULL, 'actionAfterCreateWebserviceKeyFormHandler', 'Modify webservice key identifiable object data after creating it', 'This hook allows to modify webservice key identifiable object forms data after it was created', '1 '),
(NULL, 'actionAfterCreateMetaFormHandler', 'Modify meta identifiable object data after creating it', 'This hook allows to modify meta identifiable object forms data after it was created', '1 '),
(NULL, 'actionAfterCreateCategoryFormHandler', 'Modify category identifiable object data after creating it', 'This hook allows to modify category identifiable object forms data after it was created', '1 '),
(NULL, 'actionAfterCreateRootCategoryFormHandler', 'Modify root category identifiable object data after creating it', 'This hook allows to modify root category identifiable object forms data after it was created', '1 '),
(NULL, 'actionAfterCreateContactFormHandler', 'Modify contact identifiable object data after creating it', 'This hook allows to modify contact identifiable object forms data after it was created', '1 '),
(NULL, 'actionAfterCreateCmsPageCategoryFormHandler', 'Modify cms page category identifiable object data after creating it', 'This hook allows to modify cms page category identifiable object forms data after it was created', '1 '),
(NULL, 'actionAfterCreateTaxFormHandler', 'Modify tax identifiable object data after creating it', 'This hook allows to modify tax identifiable object forms data after it was created', '1 '),
(NULL, 'actionAfterCreateManufacturerFormHandler', 'Modify manufacturer identifiable object data after creating it', 'This hook allows to modify manufacturer identifiable object forms data after it was created', '1 '),
(NULL, 'actionAfterCreateEmployeeFormHandler', 'Modify employee identifiable object data after creating it', 'This hook allows to modify employee identifiable object forms data after it was created', '1 '),
(NULL, 'actionAfterCreateProfileFormHandler', 'Modify profile identifiable object data after creating it', 'This hook allows to modify profile identifiable object forms data after it was created', '1 '),
(NULL, 'actionAfterCreateCmsPageFormHandler', 'Modify cms page identifiable object data after creating it', 'This hook allows to modify cms page identifiable object forms data after it was created', '1 '),
(NULL, 'actionAfterCreateManufacturerAddressFormHandler', 'Modify manufacturer address identifiable object data after creating it', 'This hook allows to modify manufacturer address identifiable object forms data after it was created', '1 '),
(NULL, 'actionShippingPreferencesPageForm', 'Modify shipping preferences page options form content', 'This hook allows to modify shipping preferences page options form FormBuilder', '1 '),
(NULL, 'actionOrdersInvoicesByDateForm', 'Modify orders invoices by date options form content', 'This hook allows to modify orders invoices by date options form FormBuilder', '1 '),
(NULL, 'actionOrdersInvoicesByStatusForm', 'Modify orders invoices by status options form content', 'This hook allows to modify orders invoices by status options form FormBuilder', '1 '),
(NULL, 'actionOrdersInvoicesOptionsForm', 'Modify orders invoices options options form content', 'This hook allows to modify orders invoices options options form FormBuilder', '1 '),
(NULL, 'actionCustomerPreferencesPageForm', 'Modify customer preferences page options form content', 'This hook allows to modify customer preferences page options form FormBuilder', '1 '),
(NULL, 'actionOrderPreferencesPageForm', 'Modify order preferences page options form content', 'This hook allows to modify order preferences page options form FormBuilder', '1 '),
(NULL, 'actionProductPreferencesPageForm', 'Modify product preferences page options form content', 'This hook allows to modify product preferences page options form FormBuilder', '1 '),
(NULL, 'actionGeneralPageForm', 'Modify general page options form content', 'This hook allows to modify general page options form FormBuilder', '1 '),
(NULL, 'actionLogsPageForm', 'Modify logs page options form content', 'This hook allows to modify logs page options form FormBuilder', '1 '),
(NULL, 'actionOrderDeliverySlipOptionsForm', 'Modify order delivery slip options options form content', 'This hook allows to modify order delivery slip options options form FormBuilder', '1 '),
(NULL, 'actionOrderDeliverySlipPdfForm', 'Modify order delivery slip pdf options form content', 'This hook allows to modify order delivery slip pdf options form FormBuilder', '1 '),
(NULL, 'actionGeolocationPageForm', 'Modify geolocation page options form content', 'This hook allows to modify geolocation page options form FormBuilder', '1 '),
(NULL, 'actionLocalizationPageForm', 'Modify localization page options form content', 'This hook allows to modify localization page options form FormBuilder', '1 '),
(NULL, 'actionPaymentPreferencesForm', 'Modify payment preferences options form content', 'This hook allows to modify payment preferences options form FormBuilder', '1 '),
(NULL, 'actionEmailConfigurationForm', 'Modify email configuration options form content', 'This hook allows to modify email configuration options form FormBuilder', '1 '),
(NULL, 'actionRequestSqlForm', 'Modify request sql options form content', 'This hook allows to modify request sql options form FormBuilder', '1 '),
(NULL, 'actionBackupForm', 'Modify backup options form content', 'This hook allows to modify backup options form FormBuilder', '1 '),
(NULL, 'actionWebservicePageForm', 'Modify webservice page options form content', 'This hook allows to modify webservice page options form FormBuilder', '1 '),
(NULL, 'actionMetaPageForm', 'Modify meta page options form content', 'This hook allows to modify meta page options form FormBuilder', '1 '),
(NULL, 'actionEmployeeForm', 'Modify employee options form content', 'This hook allows to modify employee options form FormBuilder', '1 '),
(NULL, 'actionCurrencyForm', 'Modify currency options form content', 'This hook allows to modify currency options form FormBuilder', '1 '),
(NULL, 'actionShopLogoForm', 'Modify shop logo options form content', 'This hook allows to modify shop logo options form FormBuilder', '1 '),
(NULL, 'actionTaxForm', 'Modify tax options form content', 'This hook allows to modify tax options form FormBuilder', '1 '),
(NULL, 'actionMailThemeForm', 'Modify mail theme options form content', 'This hook allows to modify mail theme options form FormBuilder', '1 '),
(NULL, 'actionPerformancePageSave', 'Modify performance page options form saved data', 'This hook allows to modify data of performance page options form after it was saved', '1 '),
(NULL, 'actionMaintenancePageSave', 'Modify maintenance page options form saved data', 'This hook allows to modify data of maintenance page options form after it was saved', '1 '),
(NULL, 'actionAdministrationPageSave', 'Modify administration page options form saved data', 'This hook allows to modify data of administration page options form after it was saved', '1 '),
(NULL, 'actionShippingPreferencesPageSave', 'Modify shipping preferences page options form saved data', 'This hook allows to modify data of shipping preferences page options form after it was saved', '1 '),
(NULL, 'actionOrdersInvoicesByDateSave', 'Modify orders invoices by date options form saved data', 'This hook allows to modify data of orders invoices by date options form after it was saved', '1 '),
(NULL, 'actionOrdersInvoicesByStatusSave', 'Modify orders invoices by status options form saved data', 'This hook allows to modify data of orders invoices by status options form after it was saved', '1 '),
(NULL, 'actionOrdersInvoicesOptionsSave', 'Modify orders invoices options options form saved data', 'This hook allows to modify data of orders invoices options options form after it was saved', '1 '),
(NULL, 'actionCustomerPreferencesPageSave', 'Modify customer preferences page options form saved data', 'This hook allows to modify data of customer preferences page options form after it was saved', '1 '),
(NULL, 'actionOrderPreferencesPageSave', 'Modify order preferences page options form saved data', 'This hook allows to modify data of order preferences page options form after it was saved', '1 '),
(NULL, 'actionProductPreferencesPageSave', 'Modify product preferences page options form saved data', 'This hook allows to modify data of product preferences page options form after it was saved', '1 '),
(NULL, 'actionGeneralPageSave', 'Modify general page options form saved data', 'This hook allows to modify data of general page options form after it was saved', '1 '),
(NULL, 'actionLogsPageSave', 'Modify logs page options form saved data', 'This hook allows to modify data of logs page options form after it was saved', '1 '),
(NULL, 'actionOrderDeliverySlipOptionsSave', 'Modify order delivery slip options options form saved data', 'This hook allows to modify data of order delivery slip options options form after it was saved', '1 '),
(NULL, 'actionOrderDeliverySlipPdfSave', 'Modify order delivery slip pdf options form saved data', 'This hook allows to modify data of order delivery slip pdf options form after it was saved', '1 '),
(NULL, 'actionGeolocationPageSave', 'Modify geolocation page options form saved data', 'This hook allows to modify data of geolocation page options form after it was saved', '1 '),
(NULL, 'actionLocalizationPageSave', 'Modify localization page options form saved data', 'This hook allows to modify data of localization page options form after it was saved', '1 '),
(NULL, 'actionPaymentPreferencesSave', 'Modify payment preferences options form saved data', 'This hook allows to modify data of payment preferences options form after it was saved', '1 '),
(NULL, 'actionEmailConfigurationSave', 'Modify email configuration options form saved data', 'This hook allows to modify data of email configuration options form after it was saved', '1 '),
(NULL, 'actionRequestSqlSave', 'Modify request sql options form saved data', 'This hook allows to modify data of request sql options form after it was saved', '1 '),
(NULL, 'actionBackupSave', 'Modify backup options form saved data', 'This hook allows to modify data of backup options form after it was saved', '1 '),
(NULL, 'actionWebservicePageSave', 'Modify webservice page options form saved data', 'This hook allows to modify data of webservice page options form after it was saved', '1 '),
(NULL, 'actionMetaPageSave', 'Modify meta page options form saved data', 'This hook allows to modify data of meta page options form after it was saved', '1 '),
(NULL, 'actionEmployeeSave', 'Modify employee options form saved data', 'This hook allows to modify data of employee options form after it was saved', '1 '),
(NULL, 'actionCurrencySave', 'Modify currency options form saved data', 'This hook allows to modify data of currency options form after it was saved', '1 '),
(NULL, 'actionShopLogoSave', 'Modify shop logo options form saved data', 'This hook allows to modify data of shop logo options form after it was saved', '1 '),
(NULL, 'actionTaxSave', 'Modify tax options form saved data', 'This hook allows to modify data of tax options form after it was saved', '1 '),
(NULL, 'actionMailThemeSave', 'Modify mail theme options form saved data', 'This hook allows to modify data of mail theme options form after it was saved', '1 '),
(NULL, 'actionCategoryGridDefinitionModifier', 'Modify category grid definition', 'This hook allows to alter category grid columns, actions and filters', '1 '),
(NULL, 'actionEmployeeGridDefinitionModifier', 'Modify employee grid definition', 'This hook allows to alter employee grid columns, actions and filters', '1 '),
(NULL, 'actionContactGridDefinitionModifier', 'Modify contact grid definition', 'This hook allows to alter contact grid columns, actions and filters', '1 '),
(NULL, 'actionCustomerGridDefinitionModifier', 'Modify customer grid definition', 'This hook allows to alter customer grid columns, actions and filters', '1 '),
(NULL, 'actionLanguageGridDefinitionModifier', 'Modify language grid definition', 'This hook allows to alter language grid columns, actions and filters', '1 '),
(NULL, 'actionCurrencyGridDefinitionModifier', 'Modify currency grid definition', 'This hook allows to alter currency grid columns, actions and filters', '1 '),
(NULL, 'actionSupplierGridDefinitionModifier', 'Modify supplier grid definition', 'This hook allows to alter supplier grid columns, actions and filters', '1 '),
(NULL, 'actionProfileGridDefinitionModifier', 'Modify profile grid definition', 'This hook allows to alter profile grid columns, actions and filters', '1 '),
(NULL, 'actionCmsPageCategoryGridDefinitionModifier', 'Modify cms page category grid definition', 'This hook allows to alter cms page category grid columns, actions and filters', '1 '),
(NULL, 'actionTaxGridDefinitionModifier', 'Modify tax grid definition', 'This hook allows to alter tax grid columns, actions and filters', '1 '),
(NULL, 'actionManufacturerGridDefinitionModifier', 'Modify manufacturer grid definition', 'This hook allows to alter manufacturer grid columns, actions and filters', '1 '),
(NULL, 'actionManufacturerAddressGridDefinitionModifier', 'Modify manufacturer address grid definition', 'This hook allows to alter manufacturer address grid columns, actions and filters', '1 '),
(NULL, 'actionCmsPageGridDefinitionModifier', 'Modify cms page grid definition', 'This hook allows to alter cms page grid columns, actions and filters', '1 '),
(NULL, 'actionBackupGridQueryBuilderModifier', 'Modify backup grid query builder', 'This hook allows to alter Doctrine query builder for backup grid', '1 '),
(NULL, 'actionCategoryGridQueryBuilderModifier', 'Modify category grid query builder', 'This hook allows to alter Doctrine query builder for category grid', '1 '),
(NULL, 'actionEmployeeGridQueryBuilderModifier', 'Modify employee grid query builder', 'This hook allows to alter Doctrine query builder for employee grid', '1 '),
(NULL, 'actionContactGridQueryBuilderModifier', 'Modify contact grid query builder', 'This hook allows to alter Doctrine query builder for contact grid', '1 '),
(NULL, 'actionCustomerGridQueryBuilderModifier', 'Modify customer grid query builder', 'This hook allows to alter Doctrine query builder for customer grid', '1 '),
(NULL, 'actionLanguageGridQueryBuilderModifier', 'Modify language grid query builder', 'This hook allows to alter Doctrine query builder for language grid', '1 '),
(NULL, 'actionCurrencyGridQueryBuilderModifier', 'Modify currency grid query builder', 'This hook allows to alter Doctrine query builder for currency grid', '1 '),
(NULL, 'actionSupplierGridQueryBuilderModifier', 'Modify supplier grid query builder', 'This hook allows to alter Doctrine query builder for supplier grid', '1 '),
(NULL, 'actionProfileGridQueryBuilderModifier', 'Modify profile grid query builder', 'This hook allows to alter Doctrine query builder for profile grid', '1 '),
(NULL, 'actionCmsPageCategoryGridQueryBuilderModifier', 'Modify cms page category grid query builder', 'This hook allows to alter Doctrine query builder for cms page category grid', '1 '),
(NULL, 'actionTaxGridQueryBuilderModifier', 'Modify tax grid query builder', 'This hook allows to alter Doctrine query builder for tax grid', '1 '),
(NULL, 'actionManufacturerGridQueryBuilderModifier', 'Modify manufacturer grid query builder', 'This hook allows to alter Doctrine query builder for manufacturer grid', '1 '),
(NULL, 'actionManufacturerAddressGridQueryBuilderModifier', 'Modify manufacturer address grid query builder', 'This hook allows to alter Doctrine query builder for manufacturer address grid', '1 '),
(NULL, 'actionCmsPageGridQueryBuilderModifier', 'Modify cms page grid query builder', 'This hook allows to alter Doctrine query builder for cms page grid', '1 '),
(NULL, 'actionLogsGridDataModifier', 'Modify logs grid data', 'This hook allows to modify logs grid data', '1 '),
(NULL, 'actionEmailLogsGridDataModifier', 'Modify email logs grid data', 'This hook allows to modify email logs grid data', '1 '),
(NULL, 'actionSqlRequestGridDataModifier', 'Modify sql request grid data', 'This hook allows to modify sql request grid data', '1 '),
(NULL, 'actionBackupGridDataModifier', 'Modify backup grid data', 'This hook allows to modify backup grid data', '1 '),
(NULL, 'actionWebserviceKeyGridDataModifier', 'Modify webservice key grid data', 'This hook allows to modify webservice key grid data', '1 '),
(NULL, 'actionMetaGridDataModifier', 'Modify meta grid data', 'This hook allows to modify meta grid data', '1 '),
(NULL, 'actionCategoryGridDataModifier', 'Modify category grid data', 'This hook allows to modify category grid data', '1 '),
(NULL, 'actionEmployeeGridDataModifier', 'Modify employee grid data', 'This hook allows to modify employee grid data', '1 '),
(NULL, 'actionContactGridDataModifier', 'Modify contact grid data', 'This hook allows to modify contact grid data', '1 '),
(NULL, 'actionCustomerGridDataModifier', 'Modify customer grid data', 'This hook allows to modify customer grid data', '1 '),
(NULL, 'actionLanguageGridDataModifier', 'Modify language grid data', 'This hook allows to modify language grid data', '1 '),
(NULL, 'actionCurrencyGridDataModifier', 'Modify currency grid data', 'This hook allows to modify currency grid data', '1 '),
(NULL, 'actionSupplierGridDataModifier', 'Modify supplier grid data', 'This hook allows to modify supplier grid data', '1 '),
(NULL, 'actionProfileGridDataModifier', 'Modify profile grid data', 'This hook allows to modify profile grid data', '1 '),
(NULL, 'actionCmsPageCategoryGridDataModifier', 'Modify cms page category grid data', 'This hook allows to modify cms page category grid data', '1 '),
(NULL, 'actionTaxGridDataModifier', 'Modify tax grid data', 'This hook allows to modify tax grid data', '1 '),
(NULL, 'actionManufacturerGridDataModifier', 'Modify manufacturer grid data', 'This hook allows to modify manufacturer grid data', '1 '),
(NULL, 'actionManufacturerAddressGridDataModifier', 'Modify manufacturer address grid data', 'This hook allows to modify manufacturer address grid data', '1 '),
(NULL, 'actionCmsPageGridDataModifier', 'Modify cms page grid data', 'This hook allows to modify cms page grid data', '1 '),
(NULL, 'actionCategoryGridFilterFormModifier', 'Modify category grid filters', 'This hook allows to modify filters for category grid', '1 '),
(NULL, 'actionEmployeeGridFilterFormModifier', 'Modify employee grid filters', 'This hook allows to modify filters for employee grid', '1 '),
(NULL, 'actionContactGridFilterFormModifier', 'Modify contact grid filters', 'This hook allows to modify filters for contact grid', '1 '),
(NULL, 'actionCustomerGridFilterFormModifier', 'Modify customer grid filters', 'This hook allows to modify filters for customer grid', '1 '),
(NULL, 'actionLanguageGridFilterFormModifier', 'Modify language grid filters', 'This hook allows to modify filters for language grid', '1 '),
(NULL, 'actionCurrencyGridFilterFormModifier', 'Modify currency grid filters', 'This hook allows to modify filters for currency grid', '1 '),
(NULL, 'actionSupplierGridFilterFormModifier', 'Modify supplier grid filters', 'This hook allows to modify filters for supplier grid', '1 '),
(NULL, 'actionProfileGridFilterFormModifier', 'Modify profile grid filters', 'This hook allows to modify filters for profile grid', '1 '),
(NULL, 'actionCmsPageCategoryGridFilterFormModifier', 'Modify cms page category grid filters', 'This hook allows to modify filters for cms page category grid', '1 '),
(NULL, 'actionTaxGridFilterFormModifier', 'Modify tax grid filters', 'This hook allows to modify filters for tax grid', '1 '),
(NULL, 'actionManufacturerGridFilterFormModifier', 'Modify manufacturer grid filters', 'This hook allows to modify filters for manufacturer grid', '1 '),
(NULL, 'actionManufacturerAddressGridFilterFormModifier', 'Modify manufacturer address grid filters', 'This hook allows to modify filters for manufacturer address grid', '1 '),
(NULL, 'actionCmsPageGridFilterFormModifier', 'Modify cms page grid filters', 'This hook allows to modify filters for cms page grid', '1 '),
(NULL, 'actionCategoryGridPresenterModifier', 'Modify category grid template data', 'This hook allows to modify data which is about to be used in template for category grid', '1 '),
(NULL, 'actionEmployeeGridPresenterModifier', 'Modify employee grid template data', 'This hook allows to modify data which is about to be used in template for employee grid', '1 '),
(NULL, 'actionContactGridPresenterModifier', 'Modify contact grid template data', 'This hook allows to modify data which is about to be used in template for contact grid', '1 '),
(NULL, 'actionCustomerGridPresenterModifier', 'Modify customer grid template data', 'This hook allows to modify data which is about to be used in template for customer grid', '1 '),
(NULL, 'actionLanguageGridPresenterModifier', 'Modify language grid template data', 'This hook allows to modify data which is about to be used in template for language grid', '1 '),
(NULL, 'actionCurrencyGridPresenterModifier', 'Modify currency grid template data', 'This hook allows to modify data which is about to be used in template for currency grid', '1 '),
(NULL, 'actionSupplierGridPresenterModifier', 'Modify supplier grid template data', 'This hook allows to modify data which is about to be used in template for supplier grid', '1 '),
(NULL, 'actionProfileGridPresenterModifier', 'Modify profile grid template data', 'This hook allows to modify data which is about to be used in template for profile grid', '1 '),
(NULL, 'actionCmsPageCategoryGridPresenterModifier', 'Modify cms page category grid template data', 'This hook allows to modify data which is about to be used in template for cms page category grid', '1 '),
(NULL, 'actionTaxGridPresenterModifier', 'Modify tax grid template data', 'This hook allows to modify data which is about to be used in template for tax grid', '1 '),
(NULL, 'actionManufacturerGridPresenterModifier', 'Modify manufacturer grid template data', 'This hook allows to modify data which is about to be used in template for manufacturer grid', '1 '),
(NULL, 'actionManufacturerAddressGridPresenterModifier', 'Modify manufacturer address grid template data', 'This hook allows to modify data which is about to be used in template for manufacturer address grid', '1 '),
(NULL, 'actionCmsPageGridPresenterModifier', 'Modify cms page grid template data', 'This hook allows to modify data which is about to be used in template for cms page grid', '1 ')
*INFO* v1.7.6.0 2025/03/21 - 12:33:27: [OK] SQL 1.7.6.0 : INSERT IGNORE INTO `materac_authorization_role` (`slug`) VALUES
('ROLE_MOD_TAB_ADMINMODULESMANAGE_CREATE'),
('ROLE_MOD_TAB_ADMINMODULESMANAGE_READ'),
('ROLE_MOD_TAB_ADMINMODULESMANAGE_UPDATE'),
('ROLE_MOD_TAB_ADMINMODULESMANAGE_DELETE')
*INFO* v1.7.6.0 2025/03/21 - 12:33:27: [OK] SQL 1.7.6.0 : INSERT IGNORE INTO `materac_authorization_role` (`slug`) VALUES
('ROLE_MOD_TAB_ADMINMODULESCATALOG_CREATE'),
('ROLE_MOD_TAB_ADMINMODULESCATALOG_READ'),
('ROLE_MOD_TAB_ADMINMODULESCATALOG_UPDATE'),
('ROLE_MOD_TAB_ADMINMODULESCATALOG_DELETE')
*INFO* v1.7.6.0 2025/03/21 - 12:33:27: [OK] SQL 1.7.6.0 : INSERT IGNORE INTO `materac_authorization_role` (`slug`) VALUES
('ROLE_MOD_TAB_ADMINPARENTMODULESCATALOG_CREATE'),
('ROLE_MOD_TAB_ADMINPARENTMODULESCATALOG_READ'),
('ROLE_MOD_TAB_ADMINPARENTMODULESCATALOG_UPDATE'),
('ROLE_MOD_TAB_ADMINPARENTMODULESCATALOG_DELETE')
*INFO* v1.7.6.0 2025/03/21 - 12:33:27: [OK] SQL 1.7.6.1 : SET SESSION sql_mode = ''
*INFO* v1.7.6.0 2025/03/21 - 12:33:27: [OK] SQL 1.7.6.1 : SET NAMES 'utf8'
*INFO* v1.7.6.0 2025/03/21 - 12:33:27: [OK] PHP 1.7.6.1 : /* PHP:ps_1761_update_currencies(); */
*INFO* v1.7.6.0 2025/03/21 - 12:33:27: Installing native module prestafraud
*INFO* v1.7.6.0 2025/03/21 - 12:33:27: Native module autoupgrade already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:27: Installing native module gamification
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module gsitemap already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Installing native module blockwishlist
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Installing native module productcomments
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module dashactivity already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module dashgoals already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module dashproducts already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module dashtrends already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module graphnvd3 already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module gridhtml already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module pagesnotfound already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module statsbestcategories already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module statsbestcustomers already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module statsbestmanufacturers already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module statsbestproducts already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module statsbestsuppliers already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module statsbestvouchers already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module statscarrier already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module statscatalog already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module statscheckup already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module statsdata already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module statsforecast already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module statslive already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module statsnewsletter already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module statspersonalinfos already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module statsproduct already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module statsregistrations already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module statssales already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module statssearch already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module statsstock already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module blockreassurance already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_banner already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_categorytree already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_contactinfo already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_customersignin already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_customtext already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_emailsubscription already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_featuredproducts already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_imageslider already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_mainmenu already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_sharebuttons already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_socialfollow already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module welcome already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module contactform already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_checkpayment already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_currencyselector already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_customeraccountlinks already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_facetedsearch already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_languageselector already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_searchbar already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_shoppingcart already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_wirepayment already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_linklist already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_emailalerts already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_bestsellers already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_categoryproducts already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_cashondelivery already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_brandlist already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_newproducts already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_specials already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_supplierlist already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_viewedproduct already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_crossselling already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Installing native module ps_dataprivacy
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Installing native module ps_reminder
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Installing native module ps_emailsmanager
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Installing native module ps_googleanalytics
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Installing native module psaddonsconnect
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_themecusto already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Installing native module psgdpr
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Installing native module ps_mbo
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Native module ps_faviconnotificationbo already installed
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Installing native module ps_buybuttonlite
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Installing native module ps_checkout
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Installing native module ps_metrics
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Installing native module ps_accounts
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Installing native module ps_facebook
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Installing native module ps_eventbus
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: Installing native module psxmarketingwithgoogle
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: [SKIP] directory "smarty/cache" does not exist and cannot be emptied.
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: [SKIP] directory "smarty/compile" does not exist and cannot be emptied.
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: [SKIP] directory "smarty_v2/cache" does not exist and cannot be emptied.
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: [SKIP] directory "smarty_v2/compile" does not exist and cannot be emptied.
*INFO* v1.7.6.0 2025/03/21 - 12:33:28: [SKIP] directory "/home/admin/domains/drmaterac.pl/public_html/app/cache/" does not exist and cannot be emptied.
*ERROR* v1.7.6.0 2025/03/21 - 12:34:22: You already have the 1.7.6.1 version.

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,9 @@
[2025-12-01 23:21:29] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
[2025-12-01 23:21:29] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
[2025-12-01 23:21:29] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
[2025-12-01 23:22:08] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
[2025-12-01 23:22:08] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
[2025-12-01 23:22:08] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
[2025-12-01 23:22:19] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
[2025-12-01 23:22:19] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
[2025-12-01 23:22:19] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []