Add new features to cmsproducts module and update version to 1.6.5
- Implement methods for returning customer gallery by product and category - Update blog template for improved formatting and readability - Add new exception log for January 2025 and remove outdated log from September 2024 - Introduce CSS styles for blog detail layout
This commit is contained in:
@@ -17,7 +17,7 @@ class cmsproducts extends Module
|
||||
$this->name = 'cmsproducts';
|
||||
$this->tab = 'front_office_features';
|
||||
$this->author = 'MyPresta.eu';
|
||||
$this->version = '1.6.4';
|
||||
$this->version = '1.6.5';
|
||||
$this->bootstrap = 1;
|
||||
$this->mypresta_link = 'https://mypresta.eu/modules/front-office-features/products-on-cms-pages.html';
|
||||
parent::__construct();
|
||||
|
||||
12
modules/cmsproducts/config_pl.xml
Normal file
12
modules/cmsproducts/config_pl.xml
Normal file
@@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<module>
|
||||
<name>cmsproducts</name>
|
||||
<displayName><![CDATA[Products on CMS pages]]></displayName>
|
||||
<version><![CDATA[1.6.4]]></version>
|
||||
<description><![CDATA[Module allows to display lists of products on your shop CMS pages]]></description>
|
||||
<author><![CDATA[MyPresta.eu]]></author>
|
||||
<tab><![CDATA[front_office_features]]></tab>
|
||||
<is_configurable>1</is_configurable>
|
||||
<need_instance>1</need_instance>
|
||||
<limited_countries></limited_countries>
|
||||
</module>
|
||||
BIN
modules/cmsproducts/logo.webp
Normal file
BIN
modules/cmsproducts/logo.webp
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 1.6 KiB |
@@ -350,6 +350,30 @@ class CmsController extends CmsControllerCore
|
||||
return $this->noModuleMessage("<a href=\"https://mypresta.eu/modules/front-office-features/last-product-reviews.html\">[Last Product Reviews by Mypresta]</a>");
|
||||
}
|
||||
|
||||
public function returnCustomersGalleryProduct($id_product=0) {
|
||||
if ($id_product == 0 || !is_int($id_product)) {
|
||||
$customersgallery = Module::getInstanceByName('customersgallery');
|
||||
if ($customersgallery != false) {
|
||||
if (method_exists($customersgallery, 'shortcode_by_product')) {
|
||||
return $customersgallery->shortcode_by_product($id_product);
|
||||
}
|
||||
}
|
||||
return $this->noModuleMessage("<a href=\"https://mypresta.eu/modules/front-office-features/customer-photo-gallery.html\">[CustomersGallery by Mypresta]</a>");
|
||||
}
|
||||
}
|
||||
|
||||
public function returnCustomersGalleryCategory($id_category=0) {
|
||||
if ($id_category == 0 || !is_int($id_category)) {
|
||||
$customersgallery = Module::getInstanceByName('customersgallery');
|
||||
if ($customersgallery != false) {
|
||||
if (method_exists($customersgallery, 'shortcode_by_category')) {
|
||||
return $customersgallery->shortcode_by_category($id_category);
|
||||
}
|
||||
}
|
||||
return $this->noModuleMessage("<a href=\"https://mypresta.eu/modules/front-office-features/customer-photo-gallery.html\">[CustomersGallery by Mypresta]</a>");
|
||||
}
|
||||
}
|
||||
|
||||
public function returnContent($contents)
|
||||
{
|
||||
preg_match_all('/\[ccarousel\:[(0-9\,)]+\]/i', $contents, $matches);
|
||||
@@ -405,6 +429,18 @@ class CmsController extends CmsControllerCore
|
||||
$contents = str_replace($match, $this->returnProductsDiffTool(str_replace("}", "", $explode[1])), $contents);
|
||||
}
|
||||
|
||||
preg_match_all('/\{customersgallery\-product\:[(0-9)]+\}/i', $contents, $matches);
|
||||
foreach ($matches[0] as $index => $match) {
|
||||
$explode = explode(":", $match);
|
||||
$contents = str_replace($match, $this->returnCustomersGalleryProduct(str_replace("}", "", $explode[1])), $contents);
|
||||
}
|
||||
|
||||
preg_match_all('/\{customersgallery\-category\:[(0-9)]+\}/i', $contents, $matches);
|
||||
foreach ($matches[0] as $index => $match) {
|
||||
$explode = explode(":", $match);
|
||||
$contents = str_replace($match, $this->returnCustomersGalleryCategory(str_replace("}", "", $explode[1])), $contents);
|
||||
}
|
||||
|
||||
return $contents;
|
||||
}
|
||||
}
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,4 +1,4 @@
|
||||
{*
|
||||
{*
|
||||
* @Module Name: Leo Blog
|
||||
* @Website: leotheme.com.com - prestashop template provider
|
||||
* @author Leotheme <leotheme@gmail.com>
|
||||
@@ -16,7 +16,7 @@
|
||||
<div class="alert alert-warning">{l s='Sorry, We are updating data, please come back later!!!!' mod='leoblog'}</div>
|
||||
</div>
|
||||
</div>
|
||||
{else}
|
||||
{else}
|
||||
<div id="blogpage">
|
||||
<article class="blog-detail">
|
||||
{if $is_active}
|
||||
@@ -31,31 +31,31 @@
|
||||
{/if}
|
||||
|
||||
{if $config->get('item_show_category','1')}
|
||||
<span class="blog-cat">
|
||||
<i class="material-icons">list</i> <span>{l s='In' mod='leoblog'}: </span>
|
||||
<span class="blog-cat">
|
||||
<i class="material-icons">list</i> <span>{l s='In' mod='leoblog'}: </span>
|
||||
<a href="{$blog->category_link|escape:'html':'UTF-8'}" title="{$blog->category_title|escape:'html':'UTF-8'}">{$blog->category_title|escape:'html':'UTF-8'}</a>
|
||||
</span>
|
||||
{/if}
|
||||
|
||||
{if $config->get('item_show_created','1')}
|
||||
<span class="blog-created">
|
||||
<i class="material-icons"></i> <span>{l s='On' mod='leoblog'}: </span>
|
||||
<time class="date" datetime="{strtotime($blog->date_add)|date_format:"%Y"|escape:'html':'UTF-8'}">
|
||||
<i class="material-icons"></i> <span>{l s='On' mod='leoblog'}: </span>
|
||||
<time class="date" datetime="{strtotime($blog->date_add)|date_format:"%Y"|escape:'html':'UTF-8'}">
|
||||
{assign var='blog_date' value=strtotime($blog->date_add)|date_format:"%A"}
|
||||
{l s=$blog_date mod='leoblog'}, <!-- day of week -->
|
||||
{assign var='blog_month' value=strtotime($blog->date_add)|date_format:"%B"}
|
||||
{l s=$blog_month mod='leoblog'} <!-- month-->
|
||||
{assign var='blog_day' value=strtotime($blog->date_add)|date_format:"%e"}
|
||||
{l s=$blog_day mod='leoblog'} <!-- day of month -->
|
||||
{assign var='blog_year' value=strtotime($blog->date_add)|date_format:"%Y"}
|
||||
{l s=$blog_month mod='leoblog'} <!-- month-->
|
||||
{assign var='blog_day' value=strtotime($blog->date_add)|date_format:"%e"}
|
||||
{l s=$blog_day mod='leoblog'} <!-- day of month -->
|
||||
{assign var='blog_year' value=strtotime($blog->date_add)|date_format:"%Y"}
|
||||
{l s=$blog_year mod='leoblog'} <!-- year -->
|
||||
</time>
|
||||
</span>
|
||||
{/if}
|
||||
|
||||
|
||||
{if isset($blog_count_comment)&&$config->get('item_show_counter','1')}
|
||||
<span class="blog-ctncomment">
|
||||
<i class="material-icons">comment</i> <span>{l s='Comment' mod='leoblog'}:</span>
|
||||
<i class="material-icons">comment</i> <span>{l s='Comment' mod='leoblog'}:</span>
|
||||
{$blog_count_comment|intval}
|
||||
</span>
|
||||
{/if}
|
||||
@@ -79,8 +79,8 @@
|
||||
{/if}
|
||||
{$blog->content nofilter}{* HTML form , no escape necessary *}
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
{if trim($blog->video_code)}
|
||||
<div class="blog-video-code">
|
||||
@@ -96,11 +96,11 @@
|
||||
{if $tags}
|
||||
<div class="blog-tags">
|
||||
<span>{l s='Tags:' mod='leoblog'}</span>
|
||||
|
||||
|
||||
{foreach from=$tags item=tag name=tag}
|
||||
<a href="{$tag.link|escape:'html':'UTF-8'}" title="{$tag.tag|escape:'html':'UTF-8'}"><span>{$tag.tag|escape:'html':'UTF-8'}</span></a>
|
||||
{/foreach}
|
||||
|
||||
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
@@ -150,11 +150,11 @@
|
||||
{include file="module:leoblog/views/templates/front/default/_facebook_comment.tpl"}
|
||||
{elseif $config->get('item_comment_engine','local')=='diquis'}
|
||||
{include file="module:leoblog/views/templates/front/default/_diquis_comment.tpl"}
|
||||
|
||||
|
||||
{else}
|
||||
{include file="module:leoblog/views/templates/front/default/_local_comment.tpl"}
|
||||
{/if}
|
||||
|
||||
|
||||
{elseif $config->get('item_show_listcomment','1') == 0 && $config->get('item_show_formcomment','1') == 1}
|
||||
<div class="blog-comment-block clearfix">
|
||||
{include file="module:leoblog/views/templates/front/default/_local_comment.tpl"}
|
||||
@@ -169,7 +169,7 @@
|
||||
{hook h='displayApSC' sc_key=sc3749181901}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="hidden-xl-down hidden-xl-up datetime-translate">
|
||||
{l s='Sunday' mod='leoblog'}
|
||||
{l s='Monday' mod='leoblog'}
|
||||
@@ -178,7 +178,7 @@
|
||||
{l s='Thursday' mod='leoblog'}
|
||||
{l s='Friday' mod='leoblog'}
|
||||
{l s='Saturday' mod='leoblog'}
|
||||
|
||||
|
||||
{l s='January' mod='leoblog'}
|
||||
{l s='February' mod='leoblog'}
|
||||
{l s='March' mod='leoblog'}
|
||||
@@ -191,7 +191,7 @@
|
||||
{l s='October' mod='leoblog'}
|
||||
{l s='November' mod='leoblog'}
|
||||
{l s='December' mod='leoblog'}
|
||||
|
||||
|
||||
</div>
|
||||
{/if}
|
||||
</section>
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -5565,4 +5565,16 @@ body {
|
||||
.inscription {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
|
||||
.blog-detail {
|
||||
.products {
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
flex-wrap: wrap;
|
||||
|
||||
article.product-miniature {
|
||||
max-width: 300px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
*ERROR* v1.7.5.0 2024/09/06 - 03:50:40: No template found for at line 68 in file classes/Smarty/TemplateFinder.php
|
||||
1
var/logs/20250117_exception.log
Normal file
1
var/logs/20250117_exception.log
Normal file
@@ -0,0 +1 @@
|
||||
*ERROR* v1.7.5.0 2025/01/17 - 06:55:39: No template found for at line 68 in file classes/Smarty/TemplateFinder.php
|
||||
408
var/logs/dev.log
408
var/logs/dev.log
@@ -7391,3 +7391,411 @@
|
||||
[2023-11-02 21:31:17] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\ContextErrorException: "Notice: Undefined offset: -1" at /home/admin/domains/drmaterac.pl/public_html/classes/module/Module.php line 3158 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\ContextErrorException(code: 0): Notice: Undefined offset: -1 at /home/admin/domains/drmaterac.pl/public_html/classes/module/Module.php:3158)"} []
|
||||
[2023-11-02 21:31:18] php.DEBUG: Warning: file_exists(): open_basedir restriction in effect. File(/home/admin/domains/drmaterac.pl/composer.json) is not within the allowed path(s): (/home/admin/domains/drmaterac.pl/public_html/:/tmp:/var/tmp:/bin:/usr/bin:/usr/local/lib/php/:/usr/local/php72/lib/php/:/usr/local/php72/lib64/php/:/var/www/html/waf/:/usr/local/directadmin/plugins/waf/data/admin/) {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\SilencedErrorContext: {\"severity\":2,\"file\":\"/home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/VarDumper/Caster/LinkStub.php\",\"line\":94,\"trace\":[{\"file\":\"/home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/VarDumper/Caster/LinkStub.php\",\"line\":55,\"function\":\"getComposerRoot\",\"class\":\"Symfony\\\\Component\\\\VarDumper\\\\Caster\\\\LinkStub\",\"type\":\"->\"}],\"count\":1})"} []
|
||||
[2023-11-02 21:31:18] php.DEBUG: Warning: file_exists(): open_basedir restriction in effect. File(/home/admin/domains/drmaterac.pl) is not within the allowed path(s): (/home/admin/domains/drmaterac.pl/public_html/:/tmp:/var/tmp:/bin:/usr/bin:/usr/local/lib/php/:/usr/local/php72/lib/php/:/usr/local/php72/lib64/php/:/var/www/html/waf/:/usr/local/directadmin/plugins/waf/data/admin/) {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\SilencedErrorContext: {\"severity\":2,\"file\":\"/home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/VarDumper/Caster/LinkStub.php\",\"line\":95,\"trace\":[{\"file\":\"/home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/VarDumper/Caster/LinkStub.php\",\"line\":55,\"function\":\"getComposerRoot\",\"class\":\"Symfony\\\\Component\\\\VarDumper\\\\Caster\\\\LinkStub\",\"type\":\"->\"}],\"count\":1})"} []
|
||||
[2024-09-09 13:42:29] doctrine.DEBUG: SELECT name FROM materac_module WHERE active = 1 [] []
|
||||
[2024-09-09 13:42:29] php.DEBUG: Warning: file_get_contents(/home/admin/domains/drmaterac.pl/public_html/modules/ets_multilayerslider/data/google-font-list.json): failed to open stream: No such file or directory {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\SilencedErrorContext: {\"severity\":2,\"file\":\"/home/admin/domains/drmaterac.pl/public_html/classes/Tools.php\",\"line\":2151,\"trace\":[{\"file\":\"/home/admin/domains/drmaterac.pl/public_html/modules/ets_multilayerslider/ets_multilayerslider.php\",\"line\":52,\"function\":\"file_get_contents\",\"class\":\"ToolsCore\",\"type\":\"::\"}],\"count\":1})"} []
|
||||
[2024-09-09 13:42:29] php.INFO: User Deprecated: AdminMarketing is a deprecated tab since version 1.7.0 and "Default" will be removed in 1.7.1.. Upgrade module using the docs: http://build.prestashop.com/news/how-we-reorganized-main-menu-prestashop-1.7/. {"exception":"[object] (ErrorException(code: 0): User Deprecated: AdminMarketing is a deprecated tab since version 1.7.0 and \"Default\" will be removed in 1.7.1.. Upgrade module using the docs: http://build.prestashop.com/news/how-we-reorganized-main-menu-prestashop-1.7/. at /home/admin/domains/drmaterac.pl/public_html/classes/Tab.php:346)"} []
|
||||
[2024-09-09 13:42:29] php.DEBUG: Warning: filemtime(): stat failed for /home/admin/domains/drmaterac.pl/public_html/iadmin/themes/default/css/theme.css {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\SilencedErrorContext: {\"severity\":2,\"file\":\"/home/admin/domains/drmaterac.pl/public_html/classes/Media.php\",\"line\":269,\"trace\":[{\"file\":\"/home/admin/domains/drmaterac.pl/public_html/classes/Media.php\",\"line\":240,\"function\":\"getMediaPath\",\"class\":\"MediaCore\",\"type\":\"::\"}],\"count\":1})"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:42:30] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:43:29] doctrine.DEBUG: SELECT name FROM materac_module WHERE active = 1 [] []
|
||||
[2024-09-09 13:43:29] php.DEBUG: Warning: file_get_contents(/home/admin/domains/drmaterac.pl/public_html/modules/ets_multilayerslider/data/google-font-list.json): failed to open stream: No such file or directory {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\SilencedErrorContext: {\"severity\":2,\"file\":\"/home/admin/domains/drmaterac.pl/public_html/classes/Tools.php\",\"line\":2151,\"trace\":[{\"file\":\"/home/admin/domains/drmaterac.pl/public_html/modules/ets_multilayerslider/ets_multilayerslider.php\",\"line\":52,\"function\":\"file_get_contents\",\"class\":\"ToolsCore\",\"type\":\"::\"}],\"count\":1})"} []
|
||||
[2024-09-09 13:43:29] php.INFO: User Deprecated: AdminMarketing is a deprecated tab since version 1.7.0 and "Default" will be removed in 1.7.1.. Upgrade module using the docs: http://build.prestashop.com/news/how-we-reorganized-main-menu-prestashop-1.7/. {"exception":"[object] (ErrorException(code: 0): User Deprecated: AdminMarketing is a deprecated tab since version 1.7.0 and \"Default\" will be removed in 1.7.1.. Upgrade module using the docs: http://build.prestashop.com/news/how-we-reorganized-main-menu-prestashop-1.7/. at /home/admin/domains/drmaterac.pl/public_html/classes/Tab.php:346)"} []
|
||||
[2024-09-09 13:43:29] php.DEBUG: Warning: filemtime(): stat failed for /home/admin/domains/drmaterac.pl/public_html/iadmin/themes/default/css/theme.css {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\SilencedErrorContext: {\"severity\":2,\"file\":\"/home/admin/domains/drmaterac.pl/public_html/classes/Media.php\",\"line\":269,\"trace\":[{\"file\":\"/home/admin/domains/drmaterac.pl/public_html/classes/Media.php\",\"line\":240,\"function\":\"getMediaPath\",\"class\":\"MediaCore\",\"type\":\"::\"}],\"count\":1})"} []
|
||||
[2024-09-09 13:44:30] doctrine.DEBUG: SELECT name FROM materac_module WHERE active = 1 [] []
|
||||
[2024-09-09 13:44:30] php.DEBUG: Warning: file_get_contents(/home/admin/domains/drmaterac.pl/public_html/modules/ets_multilayerslider/data/google-font-list.json): failed to open stream: No such file or directory {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\SilencedErrorContext: {\"severity\":2,\"file\":\"/home/admin/domains/drmaterac.pl/public_html/classes/Tools.php\",\"line\":2151,\"trace\":[{\"file\":\"/home/admin/domains/drmaterac.pl/public_html/modules/ets_multilayerslider/ets_multilayerslider.php\",\"line\":52,\"function\":\"file_get_contents\",\"class\":\"ToolsCore\",\"type\":\"::\"}],\"count\":1})"} []
|
||||
[2024-09-09 13:44:30] php.INFO: User Deprecated: AdminMarketing is a deprecated tab since version 1.7.0 and "Default" will be removed in 1.7.1.. Upgrade module using the docs: http://build.prestashop.com/news/how-we-reorganized-main-menu-prestashop-1.7/. {"exception":"[object] (ErrorException(code: 0): User Deprecated: AdminMarketing is a deprecated tab since version 1.7.0 and \"Default\" will be removed in 1.7.1.. Upgrade module using the docs: http://build.prestashop.com/news/how-we-reorganized-main-menu-prestashop-1.7/. at /home/admin/domains/drmaterac.pl/public_html/classes/Tab.php:346)"} []
|
||||
[2024-09-09 13:44:30] php.DEBUG: Warning: filemtime(): stat failed for /home/admin/domains/drmaterac.pl/public_html/iadmin/themes/default/css/theme.css {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\SilencedErrorContext: {\"severity\":2,\"file\":\"/home/admin/domains/drmaterac.pl/public_html/classes/Media.php\",\"line\":269,\"trace\":[{\"file\":\"/home/admin/domains/drmaterac.pl/public_html/classes/Media.php\",\"line\":240,\"function\":\"getMediaPath\",\"class\":\"MediaCore\",\"type\":\"::\"}],\"count\":1})"} []
|
||||
[2024-09-09 13:45:31] doctrine.DEBUG: SELECT name FROM materac_module WHERE active = 1 [] []
|
||||
[2024-09-09 13:45:31] php.DEBUG: Warning: file_get_contents(/home/admin/domains/drmaterac.pl/public_html/modules/ets_multilayerslider/data/google-font-list.json): failed to open stream: No such file or directory {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\SilencedErrorContext: {\"severity\":2,\"file\":\"/home/admin/domains/drmaterac.pl/public_html/classes/Tools.php\",\"line\":2151,\"trace\":[{\"file\":\"/home/admin/domains/drmaterac.pl/public_html/modules/ets_multilayerslider/ets_multilayerslider.php\",\"line\":52,\"function\":\"file_get_contents\",\"class\":\"ToolsCore\",\"type\":\"::\"}],\"count\":1})"} []
|
||||
[2024-09-09 13:45:32] php.INFO: User Deprecated: AdminMarketing is a deprecated tab since version 1.7.0 and "Default" will be removed in 1.7.1.. Upgrade module using the docs: http://build.prestashop.com/news/how-we-reorganized-main-menu-prestashop-1.7/. {"exception":"[object] (ErrorException(code: 0): User Deprecated: AdminMarketing is a deprecated tab since version 1.7.0 and \"Default\" will be removed in 1.7.1.. Upgrade module using the docs: http://build.prestashop.com/news/how-we-reorganized-main-menu-prestashop-1.7/. at /home/admin/domains/drmaterac.pl/public_html/classes/Tab.php:346)"} []
|
||||
[2024-09-09 13:45:32] php.DEBUG: Warning: filemtime(): stat failed for /home/admin/domains/drmaterac.pl/public_html/iadmin/themes/default/css/theme.css {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\SilencedErrorContext: {\"severity\":2,\"file\":\"/home/admin/domains/drmaterac.pl/public_html/classes/Media.php\",\"line\":269,\"trace\":[{\"file\":\"/home/admin/domains/drmaterac.pl/public_html/classes/Media.php\",\"line\":240,\"function\":\"getMediaPath\",\"class\":\"MediaCore\",\"type\":\"::\"}],\"count\":1})"} []
|
||||
[2024-09-09 13:46:06] doctrine.DEBUG: SELECT name FROM materac_module WHERE active = 1 [] []
|
||||
[2024-09-09 13:46:06] 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=cExTVuc2CiKb6CKv5BavG5w6HH8C5VpPLwJTtpMMoOo","method":"GET"} []
|
||||
[2024-09-09 13:46:06] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-09-09 13:46:06] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-09-09 13:46:06] doctrine.DEBUG: SELECT name FROM materac_module WHERE active = 1 [] []
|
||||
[2024-09-09 13:46:07] doctrine.DEBUG: SELECT m0_.id AS id_0, m0_.id_employee AS id_employee_1, m0_.id_module AS id_module_2, m0_.date_add AS date_add_3, m0_.date_upd AS date_upd_4 FROM materac_module_history m0_ WHERE m0_.id_employee = ? [2] []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Disable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Upgrade","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] translation.WARNING: Translation not found. {"id":"Enable mobile","domain":"AdminActions","locale":"pl-PL"} []
|
||||
[2024-09-09 13:46:09] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-09-09 13:46:11] doctrine.DEBUG: SELECT name FROM materac_module WHERE active = 1 [] []
|
||||
[2024-09-09 13:46:11] request.INFO: Matched route "_wdt". {"route":"_wdt","route_parameters":{"_controller":"web_profiler.controller.profiler:toolbarAction","token":"82894e","_route":"_wdt"},"request_uri":"https://drmaterac.pl/iadmin/index.php/_wdt/82894e?_token=cExTVuc2CiKb6CKv5BavG5w6HH8C5VpPLwJTtpMMoOo","method":"GET"} []
|
||||
[2024-09-09 13:46:11] doctrine.DEBUG: SELECT name FROM materac_module WHERE active = 1 [] []
|
||||
[2024-09-09 13:46:11] php.INFO: User Deprecated: Implementing "Symfony\Component\HttpKernel\DataCollector\DataCollectorInterface" without the "reset()" method is deprecated since Symfony 3.4 and will be unsupported in 4.0 for class "Csa\Bundle\GuzzleBundle\DataCollector\GuzzleCollector". {"exception":"[object] (ErrorException(code: 0): User Deprecated: Implementing \"Symfony\\Component\\HttpKernel\\DataCollector\\DataCollectorInterface\" without the \"reset()\" method is deprecated since Symfony 3.4 and will be unsupported in 4.0 for class \"Csa\\Bundle\\GuzzleBundle\\DataCollector\\GuzzleCollector\". at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Profiler/Profiler.php:215)"} []
|
||||
[2024-09-09 13:46:12] doctrine.DEBUG: SELECT name FROM materac_module WHERE active = 1 [] []
|
||||
[2024-09-09 13:46:12] doctrine.DEBUG: SELECT name FROM materac_module WHERE active = 1 [] []
|
||||
[2024-09-09 13:46:12] 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=cExTVuc2CiKb6CKv5BavG5w6HH8C5VpPLwJTtpMMoOo","method":"GET"} []
|
||||
[2024-09-09 13:46:12] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-09-09 13:46:12] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-09-09 13:46:12] doctrine.DEBUG: SELECT name FROM materac_module WHERE active = 1 [] []
|
||||
[2024-09-09 13:46:12] doctrine.DEBUG: SELECT m0_.id AS id_0, m0_.id_employee AS id_employee_1, m0_.id_module AS id_module_2, m0_.date_add AS date_add_3, m0_.date_upd AS date_upd_4 FROM materac_module_history m0_ WHERE m0_.id_employee = ? [2] []
|
||||
[2024-09-09 13:46:13] php.DEBUG: Warning: file_get_contents(/home/admin/domains/drmaterac.pl/public_html/modules/ets_multilayerslider/data/google-font-list.json): failed to open stream: No such file or directory {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\SilencedErrorContext: {\"severity\":2,\"file\":\"/home/admin/domains/drmaterac.pl/public_html/classes/Tools.php\",\"line\":2151,\"trace\":[{\"file\":\"/home/admin/domains/drmaterac.pl/public_html/modules/ets_multilayerslider/ets_multilayerslider.php\",\"line\":52,\"function\":\"file_get_contents\",\"class\":\"ToolsCore\",\"type\":\"::\"}],\"count\":1})"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Implementing "Symfony\Component\HttpKernel\DataCollector\DataCollectorInterface" without the "reset()" method is deprecated since Symfony 3.4 and will be unsupported in 4.0 for class "Csa\Bundle\GuzzleBundle\DataCollector\GuzzleCollector". {"exception":"[object] (ErrorException(code: 0): User Deprecated: Implementing \"Symfony\\Component\\HttpKernel\\DataCollector\\DataCollectorInterface\" without the \"reset()\" method is deprecated since Symfony 3.4 and will be unsupported in 4.0 for class \"Csa\\Bundle\\GuzzleBundle\\DataCollector\\GuzzleCollector\". at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Profiler/Profiler.php:215)"} []
|
||||
[2024-09-09 13:46:13] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-09-09 13:46:13] php.DEBUG: Warning: file_exists(): open_basedir restriction in effect. File(/home/admin/domains/drmaterac.pl/composer.json) is not within the allowed path(s): (/home/admin/domains/drmaterac.pl/public_html/:/tmp:/var/tmp:/bin:/usr/bin:/usr/local/lib/php/:/usr/local/php72/lib/php/:/usr/local/php72/lib64/php/:/var/www/html/waf/:/usr/local/directadmin/plugins/waf/data/admin/) {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\SilencedErrorContext: {\"severity\":2,\"file\":\"/home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/VarDumper/Caster/LinkStub.php\",\"line\":94,\"trace\":[{\"file\":\"/home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/VarDumper/Caster/LinkStub.php\",\"line\":55,\"function\":\"getComposerRoot\",\"class\":\"Symfony\\\\Component\\\\VarDumper\\\\Caster\\\\LinkStub\",\"type\":\"->\"}],\"count\":1})"} []
|
||||
[2024-09-09 13:46:13] php.DEBUG: Warning: file_exists(): open_basedir restriction in effect. File(/home/admin/domains/drmaterac.pl) is not within the allowed path(s): (/home/admin/domains/drmaterac.pl/public_html/:/tmp:/var/tmp:/bin:/usr/bin:/usr/local/lib/php/:/usr/local/php72/lib/php/:/usr/local/php72/lib64/php/:/var/www/html/waf/:/usr/local/directadmin/plugins/waf/data/admin/) {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\SilencedErrorContext: {\"severity\":2,\"file\":\"/home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/VarDumper/Caster/LinkStub.php\",\"line\":95,\"trace\":[{\"file\":\"/home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/VarDumper/Caster/LinkStub.php\",\"line\":55,\"function\":\"getComposerRoot\",\"class\":\"Symfony\\\\Component\\\\VarDumper\\\\Caster\\\\LinkStub\",\"type\":\"->\"}],\"count\":1})"} []
|
||||
[2024-09-09 13:46:13] php.DEBUG: Warning: file_get_contents(/home/admin/domains/drmaterac.pl/public_html/modules/ets_multilayerslider/data/google-font-list.json): failed to open stream: No such file or directory {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\SilencedErrorContext: {\"severity\":2,\"file\":\"/home/admin/domains/drmaterac.pl/public_html/classes/Tools.php\",\"line\":2151,\"trace\":[{\"file\":\"/home/admin/domains/drmaterac.pl/public_html/modules/ets_multilayerslider/ets_multilayerslider.php\",\"line\":52,\"function\":\"file_get_contents\",\"class\":\"ToolsCore\",\"type\":\"::\"}],\"count\":1})"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: AdminMarketing is a deprecated tab since version 1.7.0 and "Default" will be removed in 1.7.1.. Upgrade module using the docs: http://build.prestashop.com/news/how-we-reorganized-main-menu-prestashop-1.7/. {"exception":"[object] (ErrorException(code: 0): User Deprecated: AdminMarketing is a deprecated tab since version 1.7.0 and \"Default\" will be removed in 1.7.1.. Upgrade module using the docs: http://build.prestashop.com/news/how-we-reorganized-main-menu-prestashop-1.7/. at /home/admin/domains/drmaterac.pl/public_html/classes/Tab.php:346)"} []
|
||||
[2024-09-09 13:46:13] php.DEBUG: Warning: filemtime(): stat failed for /home/admin/domains/drmaterac.pl/public_html/iadmin/themes/default/css/theme.css {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\SilencedErrorContext: {\"severity\":2,\"file\":\"/home/admin/domains/drmaterac.pl/public_html/classes/Media.php\",\"line\":269,\"trace\":[{\"file\":\"/home/admin/domains/drmaterac.pl/public_html/classes/Media.php\",\"line\":240,\"function\":\"getMediaPath\",\"class\":\"MediaCore\",\"type\":\"::\"}],\"count\":1})"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.cache.Cache" instead of "empik.marketplace.cache.cache" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.cache.Cache\" instead of \"empik.marketplace.cache.cache\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.CombinationDataProvider" instead of "empik.marketplace.dataProvider.combinationDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.CombinationDataProvider\" instead of \"empik.marketplace.dataProvider.combinationDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.dataProvider.ProductDataProvider" instead of "empik.marketplace.dataProvider.productDataProvider" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.dataProvider.ProductDataProvider\" instead of \"empik.marketplace.dataProvider.productDataProvider\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferPriceCalculator" instead of "empik.marketplace.utils.offerPriceCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferPriceCalculator\" instead of \"empik.marketplace.utils.offerPriceCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:13] php.INFO: User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using "empik.marketplace.utils.OfferQuantityCalculator" instead of "empik.marketplace.utils.offerQuantityCalculator" is deprecated since Symfony 3.3. {"exception":"[object] (ErrorException(code: 0): User Deprecated: Service identifiers will be made case sensitive in Symfony 4.0. Using \"empik.marketplace.utils.OfferQuantityCalculator\" instead of \"empik.marketplace.utils.offerQuantityCalculator\" is deprecated since Symfony 3.3. at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/DependencyInjection/Container.php:516)"} []
|
||||
[2024-09-09 13:46:18] doctrine.DEBUG: SELECT name FROM materac_module WHERE active = 1 [] []
|
||||
[2024-09-09 13:46:19] request.INFO: Matched route "admin_module_import". {"route":"admin_module_import","route_parameters":{"module_name":null,"_controller":"PrestaShopBundle\\Controller\\Admin\\Improve\\ModuleController::importModuleAction","_route":"admin_module_import"},"request_uri":"https://drmaterac.pl/iadmin/index.php/improve/modules/import?_token=cExTVuc2CiKb6CKv5BavG5w6HH8C5VpPLwJTtpMMoOo","method":"POST"} []
|
||||
[2024-09-09 13:46:19] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-09-09 13:46:19] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-09-09 13:46:19] doctrine.DEBUG: SELECT name FROM materac_module WHERE active = 1 [] []
|
||||
[2024-09-09 13:46:19] doctrine.DEBUG: SELECT m0_.id AS id_0, m0_.id_employee AS id_employee_1, m0_.id_module AS id_module_2, m0_.date_add AS date_add_3, m0_.date_upd AS date_upd_4 FROM materac_module_history m0_ WHERE m0_.id_employee = ? [2] []
|
||||
[2024-09-09 13:46:21] php.DEBUG: Warning: file_get_contents(/home/admin/domains/drmaterac.pl/public_html/modules/ets_multilayerslider/data/google-font-list.json): failed to open stream: No such file or directory {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\SilencedErrorContext: {\"severity\":2,\"file\":\"/home/admin/domains/drmaterac.pl/public_html/classes/Tools.php\",\"line\":2151,\"trace\":[{\"file\":\"/home/admin/domains/drmaterac.pl/public_html/modules/ets_multilayerslider/ets_multilayerslider.php\",\"line\":52,\"function\":\"file_get_contents\",\"class\":\"ToolsCore\",\"type\":\"::\"}],\"count\":1})"} []
|
||||
[2024-09-09 13:46:22] php.INFO: User Deprecated: Implementing "Symfony\Component\HttpKernel\DataCollector\DataCollectorInterface" without the "reset()" method is deprecated since Symfony 3.4 and will be unsupported in 4.0 for class "Csa\Bundle\GuzzleBundle\DataCollector\GuzzleCollector". {"exception":"[object] (ErrorException(code: 0): User Deprecated: Implementing \"Symfony\\Component\\HttpKernel\\DataCollector\\DataCollectorInterface\" without the \"reset()\" method is deprecated since Symfony 3.4 and will be unsupported in 4.0 for class \"Csa\\Bundle\\GuzzleBundle\\DataCollector\\GuzzleCollector\". at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Profiler/Profiler.php:215)"} []
|
||||
[2024-09-09 13:46:22] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-09-09 13:46:22] php.DEBUG: Warning: file_exists(): open_basedir restriction in effect. File(/home/admin/domains/drmaterac.pl/composer.json) is not within the allowed path(s): (/home/admin/domains/drmaterac.pl/public_html/:/tmp:/var/tmp:/bin:/usr/bin:/usr/local/lib/php/:/usr/local/php72/lib/php/:/usr/local/php72/lib64/php/:/var/www/html/waf/:/usr/local/directadmin/plugins/waf/data/admin/) {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\SilencedErrorContext: {\"severity\":2,\"file\":\"/home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/VarDumper/Caster/LinkStub.php\",\"line\":94,\"trace\":[{\"file\":\"/home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/VarDumper/Caster/LinkStub.php\",\"line\":55,\"function\":\"getComposerRoot\",\"class\":\"Symfony\\\\Component\\\\VarDumper\\\\Caster\\\\LinkStub\",\"type\":\"->\"}],\"count\":1})"} []
|
||||
[2024-09-09 13:46:22] php.DEBUG: Warning: file_exists(): open_basedir restriction in effect. File(/home/admin/domains/drmaterac.pl) is not within the allowed path(s): (/home/admin/domains/drmaterac.pl/public_html/:/tmp:/var/tmp:/bin:/usr/bin:/usr/local/lib/php/:/usr/local/php72/lib/php/:/usr/local/php72/lib64/php/:/var/www/html/waf/:/usr/local/directadmin/plugins/waf/data/admin/) {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\SilencedErrorContext: {\"severity\":2,\"file\":\"/home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/VarDumper/Caster/LinkStub.php\",\"line\":95,\"trace\":[{\"file\":\"/home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/VarDumper/Caster/LinkStub.php\",\"line\":55,\"function\":\"getComposerRoot\",\"class\":\"Symfony\\\\Component\\\\VarDumper\\\\Caster\\\\LinkStub\",\"type\":\"->\"}],\"count\":1})"} []
|
||||
[2024-09-09 13:46:22] php.DEBUG: Warning: file_exists(): open_basedir restriction in effect. File(/) is not within the allowed path(s): (/home/admin/domains/drmaterac.pl/public_html/:/tmp:/var/tmp:/bin:/usr/bin:/usr/local/lib/php/:/usr/local/php72/lib/php/:/usr/local/php72/lib64/php/:/var/www/html/waf/:/usr/local/directadmin/plugins/waf/data/admin/) [] []
|
||||
|
||||
@@ -1125,3 +1125,649 @@
|
||||
[2024-09-04 18:12:06] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-09-04 18:12:07] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-09-04 18:12:07] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-09-09 15:37:25] 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://lulandia.pl/iadmin/index.php/improve/modules/alerts/count?_token=-No7fkmC-t7hBSKL-16vjpoRw2QgPJu0lLPOW_m6gUE","method":"GET"} []
|
||||
[2024-09-09 15:37:25] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-09-09 15:37:25] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2024-09-09 15:37: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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server." 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server. at Unknown:0)"} []
|
||||
[2024-09-09 15:37:26] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-09-09 15:38:47] request.INFO: Matched route "admin_modules_positions". {"route":"admin_modules_positions","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\Improve\\Design\\PositionsController::indexAction","_legacy_controller":"AdminModulesPositions","_legacy_link":"AdminModulesPositions","_route":"admin_modules_positions"},"request_uri":"https://lulandia.pl/iadmin/index.php/improve/design/modules/positions/?_token=-No7fkmC-t7hBSKL-16vjpoRw2QgPJu0lLPOW_m6gUE","method":"GET"} []
|
||||
[2024-09-09 15:38:47] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-09-09 15:38:47] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2024-09-09 15:38:48] 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server." 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server. at Unknown:0)"} []
|
||||
[2024-09-09 15:38:48] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-09-09 15:38:51] request.INFO: Matched route "admin_modules_positions". {"route":"admin_modules_positions","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\Improve\\Design\\PositionsController::indexAction","_legacy_controller":"AdminModulesPositions","_legacy_link":"AdminModulesPositions","_route":"admin_modules_positions"},"request_uri":"https://lulandia.pl/iadmin/index.php/improve/design/modules/positions/?_token=-No7fkmC-t7hBSKL-16vjpoRw2QgPJu0lLPOW_m6gUE","method":"GET"} []
|
||||
[2024-09-09 15:38:51] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-09-09 15:38:51] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2024-09-09 15:38:51] 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server." 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server. at Unknown:0)"} []
|
||||
[2024-09-09 15:38:51] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-09-09 15:38:56] 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://lulandia.pl/iadmin/index.php/improve/modules/alerts/count?_token=-No7fkmC-t7hBSKL-16vjpoRw2QgPJu0lLPOW_m6gUE","method":"GET"} []
|
||||
[2024-09-09 15:38:56] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-09-09 15:38:56] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2024-09-09 15:38:56] 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server." 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server. at Unknown:0)"} []
|
||||
[2024-09-09 15:38:56] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-09-09 15:39:27] 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://lulandia.pl/iadmin/index.php/improve/modules/alerts/count?_token=-No7fkmC-t7hBSKL-16vjpoRw2QgPJu0lLPOW_m6gUE","method":"GET"} []
|
||||
[2024-09-09 15:39:27] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-09-09 15:39:27] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2024-09-09 15:39:27] 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server." 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server. at Unknown:0)"} []
|
||||
[2024-09-09 15:39:27] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-09-09 15:40:03] 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://lulandia.pl/iadmin/index.php/improve/modules/alerts/count?_token=-No7fkmC-t7hBSKL-16vjpoRw2QgPJu0lLPOW_m6gUE","method":"GET"} []
|
||||
[2024-09-09 15:40:03] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-09-09 15:40:03] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2024-09-09 15:40:04] 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server." 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server. at Unknown:0)"} []
|
||||
[2024-09-09 15:40:04] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-09-09 15:48:41] request.CRITICAL: Uncaught PHP Exception SmartyException: "Unable to load template 'file:|/home/admin/domains/drmaterac.pl/public_html/iadmin/themes/default/template/ApGeneral.tpl|'" at /home/admin/domains/drmaterac.pl/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php line 195 {"exception":"[object] (SmartyException(code: 0): Unable to load template 'file:|/home/admin/domains/drmaterac.pl/public_html/iadmin/themes/default/template/ApGeneral.tpl|' at /home/admin/domains/drmaterac.pl/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:195)"} []
|
||||
[2024-09-10 10:30:27] request.CRITICAL: Uncaught PHP Exception SmartyException: "Unable to load template 'file:|/home/admin/domains/drmaterac.pl/public_html/iadmin/themes/default/template/ApGeneral.tpl|'" at /home/admin/domains/drmaterac.pl/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php line 195 {"exception":"[object] (SmartyException(code: 0): Unable to load template 'file:|/home/admin/domains/drmaterac.pl/public_html/iadmin/themes/default/template/ApGeneral.tpl|' at /home/admin/domains/drmaterac.pl/public_html/vendor/smarty/smarty/libs/sysplugins/smarty_internal_template.php:195)"} []
|
||||
[2024-09-10 11:34:10] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"31088","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/31088?_token=og-IN6Q_9tRE4sCyC7NpstHqAzXseydpwkxrX8mlAHU","method":"POST"} []
|
||||
[2024-09-10 11:34:10] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-09-10 11:34:10] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-09-10 11:34:10] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-09-10 11:34:10] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-09-12 12:21:41] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"34529","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/34529?_token=G-_SxXG4-evybBk5UKJIxdOL5SajarPg__BVhDLniNk","method":"POST"} []
|
||||
[2024-09-12 12:21:41] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-09-12 12:21:41] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-09-12 12:21:42] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-09-12 12:21:42] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-09-12 13:51:22] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"34530","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/34530?_token=G-_SxXG4-evybBk5UKJIxdOL5SajarPg__BVhDLniNk","method":"POST"} []
|
||||
[2024-09-12 13:51:22] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-09-12 13:51:22] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-09-12 13:51:23] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-09-12 13:51:23] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-09-12 14:12:22] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"34529","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/34529?_token=G-_SxXG4-evybBk5UKJIxdOL5SajarPg__BVhDLniNk","method":"POST"} []
|
||||
[2024-09-12 14:12:22] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-09-12 14:12:22] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-09-12 14:12:22] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-09-12 14:12:22] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-09-16 12:28:26] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"34523","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/34523?_token=qr8lcVjzVODg6il_N5rakdsmpP3hIPdJ2No8cbqeCsA","method":"POST"} []
|
||||
[2024-09-16 12:28:26] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-09-16 12:28:26] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-09-16 12:28:26] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-09-16 12:28:26] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-09-16 12:29:19] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"34524","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/34524?_token=qr8lcVjzVODg6il_N5rakdsmpP3hIPdJ2No8cbqeCsA","method":"POST"} []
|
||||
[2024-09-16 12:29:19] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-09-16 12:29:19] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-09-16 12:29:19] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-09-16 12:29:19] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-09-17 11:29: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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server." 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server. at Unknown:0)"} []
|
||||
[2024-09-18 10:26:11] 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://lulandia.pl/iadmin/index.php/improve/modules/alerts/count?_token=tTz2U5tFAqsdkMjcqK6RzjpOd9t2-pk3_bbfRfGv7pI","method":"GET"} []
|
||||
[2024-09-18 10:26:11] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-09-18 10:26:11] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2024-09-18 10:26:12] 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server." 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server. at Unknown:0)"} []
|
||||
[2024-09-18 10:26:12] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-09-19 10:20:47] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"32241","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/32241?_token=RBZlcfocxnP7TONVXcgSZs6xnCA_I4S9j8ImUDlGGrY","method":"POST"} []
|
||||
[2024-09-19 10:20:47] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-09-19 10:20:47] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-09-19 10:20:48] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-09-19 10:20:48] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-09-24 09:06:02] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"34417","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/34417?_token=1QS8AOpMw24HY-EKtOUH8v1oF94TCUIjZGzIMv22BXU","method":"POST"} []
|
||||
[2024-09-24 09:06:02] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-09-24 09:06:02] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-09-24 09:06:02] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-09-24 09:06:02] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-09-25 14:05:58] 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server." 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server. at Unknown:0)"} []
|
||||
[2024-09-26 10:15:36] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"34914","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/34914?_token=OFcgApgU82keIrKXHjoaoPcNUYFmp3uEl862mNK6J6o","method":"POST"} []
|
||||
[2024-09-26 10:15:36] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-09-26 10:15:36] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-09-26 10:15:36] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-09-26 10:15:36] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-10-08 23:16:11] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"14453","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/14453?_token=IiHN6YiKgOLgVirMfzCFisCh7dX-c9elvQJckZq_F_0","method":"POST"} []
|
||||
[2024-10-08 23:16:11] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-10-08 23:16:11] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-10-08 23:16:11] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-10-08 23:16:11] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-10-09 10:45:55] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"34921","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/34921?_token=Chb8T3xRKwQCF0lmcH1C-Axb7REVxCB28KmGn5kG7W4","method":"POST"} []
|
||||
[2024-10-09 10:45:55] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-10-09 10:45:55] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-10-09 10:45:55] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-10-09 10:45:55] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-10-09 13:56:20] request.INFO: Matched route "admin_modules_positions". {"route":"admin_modules_positions","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\Improve\\Design\\PositionsController::indexAction","_legacy_controller":"AdminModulesPositions","_legacy_link":"AdminModulesPositions","_route":"admin_modules_positions"},"request_uri":"https://lulandia.pl/iadmin/index.php/improve/design/modules/positions/?_token=JieGYJLrO2d0EVZq5Z6GXiyspINBVXRb-KsVSFAHH7Q","method":"GET"} []
|
||||
[2024-10-09 13:56:20] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-10-09 13:56:20] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2024-10-09 13:56:20] 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server." 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server. at Unknown:0)"} []
|
||||
[2024-10-09 13:56:20] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-10-10 10:06:19] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"34920","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/34920?_token=p6hMvPiGW46IovwwLJMXZeg_ZyoZ2cdbz8LHOURdoA0","method":"POST"} []
|
||||
[2024-10-10 10:06:19] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-10-10 10:06:19] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-10-10 10:06:20] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-10-10 10:06:20] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-10-10 10:25:56] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"34948","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/34948?_token=p6hMvPiGW46IovwwLJMXZeg_ZyoZ2cdbz8LHOURdoA0","method":"POST"} []
|
||||
[2024-10-10 10:25:56] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-10-10 10:25:56] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-10-10 10:25:56] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-10-10 10:25:56] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-10-10 10:45:50] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"34949","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/34949?_token=p6hMvPiGW46IovwwLJMXZeg_ZyoZ2cdbz8LHOURdoA0","method":"POST"} []
|
||||
[2024-10-10 10:45:50] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-10-10 10:45:50] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-10-10 10:45:51] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-10-10 10:45:51] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-10-10 10:59:52] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"34950","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/34950?_token=p6hMvPiGW46IovwwLJMXZeg_ZyoZ2cdbz8LHOURdoA0","method":"POST"} []
|
||||
[2024-10-10 10:59:52] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-10-10 10:59:52] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-10-10 10:59:54] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-10-10 10:59:54] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-10-10 11:06:53] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"34951","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/34951?_token=p6hMvPiGW46IovwwLJMXZeg_ZyoZ2cdbz8LHOURdoA0","method":"POST"} []
|
||||
[2024-10-10 11:06:53] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-10-10 11:06:53] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-10-10 11:06:54] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-10-10 11:06:54] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-10-10 13:43:56] 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://lulandia.pl/iadmin/index.php/improve/modules/alerts/count?_token=Fyvzhx1ZAqvsGW9Z1QfT9XyWXWyBIFj8ZTWeCiGLROU","method":"GET"} []
|
||||
[2024-10-10 13:43:56] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-10-10 13:43:56] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2024-10-10 13:43:57] 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server." 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server. at Unknown:0)"} []
|
||||
[2024-10-10 13:43:57] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-10-11 12:49:17] 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://lulandia.pl/iadmin/index.php/improve/modules/alerts/count?_token=aaKg3JbVTOmgOJbhQyCbe31H4uMWxmA47VGAEGamYrc","method":"GET"} []
|
||||
[2024-10-11 12:49:18] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-10-11 12:49:18] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2024-10-11 12:49:18] 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server." 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server. at Unknown:0)"} []
|
||||
[2024-10-11 12:49:18] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-10-12 11:01:15] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"31080","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/31080?_token=n452kT_S9iSMWUw6TOCmUDMI1JiI42j3D8O2CZhTIOM","method":"POST"} []
|
||||
[2024-10-12 11:01:15] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-10-12 11:01:15] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-10-12 11:01:15] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-10-12 11:01:15] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-10-12 11:30:54] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"34329","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/34329?_token=n452kT_S9iSMWUw6TOCmUDMI1JiI42j3D8O2CZhTIOM","method":"POST"} []
|
||||
[2024-10-12 11:30:54] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-10-12 11:30:54] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-10-12 11:30:55] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-10-12 11:30:55] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-10-12 12:26:36] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"14546","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/14546?_token=n452kT_S9iSMWUw6TOCmUDMI1JiI42j3D8O2CZhTIOM","method":"POST"} []
|
||||
[2024-10-12 12:26:36] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-10-12 12:26:36] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-10-12 12:26:36] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-10-12 12:26:36] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-10-12 12:58:08] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"34273","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/34273?_token=n452kT_S9iSMWUw6TOCmUDMI1JiI42j3D8O2CZhTIOM","method":"POST"} []
|
||||
[2024-10-12 12:58:08] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-10-12 12:58:08] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-10-12 12:58:08] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-10-12 12:58:08] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-10-14 07:25:11] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"16594","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/16594?_token=G_3aubhnhSg9Y954p8GVfJ2PA81WQ6nQ1utr2Zu2uGk","method":"POST"} []
|
||||
[2024-10-14 07:25:11] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-10-14 07:25:11] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-10-14 07:25:12] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-10-14 07:25:12] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-10-14 07:46:19] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"33359","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/33359?_token=G_3aubhnhSg9Y954p8GVfJ2PA81WQ6nQ1utr2Zu2uGk","method":"POST"} []
|
||||
[2024-10-14 07:46:19] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-10-14 07:46:19] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-10-14 07:46:19] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-10-14 07:46:19] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-10-14 08:48:47] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"15377","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/15377?_token=G_3aubhnhSg9Y954p8GVfJ2PA81WQ6nQ1utr2Zu2uGk","method":"POST"} []
|
||||
[2024-10-14 08:48:47] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-10-14 08:48:47] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-10-14 08:48:47] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-10-14 08:48:47] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-10-15 11:44:51] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"34531","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/34531?_token=-03HXolqrUyjGXbC_GSHmqmlXwpNl2rjTyjMxi73TsU","method":"POST"} []
|
||||
[2024-10-15 11:44:51] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-10-15 11:44:51] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-10-15 11:44:51] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-10-15 11:44:51] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-10-17 09:10:10] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"34968","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/34968?_token=kBRSF8MRHRm_VWjM3YKIhEick1SC1xPnFq0EzDS38l0","method":"POST"} []
|
||||
[2024-10-17 09:10:10] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-10-17 09:10:10] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2024-10-17 09:10:11] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-10-17 09:10:11] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-10-17 09:54:11] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"34970","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/34970?_token=kBRSF8MRHRm_VWjM3YKIhEick1SC1xPnFq0EzDS38l0","method":"POST"} []
|
||||
[2024-10-17 09:54:11] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-10-17 09:54:11] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-10-17 09:54:11] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-10-17 09:54:11] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-10-17 12:06:46] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"34968","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/34968?_token=kBRSF8MRHRm_VWjM3YKIhEick1SC1xPnFq0EzDS38l0","method":"POST"} []
|
||||
[2024-10-17 12:06:46] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-10-17 12:06:46] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-10-17 12:06:46] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-10-17 12:06:46] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-10-17 12:26:11] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"34972","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/34972?_token=kBRSF8MRHRm_VWjM3YKIhEick1SC1xPnFq0EzDS38l0","method":"POST"} []
|
||||
[2024-10-17 12:26:11] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-10-17 12:26:11] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-10-17 12:26:11] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-10-17 12:26:11] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-10-22 13:15:57] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"34981","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/34981?_token=Ml1_onAVUyd-lxBqKhcMmyX0JJ9Znl5cC29s3B3-bsA","method":"POST"} []
|
||||
[2024-10-22 13:15:57] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-10-22 13:15:57] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-10-22 13:15:58] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-10-22 13:15:58] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-10-22 13:31:23] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"34981","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/34981?_token=Ml1_onAVUyd-lxBqKhcMmyX0JJ9Znl5cC29s3B3-bsA","method":"POST"} []
|
||||
[2024-10-22 13:31:23] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-10-22 13:31:23] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-10-22 13:31:23] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-10-22 13:31:23] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-07 09:05:19] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35035","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35035?_token=uM84AFs8l7-1evzQKmbz9wouwL1OH3-bHSmcdl_iEdI","method":"POST"} []
|
||||
[2024-11-07 09:05:19] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-07 09:05:19] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-07 09:05:19] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-07 09:05:19] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-07 10:50:46] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35035","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35035?_token=uM84AFs8l7-1evzQKmbz9wouwL1OH3-bHSmcdl_iEdI","method":"POST"} []
|
||||
[2024-11-07 10:50:46] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-07 10:50:46] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-07 10:50:47] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-07 10:50:47] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-08 11:11:28] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35040","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35040?_token=VbgYKGMsHtyKvfxEq_FWwEBjxMYfPs__VbnnxvJwCQ8","method":"POST"} []
|
||||
[2024-11-08 11:11:28] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-08 11:11:28] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-08 11:11:28] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-08 11:11:28] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-12 15:21:52] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35040","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35040?_token=w9D1RlArdgr05DaXrb4nz4MxZlF92QjS71MzzKVupns","method":"POST"} []
|
||||
[2024-11-12 15:21:52] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-12 15:21:53] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-12 15:21:53] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-12 15:21:53] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-13 09:48:26] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35040","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35040?_token=-Nz4RD9swweK5PcqFJmvg2NgOCA18TXpxOzDfaMLvJ0","method":"POST"} []
|
||||
[2024-11-13 09:48:26] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-13 09:48:26] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-13 09:48:26] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-13 09:48:26] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-13 10:09:53] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35046","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35046?_token=-Nz4RD9swweK5PcqFJmvg2NgOCA18TXpxOzDfaMLvJ0","method":"POST"} []
|
||||
[2024-11-13 10:09:53] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-13 10:09:53] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-13 10:09:54] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-13 10:09:54] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-13 11:00:11] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35047","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35047?_token=-Nz4RD9swweK5PcqFJmvg2NgOCA18TXpxOzDfaMLvJ0","method":"POST"} []
|
||||
[2024-11-13 11:00:11] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-13 11:00:11] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-13 11:00:12] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-13 11:00:12] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-13 11:43:06] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35048","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35048?_token=Qh0PIQJQaixcw96XwU2Xv7XcPS8UMWNG1PnL8BNCK7w","method":"POST"} []
|
||||
[2024-11-13 11:43:06] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-13 11:43:06] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-13 11:43:07] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-13 11:43:07] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-13 12:48:40] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35049","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35049?_token=Qh0PIQJQaixcw96XwU2Xv7XcPS8UMWNG1PnL8BNCK7w","method":"POST"} []
|
||||
[2024-11-13 12:48:40] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-13 12:48:40] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-13 12:48:40] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-13 12:48:40] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-13 13:34:21] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35051","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35051?_token=Qh0PIQJQaixcw96XwU2Xv7XcPS8UMWNG1PnL8BNCK7w","method":"POST"} []
|
||||
[2024-11-13 13:34:21] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-13 13:34:21] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-13 13:34:21] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-13 13:34:21] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-13 14:49:30] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35052","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35052?_token=Qh0PIQJQaixcw96XwU2Xv7XcPS8UMWNG1PnL8BNCK7w","method":"POST"} []
|
||||
[2024-11-13 14:49:30] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-13 14:49:30] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-13 14:49:30] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-13 14:49:30] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-13 14:49:33] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35052","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35052?_token=Qh0PIQJQaixcw96XwU2Xv7XcPS8UMWNG1PnL8BNCK7w","method":"POST"} []
|
||||
[2024-11-13 14:49:33] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-13 14:49:33] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-13 14:49:33] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-13 14:49:33] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-13 15:12:59] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35054","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35054?_token=Qh0PIQJQaixcw96XwU2Xv7XcPS8UMWNG1PnL8BNCK7w","method":"POST"} []
|
||||
[2024-11-13 15:12:59] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-13 15:12:59] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-13 15:12:59] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-13 15:12:59] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-14 10:08:21] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35055","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35055?_token=kPIo4FLq6Iw9qWd4Tc80W2x3iCRNY_3qeXae6gj3dy0","method":"POST"} []
|
||||
[2024-11-14 10:08:21] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-14 10:08:21] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-14 10:08:21] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-14 10:08:21] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-14 14:14:16] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35088","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35088?_token=1nO6xIXS11qIxHWSq7JXXdRJfstaZWVYPHmkH1598PU","method":"POST"} []
|
||||
[2024-11-14 14:14:16] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-14 14:14:16] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-14 14:14:16] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-14 14:14:16] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-14 14:54:33] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35090","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35090?_token=1nO6xIXS11qIxHWSq7JXXdRJfstaZWVYPHmkH1598PU","method":"POST"} []
|
||||
[2024-11-14 14:54:33] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-14 14:54:33] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-14 14:54:33] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-14 14:54:33] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-14 15:13:58] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35091","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35091?_token=1nO6xIXS11qIxHWSq7JXXdRJfstaZWVYPHmkH1598PU","method":"POST"} []
|
||||
[2024-11-14 15:13:58] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-14 15:13:58] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-14 15:13:58] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-14 15:13:58] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-15 10:26:41] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"31066","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/31066?_token=iflCbRgRkTqTHTt8VVpVGEFhCT0YG0MG0VFGVfXGdrs","method":"POST"} []
|
||||
[2024-11-15 10:26:41] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-15 10:26:41] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-15 10:26:42] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-15 10:26:42] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-15 11:18:55] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35092","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35092?_token=bslNVMayMMbdNnPXXp5Z5WRkTHONvG6uJ-aGLhW4LfE","method":"POST"} []
|
||||
[2024-11-15 11:18:55] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-15 11:18:55] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-15 11:18:56] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-15 11:18:56] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-15 14:46:47] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35099","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35099?_token=bslNVMayMMbdNnPXXp5Z5WRkTHONvG6uJ-aGLhW4LfE","method":"POST"} []
|
||||
[2024-11-15 14:46:47] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-15 14:46:47] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-15 14:46:48] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-15 14:46:48] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-15 15:01:32] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35100","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35100?_token=bslNVMayMMbdNnPXXp5Z5WRkTHONvG6uJ-aGLhW4LfE","method":"POST"} []
|
||||
[2024-11-15 15:01:32] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-15 15:01:32] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-15 15:01:33] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-15 15:01:33] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-15 15:11:08] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35101","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35101?_token=bslNVMayMMbdNnPXXp5Z5WRkTHONvG6uJ-aGLhW4LfE","method":"POST"} []
|
||||
[2024-11-15 15:11:08] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-15 15:11:08] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-15 15:11:08] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-15 15:11:08] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-19 09:50:04] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35102","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35102?_token=3tUeINRHNQFK06cnf6HTrRKy765nZCPt4dyUjUfNiDw","method":"POST"} []
|
||||
[2024-11-19 09:50:04] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-19 09:50:04] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-19 09:50:04] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-19 09:50:04] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-19 10:19:21] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35110","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35110?_token=3tUeINRHNQFK06cnf6HTrRKy765nZCPt4dyUjUfNiDw","method":"POST"} []
|
||||
[2024-11-19 10:19:21] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-19 10:19:21] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-19 10:19:21] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-19 10:19:21] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-19 10:49:24] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35111","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35111?_token=3tUeINRHNQFK06cnf6HTrRKy765nZCPt4dyUjUfNiDw","method":"POST"} []
|
||||
[2024-11-19 10:49:24] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-19 10:49:24] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-19 10:49:24] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-19 10:49:25] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-19 10:49:50] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35111","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35111?_token=3tUeINRHNQFK06cnf6HTrRKy765nZCPt4dyUjUfNiDw","method":"POST"} []
|
||||
[2024-11-19 10:49:50] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-19 10:49:50] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-19 10:49:50] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-19 10:49:50] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-19 10:50:26] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35111","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35111?_token=3tUeINRHNQFK06cnf6HTrRKy765nZCPt4dyUjUfNiDw","method":"POST"} []
|
||||
[2024-11-19 10:50:26] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-19 10:50:26] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-19 10:50:27] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-19 10:50:27] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-19 10:50:38] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35110","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35110?_token=3tUeINRHNQFK06cnf6HTrRKy765nZCPt4dyUjUfNiDw","method":"POST"} []
|
||||
[2024-11-19 10:50:38] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-19 10:50:38] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-19 10:50:38] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-19 10:50:38] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-19 10:51:20] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35110","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35110?_token=3tUeINRHNQFK06cnf6HTrRKy765nZCPt4dyUjUfNiDw","method":"POST"} []
|
||||
[2024-11-19 10:51:20] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-19 10:51:20] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-19 10:51:20] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-19 10:51:21] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-19 10:51:24] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35110","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35110?_token=3tUeINRHNQFK06cnf6HTrRKy765nZCPt4dyUjUfNiDw","method":"POST"} []
|
||||
[2024-11-19 10:51:24] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-19 10:51:24] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-19 10:51:24] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-19 10:51:24] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-19 14:51:29] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35116","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35116?_token=3tUeINRHNQFK06cnf6HTrRKy765nZCPt4dyUjUfNiDw","method":"POST"} []
|
||||
[2024-11-19 14:51:29] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-19 14:51:29] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-19 14:51:29] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-19 14:51:29] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-21 12:43:07] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35124","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35124?_token=EZx0zhKPQw1EmnR2cBPdbZAJnvvZbxbgOSMU2KAxaxU","method":"POST"} []
|
||||
[2024-11-21 12:43:07] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-21 12:43:07] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-21 12:43:08] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-21 12:43:08] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-21 13:04:13] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35125","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35125?_token=EZx0zhKPQw1EmnR2cBPdbZAJnvvZbxbgOSMU2KAxaxU","method":"POST"} []
|
||||
[2024-11-21 13:04:13] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-21 13:04:13] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-21 13:04:14] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-21 13:04:14] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-21 13:22:15] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35126","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35126?_token=EZx0zhKPQw1EmnR2cBPdbZAJnvvZbxbgOSMU2KAxaxU","method":"POST"} []
|
||||
[2024-11-21 13:22:15] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-21 13:22:15] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-21 13:22:15] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-21 13:22:15] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-21 13:58:48] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35127","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35127?_token=EZx0zhKPQw1EmnR2cBPdbZAJnvvZbxbgOSMU2KAxaxU","method":"POST"} []
|
||||
[2024-11-21 13:58:48] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-21 13:58:48] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-21 13:58:48] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-21 13:58:48] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-25 14:35:28] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35128","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35128?_token=SblJgbYrnW89EhNQR3hIeRSuhpmnU1PMYCTFYvx57BY","method":"POST"} []
|
||||
[2024-11-25 14:35:28] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-25 14:35:28] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-25 14:35:29] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-25 14:35:29] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-25 14:53:39] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35130","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35130?_token=SblJgbYrnW89EhNQR3hIeRSuhpmnU1PMYCTFYvx57BY","method":"POST"} []
|
||||
[2024-11-25 14:53:39] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-25 14:53:39] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-25 14:53:39] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-25 14:53:39] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-25 15:03:41] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35131","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35131?_token=SblJgbYrnW89EhNQR3hIeRSuhpmnU1PMYCTFYvx57BY","method":"POST"} []
|
||||
[2024-11-25 15:03:41] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-25 15:03:41] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-25 15:03:41] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-25 15:03:41] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-25 15:20:06] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35132","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35132?_token=SblJgbYrnW89EhNQR3hIeRSuhpmnU1PMYCTFYvx57BY","method":"POST"} []
|
||||
[2024-11-25 15:20:06] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-25 15:20:06] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-25 15:20:07] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-25 15:20:07] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-26 10:47:19] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35133","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35133?_token=ewvUz9VGvxNJStpvpyWAkqWvvqg7xx9ACwk-VJcpm9w","method":"POST"} []
|
||||
[2024-11-26 10:47:19] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-26 10:47:19] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-26 10:47:19] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-26 10:47:19] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-26 11:40:01] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35135","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35135?_token=ewvUz9VGvxNJStpvpyWAkqWvvqg7xx9ACwk-VJcpm9w","method":"POST"} []
|
||||
[2024-11-26 11:40:01] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-26 11:40:01] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-26 11:40:02] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-26 11:40:02] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-26 12:32:54] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35136","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35136?_token=ewvUz9VGvxNJStpvpyWAkqWvvqg7xx9ACwk-VJcpm9w","method":"POST"} []
|
||||
[2024-11-26 12:32:54] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-26 12:32:54] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-26 12:32:54] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-26 12:32:54] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-26 15:32:54] request.INFO: Matched route "admin_specific_price_update". {"route":"admin_specific_price_update","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\SpecificPriceController::updateAction","idSpecificPrice":"47529","_route":"admin_specific_price_update"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/specific-prices/update/47529/?_token=1rNJ2gGYeNrJweV0aGKFJiuR43BRgVBw6CKrVI12ccQ","method":"POST"} []
|
||||
[2024-11-26 15:32:54] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-26 15:32:54] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-26 15:32:54] request.CRITICAL: Uncaught PHP Exception InvalidArgumentException: "Invalid argument: "50," cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/src/PrestaShopBundle/Utils/FloatParser.php line 107 {"exception":"[object] (InvalidArgumentException(code: 0): Invalid argument: \"50,\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/src/PrestaShopBundle/Utils/FloatParser.php:107)"} []
|
||||
[2024-11-26 15:32:54] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-28 13:58:36] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"9149","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/9149?_token=_FtUy1e35vXMQKiooCO7elbzpQBiw1CQYBE8pQNz6DY","method":"POST"} []
|
||||
[2024-11-28 13:58:36] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-28 13:58:36] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-28 13:58:37] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-28 13:58:37] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-28 13:59:01] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"9149","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/9149?_token=_FtUy1e35vXMQKiooCO7elbzpQBiw1CQYBE8pQNz6DY","method":"POST"} []
|
||||
[2024-11-28 13:59:01] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-28 13:59:01] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-28 13:59:01] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-28 13:59:01] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-28 14:26:25] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"11002","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/11002?_token=_FtUy1e35vXMQKiooCO7elbzpQBiw1CQYBE8pQNz6DY","method":"POST"} []
|
||||
[2024-11-28 14:26:25] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-28 14:26:25] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-28 14:26:25] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-28 14:26:25] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-28 14:41:26] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"9148","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/9148?_token=_FtUy1e35vXMQKiooCO7elbzpQBiw1CQYBE8pQNz6DY","method":"POST"} []
|
||||
[2024-11-28 14:41:26] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-28 14:41:26] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-28 14:41:26] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-28 14:41:26] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-28 14:59:22] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"9143","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/9143?_token=_FtUy1e35vXMQKiooCO7elbzpQBiw1CQYBE8pQNz6DY","method":"POST"} []
|
||||
[2024-11-28 14:59:22] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-28 14:59:22] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-28 14:59:23] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-28 14:59:23] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-29 18:51:47] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"14529","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/14529?_token=RZFT1VuK1GOu8hrQSjRCFoarBrAI1zC7i5D9kO1Yqrk","method":"POST"} []
|
||||
[2024-11-29 18:51:47] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-29 18:51:47] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-29 18:51:47] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-29 18:51:47] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-29 18:53:10] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"14529","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/14529?_token=RZFT1VuK1GOu8hrQSjRCFoarBrAI1zC7i5D9kO1Yqrk","method":"POST"} []
|
||||
[2024-11-29 18:53:10] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-29 18:53:10] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-11-29 18:53:10] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-29 18:53:10] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-29 23:08:34] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"23647","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/23647?_token=uGhbyIv9mUMaWdyYAaRGB8muH4FiZptSIiCWtYnFQR8","method":"POST"} []
|
||||
[2024-11-29 23:08:34] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-29 23:08:34] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2024-11-29 23:08:35] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-29 23:08:35] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-30 08:52:52] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"23652","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/23652?_token=XTolaTRCoZQd65te-dhjHgs4Zao3cVja-CKnqTHM2YQ","method":"POST"} []
|
||||
[2024-11-30 08:52:52] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-30 08:52:52] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2024-11-30 08:52:53] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-30 08:52:53] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-30 09:22:58] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"23651","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/23651?_token=XTolaTRCoZQd65te-dhjHgs4Zao3cVja-CKnqTHM2YQ","method":"POST"} []
|
||||
[2024-11-30 09:22:58] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-30 09:22:58] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2024-11-30 09:22:59] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-30 09:22:59] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-30 10:18:40] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"9148","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/9148?_token=XTolaTRCoZQd65te-dhjHgs4Zao3cVja-CKnqTHM2YQ","method":"POST"} []
|
||||
[2024-11-30 10:18:40] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-30 10:18:40] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2024-11-30 10:18:41] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-30 10:18:41] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-11-30 18:55:29] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"11003","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/11003?_token=SQzD7oprFy3Cp1oA1zR8CjReOZTadSZKCNvYiRkOij0","method":"POST"} []
|
||||
[2024-11-30 18:55:29] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-11-30 18:55:29] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2024-11-30 18:55:29] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-11-30 18:55:29] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-12-03 10:15:46] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"9143","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/9143?_token=mVlVGohG4gtwGMQdNVn55bUnD6JrX4erKL3eSL_hncs","method":"POST"} []
|
||||
[2024-12-03 10:15:46] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-12-03 10:15:46] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2024-12-03 10:15:46] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-12-03 10:15:46] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-12-03 11:50:10] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"15440","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/15440?_token=1ArExs3jcOLp1JC-UAchs3ymEPW2BhZs5MF-Z-ppuzI","method":"POST"} []
|
||||
[2024-12-03 11:50:10] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-12-03 11:50:10] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2024-12-03 11:50:10] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-12-03 11:50:10] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-12-03 11:55:54] 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://lulandia.pl/iadmin/index.php/improve/modules/alerts/count?_token=ZFWQBFAVE7PyBU6ODFicA6Ms9TbQ8Xim2SE4UXmPy_k","method":"GET"} []
|
||||
[2024-12-03 11:55:55] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-12-03 11:55:55] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2024-12-03 11:55:55] 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server." 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server. at Unknown:0)"} []
|
||||
[2024-12-03 11:55:55] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-12-03 12:04:21] 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://lulandia.pl/iadmin/index.php/improve/modules/alerts/count?_token=ZFWQBFAVE7PyBU6ODFicA6Ms9TbQ8Xim2SE4UXmPy_k","method":"GET"} []
|
||||
[2024-12-03 12:04:21] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-12-03 12:04:21] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2024-12-03 12:04:22] 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server." 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server. at Unknown:0)"} []
|
||||
[2024-12-03 12:04:22] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-12-03 12:07:00] 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://lulandia.pl/iadmin/index.php/improve/modules/alerts/count?_token=ZFWQBFAVE7PyBU6ODFicA6Ms9TbQ8Xim2SE4UXmPy_k","method":"GET"} []
|
||||
[2024-12-03 12:07:00] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-12-03 12:07:00] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2024-12-03 12:07:00] 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server." 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server. at Unknown:0)"} []
|
||||
[2024-12-03 12:07:00] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-12-03 12:08:01] 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://lulandia.pl/iadmin/index.php/improve/modules/alerts/count?_token=ZFWQBFAVE7PyBU6ODFicA6Ms9TbQ8Xim2SE4UXmPy_k","method":"GET"} []
|
||||
[2024-12-03 12:08:01] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-12-03 12:08:01] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2024-12-03 12:08:01] 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server." 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server. at Unknown:0)"} []
|
||||
[2024-12-03 12:08:01] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-12-03 16:21:19] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35034","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35034?_token=D-RJ0XvsAaHtcKYmg8LI0bZ2nIiD5LDrC2i7cM1K2eY","method":"POST"} []
|
||||
[2024-12-03 16:21:19] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-12-03 16:21:19] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-12-03 16:21:19] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-12-03 16:21:19] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-12-03 21:53:52] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"15826","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/15826?_token=yspcK4kSehRpuBAbLOlqI8yC8o5Hn9UweuPuU2HxYvM","method":"POST"} []
|
||||
[2024-12-03 21:53:52] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-12-03 21:53:52] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2024-12-03 21:53:52] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-12-03 21:53:52] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-12-03 22:50:29] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"23649","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/23649?_token=yspcK4kSehRpuBAbLOlqI8yC8o5Hn9UweuPuU2HxYvM","method":"POST"} []
|
||||
[2024-12-03 22:50:29] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-12-03 22:50:29] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2024-12-03 22:50:30] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-12-03 22:50:30] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-12-11 11:54:11] request.INFO: Matched route "admin_product_image_form". {"route":"admin_product_image_form","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductImageController::formAction","idImage":"7624","_route":"admin_product_image_form"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/image/form/7624?_token=F9DMfp4CglaD6IBPgjr3-2WkazvPq1zL82Jqlz-975c","method":"POST"} []
|
||||
[2024-12-11 11:54:11] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-12-11 11:54:11] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2024-12-11 11:54:11] request.CRITICAL: Uncaught PHP Exception PrestaShopException: "Właściwość Image->id_product jest pusta." at /home/admin/domains/drmaterac.pl/public_html/classes/ObjectModel.php line 984 {"exception":"[object] (PrestaShopException(code: 0): Właściwość Image->id_product jest pusta. at /home/admin/domains/drmaterac.pl/public_html/classes/ObjectModel.php:984)"} []
|
||||
[2024-12-11 11:54:11] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-12-11 11:54:43] request.INFO: Matched route "admin_product_image_form". {"route":"admin_product_image_form","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductImageController::formAction","idImage":"7624","_route":"admin_product_image_form"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/image/form/7624?_token=F9DMfp4CglaD6IBPgjr3-2WkazvPq1zL82Jqlz-975c","method":"POST"} []
|
||||
[2024-12-11 11:54:43] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-12-11 11:54:43] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2024-12-11 11:54:43] request.CRITICAL: Uncaught PHP Exception PrestaShopException: "Właściwość Image->id_product jest pusta." at /home/admin/domains/drmaterac.pl/public_html/classes/ObjectModel.php line 984 {"exception":"[object] (PrestaShopException(code: 0): Właściwość Image->id_product jest pusta. at /home/admin/domains/drmaterac.pl/public_html/classes/ObjectModel.php:984)"} []
|
||||
[2024-12-11 11:54:43] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-12-14 22:04:04] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"34350","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/34350?_token=98xjDQybICm2hctJkxU3RDL2DV-ymYkqytVbfp_FVOU","method":"POST"} []
|
||||
[2024-12-14 22:04:04] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-12-14 22:04:04] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2024-12-14 22:04:04] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-12-14 22:04:04] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-12-16 09:41:50] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"34471","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/34471?_token=iE-vqHAfaBw4V7lnNxYfI4jR7_J8MfX1ciWZZ4xcV3w","method":"POST"} []
|
||||
[2024-12-16 09:41:50] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-12-16 09:41:50] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2024-12-16 09:41:50] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-12-16 09:41:50] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-12-16 10:20:32] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"15405","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/15405?_token=iE-vqHAfaBw4V7lnNxYfI4jR7_J8MfX1ciWZZ4xcV3w","method":"POST"} []
|
||||
[2024-12-16 10:20:32] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-12-16 10:20:32] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2024-12-16 10:20:32] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-12-16 10:20:32] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-12-17 08:54:48] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\FatalThrowableError: "Call to a member function getProductsWithNoResponsiblePerson() on null" at /home/admin/domains/drmaterac.pl/public_html/modules/x13gpsr/src/php71/GPSRModuleAdminControllerCustomList.php line 0 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\FatalThrowableError(code: 0): Call to a member function getProductsWithNoResponsiblePerson() on null at /home/admin/domains/drmaterac.pl/public_html/modules/x13gpsr/src/php71/GPSRModuleAdminControllerCustomList.php:0)"} []
|
||||
[2024-12-19 12:54:03] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35040","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35040?_token=zeneDjcIjPg9_vA69642YbPm-Hd9uo51bNki8fArQsU","method":"POST"} []
|
||||
[2024-12-19 12:54:03] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-12-19 12:54:03] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2024-12-19 12:54:03] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-12-19 12:54:03] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-12-23 14:24:10] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35024","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35024?_token=O7Zbo1YDoNwG6JWRIcUmEx3rNeq2UZzi1VyGLznIGVk","method":"POST"} []
|
||||
[2024-12-23 14:24:10] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-12-23 14:24:10] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-12-23 14:24:10] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-12-23 14:24:10] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-12-23 14:24:17] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35024","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35024?_token=O7Zbo1YDoNwG6JWRIcUmEx3rNeq2UZzi1VyGLznIGVk","method":"POST"} []
|
||||
[2024-12-23 14:24:17] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-12-23 14:24:17] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-12-23 14:24:18] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-12-23 14:24:18] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-12-27 14:20:54] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35035","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35035?_token=wFi_n7rw6Fv0oE6RZlUp3OI_-gCPM0ZBHEs7KWyzVZg","method":"POST"} []
|
||||
[2024-12-27 14:20:55] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-12-27 14:20:55] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-12-27 14:20:55] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-12-27 14:20:55] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-12-31 10:24:51] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35033","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35033?_token=--IvnOQlQE2fpK0q9-vSw1clgv3PZkuKS52RkX3BoGY","method":"POST"} []
|
||||
[2024-12-31 10:24:51] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-12-31 10:24:51] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-12-31 10:24:52] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-12-31 10:24:52] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-12-31 11:50:05] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"12803","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/12803?_token=lqnHupYLru-ZaB6KYcdGopYkKkYYFDq4HFuEo7qBCI0","method":"POST"} []
|
||||
[2024-12-31 11:50:05] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-12-31 11:50:05] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-12-31 11:50:05] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-12-31 11:50:06] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-12-31 12:12:42] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35284","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35284?_token=BPTg4o7gHtu0pp0zsccut0J7XcaY977LQUXQhJBxMMA","method":"POST"} []
|
||||
[2024-12-31 12:12:42] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-12-31 12:12:42] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-12-31 12:12:43] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-12-31 12:12:43] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-12-31 12:13:30] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35286","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35286?_token=BPTg4o7gHtu0pp0zsccut0J7XcaY977LQUXQhJBxMMA","method":"POST"} []
|
||||
[2024-12-31 12:13:30] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-12-31 12:13:30] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-12-31 12:13:30] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-12-31 12:13:30] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2024-12-31 12:39:07] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35286","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35286?_token=BPTg4o7gHtu0pp0zsccut0J7XcaY977LQUXQhJBxMMA","method":"POST"} []
|
||||
[2024-12-31 12:39:07] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2024-12-31 12:39:07] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2024-12-31 12:39:07] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2024-12-31 12:39:07] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2025-01-03 22:08:23] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"35307","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/35307?_token=XtsiGkIRAXtkGBPYN2xYybCfA8jmi-dr-aKeQqj1wc4","method":"POST"} []
|
||||
[2025-01-03 22:08:23] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2025-01-03 22:08:23] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2025-01-03 22:08:23] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2025-01-03 22:08:23] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2025-01-04 15:34:04] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"33433","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/33433?_token=HlqsIcqoewaSkrRNewNCyjgUwv7g54bus3xwacxX8n8","method":"POST"} []
|
||||
[2025-01-04 15:34:04] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2025-01-04 15:34:04] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2025-01-04 15:34:05] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2025-01-04 15:34:05] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2025-01-04 15:34:12] request.INFO: Matched route "admin_product_unit_action". {"route":"admin_product_unit_action","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\ProductController::unitAction","action":"duplicate","id":"33433","_route":"admin_product_unit_action"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/unit/duplicate/33433?_token=HlqsIcqoewaSkrRNewNCyjgUwv7g54bus3xwacxX8n8","method":"POST"} []
|
||||
[2025-01-04 15:34:12] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2025-01-04 15:34:12] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"sklep@drmaterac.pl"} []
|
||||
[2025-01-04 15:34:12] request.CRITICAL: Uncaught PHP Exception Exception: "An error occurred while creating an object." at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php line 223 {"exception":"[object] (Exception(code: 5009): An error occurred while creating an object. at /home/admin/domains/drmaterac.pl/public_html/src/Adapter/Product/AdminProductDataUpdater.php:223)"} []
|
||||
[2025-01-04 15:34:12] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2025-01-07 10:32:54] 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server." 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server. at Unknown:0)"} []
|
||||
[2025-01-07 11:19:41] request.INFO: Matched route "admin_combination_generate_form". {"route":"admin_combination_generate_form","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\CombinationController::generateCombinationFormAction","combinationIds":"45337-45338-45339-45340","_route":"admin_combination_generate_form"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/combinations/form/45337-45338-45339-45340?_token=jtUnhqFC5CfDWfjjLdngPy53w_GZ120Ir_JVYih51DY","method":"GET"} []
|
||||
[2025-01-07 11:19:41] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2025-01-07 11:19:41] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2025-01-07 11:19:41] request.CRITICAL: Uncaught PHP Exception InvalidArgumentException: """ cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Number.php line 466 {"exception":"[object] (InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Number.php:466)"} []
|
||||
[2025-01-07 11:19:41] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2025-01-07 11:20:30] request.INFO: Matched route "admin_combination_generate_form". {"route":"admin_combination_generate_form","route_parameters":{"_controller":"PrestaShopBundle\\Controller\\Admin\\CombinationController::generateCombinationFormAction","combinationIds":"45337-45338-45339-45340","_route":"admin_combination_generate_form"},"request_uri":"https://drmaterac.pl/iadmin/index.php/sell/catalog/products/combinations/form/45337-45338-45339-45340?_token=jtUnhqFC5CfDWfjjLdngPy53w_GZ120Ir_JVYih51DY","method":"GET"} []
|
||||
[2025-01-07 11:20:30] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2025-01-07 11:20:30] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2025-01-07 11:20:30] request.CRITICAL: Uncaught PHP Exception InvalidArgumentException: """ cannot be interpreted as a number" at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Number.php line 466 {"exception":"[object] (InvalidArgumentException(code: 0): \"\" cannot be interpreted as a number at /home/admin/domains/drmaterac.pl/public_html/vendor/prestashop/decimal/src/Number.php:466)"} []
|
||||
[2025-01-07 11:20:30] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2025-01-14 13:10:15] 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://lulandia.pl/iadmin/index.php/improve/modules/alerts/count?_token=QJ9xAeeGQZJU32NuRmGriuBpVpbcG15xze3dW3QHbGA","method":"GET"} []
|
||||
[2025-01-14 13:10:15] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2025-01-14 13:10:15] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2025-01-14 13:10:16] 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server." 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server. at Unknown:0)"} []
|
||||
[2025-01-14 13:10:16] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2025-01-14 13:10: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://lulandia.pl/iadmin/index.php/improve/modules/alerts/count?_token=QJ9xAeeGQZJU32NuRmGriuBpVpbcG15xze3dW3QHbGA","method":"GET"} []
|
||||
[2025-01-14 13:10:50] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2025-01-14 13:10:50] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2025-01-14 13:10:50] 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server." 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server. at Unknown:0)"} []
|
||||
[2025-01-14 13:10:50] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2025-01-16 13:12:46] 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://lulandia.pl/iadmin/index.php/improve/modules/alerts/count?_token=g1MnRyB2aotwV86JibjFbmo-ChlXN_r5TO8Efu53MmA","method":"GET"} []
|
||||
[2025-01-16 13:12:46] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2025-01-16 13:12:46] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2025-01-16 13:12:47] 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server." 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server. at Unknown:0)"} []
|
||||
[2025-01-16 13:12:47] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2025-01-16 13:12:59] 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://lulandia.pl/iadmin/index.php/improve/modules/alerts/count?_token=g1MnRyB2aotwV86JibjFbmo-ChlXN_r5TO8Efu53MmA","method":"GET"} []
|
||||
[2025-01-16 13:12:59] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2025-01-16 13:12:59] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2025-01-16 13:12:59] 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server." 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server. at Unknown:0)"} []
|
||||
[2025-01-16 13:12:59] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2025-01-16 13:20:17] 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://lulandia.pl/iadmin/index.php/improve/modules/alerts/count?_token=g1MnRyB2aotwV86JibjFbmo-ChlXN_r5TO8Efu53MmA","method":"GET"} []
|
||||
[2025-01-16 13:20:17] security.DEBUG: Read existing security token from the session. {"key":"_security_main","token_class":"Symfony\\Component\\Security\\Core\\Authentication\\Token\\UsernamePasswordToken"} []
|
||||
[2025-01-16 13:20:17] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"mci@drmaterac.pl"} []
|
||||
[2025-01-16 13:20:18] 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server." 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/x13linkrewrite/classes/x13LinkRewriteModel-71.php</b> requires a license file.<br>The license file <b>/home/admin/domains/drmaterac.pl/public_html/modules/x13linkrewrite/license_rewrite.txt</b> is not valid for this server. at Unknown:0)"} []
|
||||
[2025-01-16 13:20:18] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
|
||||
Reference in New Issue
Block a user