

HenriBierman
Trusted Members-
Posts
39 -
Joined
-
Last visited
-
Days Won
2
Content Type
Profiles
Forums
Gallery
Downloads
Articles
Store
Blogs
Everything posted by HenriBierman
-
Thank you so much, you guys are Heroes.
-
For some reason it still kept the old info. You see, we ran a sale on Wuben Flashlights -40%, and some PCs is still showing this banner even though I disabled it. It also shows the cheaper prices of the sale, even though it ended. Its as if its not overriding the old Cache settings. You can see the screenshot.
-
Thank you, will it clear the existing settings of current browsers? Or will those settings needs to expire first?
-
Thank you so much. I re-generate this file. I also see this in the file, could this cause the problems, I am unsure which Module it refers too: <IfModule mod_expires.c> ExpiresActive On ExpiresByType image/gif "access plus 1 month" ExpiresByType image/jpeg "access plus 1 month" ExpiresByType image/png "access plus 1 month" ExpiresByType text/css "access plus 1 week" ExpiresByType text/javascript "access plus 1 week" ExpiresByType application/javascript "access plus 1 week" ExpiresByType application/x-javascript "access plus 1 week" ExpiresByType image/x-icon "access plus 1 year" ExpiresByType image/svg+xml "access plus 1 year" ExpiresByType image/vnd.microsoft.icon "access plus 1 year" ExpiresByType application/font-woff "access plus 1 year" ExpiresByType application/x-font-woff "access plus 1 year" ExpiresByType application/vnd.ms-fontobject "access plus 1 year" ExpiresByType font/opentype "access plus 1 year" ExpiresByType font/ttf "access plus 1 year" ExpiresByType font/otf "access plus 1 year" ExpiresByType application/x-font-ttf "access plus 1 year" ExpiresByType application/x-font-otf "access plus 1 year" </IfModule>
-
Thank you for your help. I have been searching almost everywhere trying to find this setting or module that could cause this. I even phone the hosting company, we have a dedi server. Do you know where else I can look for this?
-
Here is the screenshots from my performance page. I have changed so many things.. Trying to fix. But here is the current settings.
-
Thank you, but I am hoping to get this done automatically for an unaware new visitor trying to support us. This issue is a big thing for me.
-
Thank you for your help, Yes my website is running 30B 1.3.0, I also just checked, I do not believe I have any CDN running my website. Did it show like this on your side? I know we run CloudBric, do you think it could have this impact?
-
Hi All I need Professional help. My website is torchsa.com I seam to have a cache clearing problem, where the website seams to not clear cache on some PCs and mostly Apple computers or phones. (browser does not play a role) I have tried everything in my knowledge, and its becoming a pain. Like after we ran a sale and it ended, then the prices will stay there for a long time on some browsers, unless it ets cleared manually. Please help me, and what the cost will be to fix and monitor, if it re ocur? Thank you
-
Hi All I need some advice please. Which module can you recommend for ThirtyBees to enable Google Address autocomplete? Thank you in advance
-
Call to undefined method GuzzleHttp\Client::getAsync()
HenriBierman replied to HenriBierman's question in Updating thirty bees
-
Call to undefined method GuzzleHttp\Client::getAsync()
HenriBierman replied to HenriBierman's question in Updating thirty bees
I managed to find the module, but now Updater refuse to install. On top it says that it was installed, but it was not. -
Call to undefined method GuzzleHttp\Client::getAsync()
HenriBierman replied to HenriBierman's question in Updating thirty bees
Thank you so much, I will check this out. For some reason some modules wont uninstall or install either. -
Call to undefined method GuzzleHttp\Client::getAsync()
HenriBierman posted a question in Updating thirty bees
Hi All I hope you are doing better than me? I am trying to do an update and need to install the tbupdater, but when I install it, I get an error, and need to delete it in the bank end. Please help me resolve this? ThirtyBeesException Call to undefined method GuzzleHttp\Client::getAsync() in file modules/tbupdater/tbupdater.php at line 288 Source file: modules/tbupdater/tbupdater.php Stack trace 1. modules/tbupdater/tbupdater.php:393 source TbUpdater->checkForUpdates(arguments) 374: 375: return false; 376: } 377: 378: /** 379: * Get the cached info about modules 380: * 381: * @param string|null $locale IETF Locale 382: * If the locale does not exist it will 383: * fall back onto en-us 384: * 385: * @return array|bool|false|mixed 386: * 387: * @since 1.0.0 388: */ 389: public function getCachedModulesInfo($locale = null) 390: { 391: $modules = json_decode(@file_get_contents(__DIR__.'/cache/modules.json'), true); 392: if (!$modules) { 393: $modules = $this->checkForUpdates(true); 394: if (!$modules) { 395: return false; 396: } 397: } 398: 399: if ($locale) { 400: foreach ($modules as &$module) { 401: if (isset($module['displayName'][Tools::strtolower($locale)])) { 402: $module['displayName'] = $module['displayName'][Tools::strtolower($locale)]; 403: } elseif (isset($module['displayName']['en-us'])) { 2. classes/module/Module.php:1069 source TbUpdater->getCachedModulesInfo() 1050: $moduleCursor = $modulesNameToCursor[mb_strtolower($result['name'])]; 1051: $moduleCursor->id = (int) $result['id_module']; 1052: $moduleCursor->active = ($result['total'] == count($list)) ? 1 : 0; 1053: } 1054: } 1055: } 1056: 1057: // Get native and partner modules 1058: /** @var TbUpdater $updater */ 1059: $updater = Module::getInstanceByName('tbupdater'); 1060: $languageCode = str_replace('_', '-', mb_strtolower(Context::getContext()->language->language_code)); 1061: 1062: // This array gets filled with requested module images to download (key = module code, value = guzzle promise) 1063: $imagePromises = []; 1064: $guzzle = new \GuzzleHttp\Client([ 1065: 'verify' => _PS_TOOL_DIR_.'cacert.pem', 1066: 'timeout' => 20, 1067: ]); 1068: 1069: if (Validate::isLoadedObject($updater) && $modules = $updater->getCachedModulesInfo()) { 1070: foreach ($modules as $name => $module) { 1071: if (isset($modulesNameToCursor[mb_strtolower(strval($name))])) { 1072: $moduleFromList = $modulesNameToCursor[mb_strtolower(strval($name))]; 1073: if ($moduleFromList->author 1074: && $moduleFromList->author === $module['author'] 1075: && $moduleFromList->version 1076: && version_compare( 1077: $module['version'], 1078: $moduleFromList->version, 1079: '>' 3. controllers/admin/AdminModulesController.php:334 source ModuleCore::getModulesOnDisk(arguments) 315: ->from('tab_module_preference') 316: ->where('`id_employee` = '.(int) $this->employee) 317: ); 318: 319: foreach ($tabModulesPreferencesTmp as $i => $j) { 320: $tabModulesPreferences[$j['module']][] = $j['id_tab']; 321: } 322: 323: foreach ($modulesPreferencesTmp as $k => $v) { 324: if ($v['interest'] == null) { 325: unset($v['interest']); 326: } 327: if ($v['favorite'] == null) { 328: unset($v['favorite']); 329: } 330: $modulesPreferences[$v['module']] = $v; 331: } 332: 333: // Retrieve Modules List 334: $modules = Module::getModulesOnDisk(true, $this->logged_on_addons, $this->id_employee); 335: $this->initModulesList($modules); 336: $this->nb_modules_total = count($modules); 337: $moduleErrors = []; 338: $moduleSuccess = []; 339: $upgradeAvailable = []; 340: $dontFilter = false; 341: 342: //Add success message for one module update 343: if (Tools::getValue('updated') && Tools::getValue('module_name')) { 344: $moduleNames = (string) Tools::getValue('module_name'); 4. classes/controller/Controller.php:208 source AdminModulesControllerCore->initContent() 189: public function run() 190: { 191: $this->init(); 192: if ($this->checkAccess()) { 193: if (!$this->content_only && ($this->display_header || (isset($this->className) && $this->className))) { 194: $this->setMedia(); 195: } 196: 197: $this->postProcess(); 198: 199: if (!empty($this->redirect_after)) { 200: $this->redirect(); 201: } 202: 203: if (!$this->content_only && ($this->display_header || (isset($this->className) && $this->className))) { 204: $this->initHeader(); 205: } 206: 207: if ($this->viewAccess()) { 208: $this->initContent(); 209: } else { 210: $this->errors[] = Tools::displayError('Access denied.'); 211: } 212: 213: if (!$this->content_only && ($this->display_footer || (isset($this->className) && $this->className))) { 214: $this->initFooter(); 215: } 216: 217: if ($this->ajax) { 218: $action = Tools::toCamelCase(Tools::getValue('action'), true); 5. classes/Dispatcher.php:852 source ControllerCore->run() 833: return; 834: } 835: break; 836: 837: default: 838: throw new PrestaShopException('Bad front controller chosen'); 839: } 840: 841: // Instantiate controller 842: try { 843: // Loading controller 844: $controller = Controller::getController($controllerClass); 845: 846: // Execute hook dispatcher 847: if (isset($paramsHookActionDispatcher)) { 848: Hook::exec('actionDispatcher', $paramsHookActionDispatcher); 849: } 850: 851: // Running controller 852: $controller->run(); 853: } catch (PrestaShopException $e) { 854: $e->displayMessage(); 855: } 856: } 857: 858: /** 859: * Retrieve the controller from url or request uri if routes are activated 860: * 861: * @param int|null $idShop 862: * 6. override/classes/Dispatcher.php:39 source DispatcherCore->dispatch() 20: * International Registered Trademark & Property of ETS-Soft 21: */ 22:class Dispatcher extends DispatcherCore 23:{ 24: /* 25: * module: ets_superspeed 26: * date: 2021-05-06 10:52:51 27: * version: 1.1.8 28: */ 29: public function dispatch() { 30: if(@file_exists(dirname(__FILE__).'/../../modules/ets_superspeed/ets_superspeed.php')) 31: { 32: require_once(dirname(__FILE__).'/../../modules/ets_superspeed/ets_superspeed.php'); 33: if($cache = Ets_superspeed::displayContentCache(true)) 34: { 35: echo $cache; 36: exit; 37: } 38: } 39: parent::dispatch(); 40: } 41:} 7. admin429zfhthp/index.php:63 source Dispatcher->dispatch() 44://small test to clear cache after upgrade 45:if (Configuration::get('PS_UPGRADE_CLEAR_CACHE')) { 46: header('Cache-Control: max-age=0, must-revalidate'); 47: header('Expires: Mon, 06 Jun 1985 06:06:00 GMT+1'); 48: Configuration::updateValue('PS_UPGRADE_CLEAR_CACHE', 0); 49:} 50: 51:// For retrocompatibility with "tab" parameter 52:if (!isset($_GET['controller']) && isset($_GET['tab'])) { 53: $_GET['controller'] = strtolower($_GET['tab']); 54:} 55:if (!isset($_POST['controller']) && isset($_POST['tab'])) { 56: $_POST['controller'] = strtolower($_POST['tab']); 57:} 58:if (!isset($_REQUEST['controller']) && isset($_REQUEST['tab'])) { 59: $_REQUEST['controller'] = strtolower($_REQUEST['tab']); 60:} 61: 62:// Prepare and trigger admin dispatcher 63:Dispatcher::getInstance()->dispatch();