Refactor code structure for improved readability and maintainability
This commit is contained in:
9505
.vscode/ftp-kr.sync.cache.json
vendored
9505
.vscode/ftp-kr.sync.cache.json
vendored
File diff suppressed because it is too large
Load Diff
@@ -26,7 +26,7 @@
|
||||
|
||||
/* Debug only */
|
||||
if (!defined('_PS_MODE_DEV_')) {
|
||||
if ( $_SERVER['REMOTE_ADDR'] == '91.189.216.43' )
|
||||
if ( $_SERVER['REMOTE_ADDR'] == '83.24.94.72' )
|
||||
define('_PS_MODE_DEV_', false);
|
||||
else
|
||||
define('_PS_MODE_DEV_', false );
|
||||
|
||||
@@ -24,11 +24,11 @@ class CartController extends CartControllerCore
|
||||
{
|
||||
parent::postProcess();
|
||||
if(Tools::getIsset('addDiscount') && $this->errors && ($code = Tools::getValue('discount_name')) && Validate::isCleanHtml($code) && !CartRule::cartRuleExists($code)) {
|
||||
Module::getInstanceByName('ets_promotion')->addCartRule($this->errors,$code);
|
||||
Module::getInstanceByName('ets_promotion')->addCartRule($this->errors,$code);
|
||||
}
|
||||
if(Tools::isSubmit('deletePromotionDiscountRule') && ($id_ets_rule = Tools::getValue('deletePromotionDiscountRule')) && Validate::isUnsignedId($id_ets_rule) )
|
||||
{
|
||||
Module::getInstanceByName('ets_promotion')->deleteCartRule($id_ets_rule);
|
||||
Module::getInstanceByName('ets_promotion')->deleteCartRule($id_ets_rule);
|
||||
}
|
||||
}
|
||||
public function displayAjaxRefresh()
|
||||
|
||||
@@ -1,53 +0,0 @@
|
||||
<?php
|
||||
/**
|
||||
* Copyright ETS Software Technology Co., Ltd
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This file is not open source! Each license that you purchased is only available for 1 website only.
|
||||
* If you want to use this file on more websites (or projects), you need to purchase additional licenses.
|
||||
* You are not allowed to redistribute, resell, lease, license, sub-license or offer our resources to any third party.
|
||||
*
|
||||
* DISCLAIMER
|
||||
*
|
||||
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
||||
* versions in the future.
|
||||
*
|
||||
* @author ETS Software Technology Co., Ltd
|
||||
* @copyright ETS Software Technology Co., Ltd
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
*/
|
||||
|
||||
class CartController extends CartControllerCore
|
||||
{
|
||||
public function postProcess()
|
||||
{
|
||||
parent::postProcess();
|
||||
if(Tools::getIsset('addDiscount') && $this->errors && ($code = Tools::getValue('discount_name')) && Validate::isCleanHtml($code) && !CartRule::cartRuleExists($code)) {
|
||||
Module::getInstanceByName('ets_promotion')->addCartRule($this->errors,$code);
|
||||
}
|
||||
if(Tools::isSubmit('deletePromotionDiscountRule') && ($id_ets_rule = Tools::getValue('deletePromotionDiscountRule')) && Validate::isUnsignedId($id_ets_rule) )
|
||||
{
|
||||
Module::getInstanceByName('ets_promotion')->deleteCartRule($id_ets_rule);
|
||||
}
|
||||
}
|
||||
public function displayAjaxRefresh()
|
||||
{
|
||||
if (Configuration::isCatalogMode()) {
|
||||
return;
|
||||
}
|
||||
ob_end_clean();
|
||||
header('Content-Type: application/json');
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0');
|
||||
die(json_encode([
|
||||
'cart_detailed' => Module::isEnabled('ets_extraoptions') ? $this->context->smarty->fetch(_PS_MODULE_DIR_.'ets_extraoptions/views/templates/hook/checkout/cart-detailed.tpl'): $this->render('checkout/_partials/cart-detailed'),
|
||||
'cart_detailed_totals' => $this->render('checkout/_partials/cart-detailed-totals'),
|
||||
'cart_summary_items_subtotal' => $this->render('checkout/_partials/cart-summary-items-subtotal'),
|
||||
'cart_summary_subtotals_container' => $this->render('checkout/_partials/cart-summary-subtotals'),
|
||||
'cart_summary_totals' => $this->render('checkout/_partials/cart-summary-totals'),
|
||||
'cart_detailed_actions' => $this->render('checkout/_partials/cart-detailed-actions'),
|
||||
'cart_voucher' => $this->context->smarty->fetch(_PS_MODULE_DIR_.'ets_promotion/views/templates/hook/checkout/cart-voucher.tpl'),
|
||||
'cart_sumary_products' => $this->context->smarty->fetch(_PS_MODULE_DIR_.'ets_promotion/views/templates/hook/checkout/cart_sumary_products.tpl'),
|
||||
]));
|
||||
}
|
||||
}
|
||||
@@ -17,7 +17,7 @@
|
||||
* @copyright ETS Software Technology Co., Ltd
|
||||
* @license Valid for 1 website (or project) for each purchase of license
|
||||
*/
|
||||
|
||||
|
||||
class Cart extends CartCore
|
||||
{
|
||||
/*
|
||||
@@ -53,4 +53,4 @@ class Cart extends CartCore
|
||||
}
|
||||
return $total;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -28,11 +28,11 @@ class CartController extends CartControllerCore
|
||||
{
|
||||
parent::postProcess();
|
||||
if(Tools::getIsset('addDiscount') && $this->errors && ($code = Tools::getValue('discount_name')) && Validate::isCleanHtml($code) && !CartRule::cartRuleExists($code)) {
|
||||
Module::getInstanceByName('ets_promotion')->addCartRule($this->errors,$code);
|
||||
Module::getInstanceByName('ets_promotion')->addCartRule($this->errors,$code);
|
||||
}
|
||||
if(Tools::isSubmit('deletePromotionDiscountRule') && ($id_ets_rule = Tools::getValue('deletePromotionDiscountRule')) && Validate::isUnsignedId($id_ets_rule) )
|
||||
{
|
||||
Module::getInstanceByName('ets_promotion')->deleteCartRule($id_ets_rule);
|
||||
Module::getInstanceByName('ets_promotion')->deleteCartRule($id_ets_rule);
|
||||
}
|
||||
}
|
||||
/*
|
||||
|
||||
@@ -1099,3 +1099,101 @@ prestashop.on('updateCart', function (event) {
|
||||
// $a.replaceWith($span)
|
||||
// })
|
||||
// })
|
||||
|
||||
// document.addEventListener('DOMContentLoaded', function () {
|
||||
// // Działa na /zamówienie lub /order
|
||||
// var onOrder = document.body && (document.body.id === 'checkout' || /\/zam/i.test(location.pathname) || /\/order/i.test(location.pathname));
|
||||
// if (!onOrder) return;
|
||||
|
||||
// var STORAGE_KEY = 'redirectToDeliveryOnce';
|
||||
|
||||
// function cleanOrderUrl() {
|
||||
// return location.origin + location.pathname; // bez query i bez hash
|
||||
// }
|
||||
|
||||
// function openDeliveryStepInPlace() {
|
||||
// var step = document.querySelector('#checkout-delivery-step');
|
||||
// if (!step) return false;
|
||||
|
||||
// // zamknij inne kroki
|
||||
// document.querySelectorAll('.checkout-step').forEach(function(s){
|
||||
// s.classList.remove('-current');
|
||||
// s.setAttribute('aria-expanded','false');
|
||||
// var col = s.querySelector('.collapse');
|
||||
// if (col) col.classList.remove('show');
|
||||
// });
|
||||
|
||||
// // pokaż krok 3
|
||||
// step.classList.add('-current');
|
||||
// step.setAttribute('aria-expanded','true');
|
||||
// var col3 = step.querySelector('.collapse');
|
||||
// if (col3) col3.classList.add('show');
|
||||
|
||||
// var headerBtn = document.querySelector('[data-target="#checkout-delivery-step"], [href="#checkout-delivery-step"]');
|
||||
// if (headerBtn) headerBtn.setAttribute('aria-expanded','true');
|
||||
|
||||
// try { step.scrollIntoView({behavior:'smooth', block:'start'}); } catch(e){}
|
||||
// return true;
|
||||
// }
|
||||
|
||||
// // --- 1) Jeśli poprzednio dodaliśmy/wyczyściliśmy kupon, to po RELOAD otwórz krok 3 i wyczyść flagę
|
||||
// if (sessionStorage.getItem(STORAGE_KEY) === '1') {
|
||||
// sessionStorage.removeItem(STORAGE_KEY);
|
||||
// // ustaw hash tylko informacyjnie; nie będzie on użyty do „pchania” użytkownika
|
||||
// if (location.hash !== '#checkout-delivery-step') {
|
||||
// history.replaceState(null, '', cleanOrderUrl() + '#checkout-delivery-step');
|
||||
// }
|
||||
// // DOM w checkout często doskakuje dynamicznie — podejdźmy z kilkoma próbami
|
||||
// var tries = 0;
|
||||
// var iv = setInterval(function () {
|
||||
// if (openDeliveryStepInPlace() || ++tries > 30) clearInterval(iv);
|
||||
// }, 100);
|
||||
// }
|
||||
|
||||
// // --- 2) Jednorazowe oznaczenie intencji i RELOAD po akcji kuponu
|
||||
// function markAndReload() {
|
||||
// // Jeśli już zaznaczone, nie rób nic (eliminuje podwójny reload)
|
||||
// if (sessionStorage.getItem(STORAGE_KEY) === '1') return;
|
||||
// sessionStorage.setItem(STORAGE_KEY, '1');
|
||||
// // twardy reload na czysty URL (bez ?updatedTransaction i bez hash)
|
||||
// window.location.href = cleanOrderUrl();
|
||||
// }
|
||||
|
||||
// // 2a) Eventy PS (różne motywy wysyłają różne nazwy)
|
||||
// function onPsCartEvent(evt) {
|
||||
// var la = evt && evt.reason && evt.reason.linkAction ? String(evt.reason.linkAction) : '';
|
||||
// if (la === 'add-voucher' || la === 'remove-voucher') {
|
||||
// markAndReload();
|
||||
// }
|
||||
// }
|
||||
// if (window.prestashop && typeof prestashop.on === 'function') {
|
||||
// prestashop.on('updateCart', onPsCartEvent);
|
||||
// prestashop.on('updatedCart', onPsCartEvent);
|
||||
// }
|
||||
|
||||
// // 2b) Fallback: klik w przycisk dodawania/ usuwania kuponu (różne motywy)
|
||||
// document.addEventListener('click', function (e) {
|
||||
// var addBtn = e.target && e.target.closest('[data-link-action="add-voucher"], button[name="actionAddVoucher"], .js-add-voucher, #promo-code button, .cart-rule-add button');
|
||||
// var removeBtn = e.target && e.target.closest('[data-link-action="remove-voucher"], .js-remove-voucher, .cart-rule-remove button');
|
||||
// if (addBtn || removeBtn) {
|
||||
// // odrocz minimalnie, by nie zrywać natychmiast ajaxa/submitu (niektóre motywy i tak zrobią swój reload)
|
||||
// setTimeout(markAndReload, 50);
|
||||
// }
|
||||
// }, true);
|
||||
|
||||
// // 2c) Fallback: submit formularza kuponu (Enter w input)
|
||||
// document.addEventListener('submit', function (e) {
|
||||
// var form = e.target;
|
||||
// if (!form) return;
|
||||
// var isVoucherForm =
|
||||
// (form.action && (form.action.indexOf('/cart') !== -1 || form.action.indexOf('/order') !== -1)) &&
|
||||
// (form.querySelector('input[name="discount_name"], input[name="voucher_name"]') ||
|
||||
// form.querySelector('[data-link-action="add-voucher"]'));
|
||||
// if (isVoucherForm) {
|
||||
// setTimeout(markAndReload, 50);
|
||||
// }
|
||||
// }, true);
|
||||
|
||||
// // --- 3) ZERO wymuszania cofania przy normalnym przejściu do kroku 4.
|
||||
// // Celowo NIE ma tu hashchange ani ciągłego „pilnowania” kroku — po otwarciu kroku 3 flaga jest kasowana.
|
||||
// });
|
||||
1
var/logs/20250914_exception.log
Normal file
1
var/logs/20250914_exception.log
Normal file
@@ -0,0 +1 @@
|
||||
*ERROR* v1.7.8.11 2025/09/14 - 04:47:43: No template found for at line 68 in file classes/Smarty/TemplateFinder.php
|
||||
2
var/logs/20250915_exception.log
Normal file
2
var/logs/20250915_exception.log
Normal file
@@ -0,0 +1,2 @@
|
||||
*ERROR* v1.7.8.11 2025/09/15 - 04:42:47: Invalid product vars at line 174 in file classes/Link.php
|
||||
*ERROR* v1.7.8.11 2025/09/15 - 04:42:53: Invalid product vars at line 174 in file classes/Link.php
|
||||
@@ -923,3 +923,6 @@
|
||||
[2025-09-02 13:39:36] security.DEBUG: User was reloaded from a user provider. {"provider":"PrestaShopBundle\\Security\\Admin\\EmployeeProvider","username":"biuro@project-pro.pl"} []
|
||||
[2025-09-02 13:39:36] request.CRITICAL: Uncaught PHP Exception InvalidArgumentException: "The routing file "/home/admin/domains/drmaterac.pl/public_html/app/config/routing.yml" contains unsupported keys for "app_modules": "pshowsso.admin.config". Expected one of: "resource", "type", "prefix", "path", "host", "schemes", "methods", "defaults", "requirements", "options", "condition", "controller"." at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/Routing/Loader/YamlFileLoader.php line 206 {"exception":"[object] (InvalidArgumentException(code: 0): The routing file \"/home/admin/domains/drmaterac.pl/public_html/app/config/routing.yml\" contains unsupported keys for \"app_modules\": \"pshowsso.admin.config\". Expected one of: \"resource\", \"type\", \"prefix\", \"path\", \"host\", \"schemes\", \"methods\", \"defaults\", \"requirements\", \"options\", \"condition\", \"controller\". at /home/admin/domains/drmaterac.pl/public_html/vendor/symfony/symfony/src/Symfony/Component/Routing/Loader/YamlFileLoader.php:206)"} []
|
||||
[2025-09-02 13:39:36] security.DEBUG: Stored the security token in the session. {"key":"_security_main"} []
|
||||
[2025-09-15 23:18:26] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\FatalErrorException: "Core Error: <br>The encoded file <b>/home/admin/domains/drmaterac.pl/public_html/modules/pshowsso/src/Module.php</b> requires a license file.<br>The license file <b>.license.txt</b> has expired." at Unknown line 0 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\FatalErrorException(code: 0): Core Error: <br>The encoded file <b>/home/admin/domains/drmaterac.pl/public_html/modules/pshowsso/src/Module.php</b> requires a license file.<br>The license file <b>.license.txt</b> has expired. at Unknown:0)"} []
|
||||
[2025-09-15 23:18:33] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\FatalErrorException: "Core Error: <br>The encoded file <b>/home/admin/domains/drmaterac.pl/public_html/modules/pshowsso/src/Module.php</b> requires a license file.<br>The license file <b>.license.txt</b> has expired." at Unknown line 0 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\FatalErrorException(code: 0): Core Error: <br>The encoded file <b>/home/admin/domains/drmaterac.pl/public_html/modules/pshowsso/src/Module.php</b> requires a license file.<br>The license file <b>.license.txt</b> has expired. at Unknown:0)"} []
|
||||
[2025-09-15 23:18:40] request.CRITICAL: Uncaught PHP Exception Symfony\Component\Debug\Exception\FatalErrorException: "Core Error: <br>The encoded file <b>/home/admin/domains/drmaterac.pl/public_html/modules/pshowsso/src/Module.php</b> requires a license file.<br>The license file <b>.license.txt</b> has expired." at Unknown line 0 {"exception":"[object] (Symfony\\Component\\Debug\\Exception\\FatalErrorException(code: 0): Core Error: <br>The encoded file <b>/home/admin/domains/drmaterac.pl/public_html/modules/pshowsso/src/Module.php</b> requires a license file.<br>The license file <b>.license.txt</b> has expired. at Unknown:0)"} []
|
||||
|
||||
@@ -4795,3 +4795,324 @@
|
||||
[2025-09-07 21:10:14] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:10:14] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:10:14] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:11:22] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:11:23] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:11:23] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:11:24] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:11:24] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:11:24] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:11:26] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:11:26] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:11:26] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:11:40] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:11:40] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:11:40] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:11:50] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:11:50] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:11:50] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:12:18] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:12:18] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:12:18] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:14:15] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:14:15] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:14:15] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:14:16] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:14:16] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:14:16] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:14:49] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:14:49] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:14:49] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:16:46] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:16:46] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:16:46] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:16:49] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:16:49] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:16:49] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:16:49] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:16:49] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:16:49] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:16:49] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:16:49] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:16:49] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:16:49] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:16:49] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:16:49] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:17:01] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:17:02] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:17:02] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:17:10] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:17:10] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:17:10] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:17:13] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:17:13] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:17:13] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:17:14] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:17:14] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:17:14] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:17:27] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:17:27] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:17:27] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:17:34] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:17:34] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:17:34] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:17:59] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:17:59] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:17:59] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:18:00] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:18:00] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:18:00] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:18:13] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:18:14] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:18:14] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:18:18] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:18:18] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:18:18] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:18:22] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:18:22] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:18:22] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:18:54] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:18:54] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:18:54] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:19:56] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:19:56] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:19:56] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:20:06] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:20:07] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:20:07] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:20:17] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:20:17] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:20:17] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:20:25] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:20:25] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:20:25] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:20:26] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:20:26] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:20:26] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:21:16] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:21:16] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:21:16] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:21:17] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:21:17] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:21:17] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:21:18] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:21:18] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:21:18] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:21:24] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:21:24] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:21:24] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:22:18] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:22:18] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:22:18] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:22:19] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:22:19] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:22:19] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:23:22] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:23:22] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:23:22] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:23:25] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:23:26] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:23:26] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:23:56] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:23:56] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:23:56] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:23:57] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:23:57] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:23:57] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:24:13] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:24:14] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:24:14] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:24:20] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:24:20] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:24:20] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:27:26] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:27:26] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:27:26] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:28:20] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:28:20] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:28:20] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:28:20] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:28:20] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:28:20] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:28:20] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:28:21] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:28:21] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:29:15] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:29:15] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:29:15] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:30:22] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:30:22] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:30:22] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:30:23] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:30:23] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:30:23] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:36:05] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:36:05] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:36:05] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:36:09] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:36:09] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:36:09] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:36:09] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:36:09] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:36:09] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:36:09] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:36:09] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:36:09] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:36:09] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:36:09] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:36:09] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:36:45] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:36:45] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:36:45] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:37:00] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:37:00] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:37:00] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:37:23] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:37:23] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:37:23] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:37:24] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:37:24] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:37:24] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:38:02] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:38:02] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:38:02] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:39:14] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:39:14] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:39:14] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:39:14] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:39:15] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:39:15] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:40:36] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:40:36] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:40:36] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:43:17] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:43:17] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:43:17] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:43:17] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:43:17] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:43:17] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:43:59] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:44:00] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:44:00] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:50:26] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:50:26] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:50:26] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:50:27] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 21:50:27] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 21:50:27] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:00:31] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:00:31] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:00:31] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:03:17] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:03:17] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:03:17] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:03:19] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:03:20] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:03:20] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:03:22] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:03:22] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:03:22] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:03:22] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:03:22] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:03:22] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:03:22] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:03:22] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:03:22] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:03:22] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:03:22] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:03:22] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:03:37] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:03:37] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:03:37] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:03:39] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:03:39] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:03:39] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:03:39] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:03:39] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:03:39] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:03:39] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:03:39] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:03:39] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:03:39] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:03:39] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:03:39] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:03:46] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:03:46] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:03:46] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:03:46] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:03:46] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:03:46] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:03:46] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:03:46] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:03:46] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:03:46] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:03:46] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:03:46] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:04:16] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:04:16] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:04:16] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:04:16] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:04:16] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:04:16] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:04:16] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:04:16] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:04:16] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:04:16] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:04:16] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:04:16] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:04:25] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:04:25] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:04:25] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:04:53] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:04:53] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:04:53] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:05:40] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:05:40] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:05:40] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:05:54] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:05:54] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:05:54] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:06:19] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:06:19] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:06:19] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:06:41] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:06:41] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:06:41] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:08:23] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:08:23] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:08:23] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:08:24] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:08:24] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:08:24] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:15:16] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:15:17] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:15:17] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:15:17] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:15:17] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:15:17] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:23:18] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:23:19] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:23:19] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:23:19] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:23:19] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:23:19] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:30:34] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:30:34] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:30:34] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:30:34] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 22:30:35] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 22:30:35] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 23:02:14] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 23:02:14] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 23:02:14] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 23:02:15] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 23:02:15] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 23:02:15] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 23:15:16] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 23:15:16] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 23:15:16] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 23:29:47] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 23:29:47] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 23:29:47] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 23:41:25] ps_accounts.ERROR: PrestaShop\Module\PsAccounts\Repository\ConfigurationRepository::getShopUuidDateUpd: Configuration entry not found: PSX_UUID_V4|grp:|shop: [] []
|
||||
[2025-09-07 23:41:25] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
[2025-09-07 23:41:25] ps_accounts.ERROR: Unable to refresh shop token : 401 - invalid_client: Client authentication failed (e.g., unknown client, no client authentication included, or unsupported authentication method). [] []
|
||||
|
||||
7458
var/logs/ps_accounts-2025-09-08
Normal file
7458
var/logs/ps_accounts-2025-09-08
Normal file
File diff suppressed because it is too large
Load Diff
6702
var/logs/ps_accounts-2025-09-09
Normal file
6702
var/logs/ps_accounts-2025-09-09
Normal file
File diff suppressed because it is too large
Load Diff
7665
var/logs/ps_accounts-2025-09-10
Normal file
7665
var/logs/ps_accounts-2025-09-10
Normal file
File diff suppressed because it is too large
Load Diff
6333
var/logs/ps_accounts-2025-09-11
Normal file
6333
var/logs/ps_accounts-2025-09-11
Normal file
File diff suppressed because it is too large
Load Diff
7761
var/logs/ps_accounts-2025-09-12
Normal file
7761
var/logs/ps_accounts-2025-09-12
Normal file
File diff suppressed because it is too large
Load Diff
4737
var/logs/ps_accounts-2025-09-13
Normal file
4737
var/logs/ps_accounts-2025-09-13
Normal file
File diff suppressed because it is too large
Load Diff
5556
var/logs/ps_accounts-2025-09-14
Normal file
5556
var/logs/ps_accounts-2025-09-14
Normal file
File diff suppressed because it is too large
Load Diff
6135
var/logs/ps_accounts-2025-09-15
Normal file
6135
var/logs/ps_accounts-2025-09-15
Normal file
File diff suppressed because it is too large
Load Diff
5481
var/logs/ps_accounts-2025-09-16
Normal file
5481
var/logs/ps_accounts-2025-09-16
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user