

HenriBierman
Trusted Members-
Posts
39 -
Joined
-
Last visited
-
Days Won
2
Content Type
Profiles
Forums
Gallery
Downloads
Articles
Store
Blogs
Everything posted by HenriBierman
-
Im running 1.4.0 on PHP 7.4 And running Warhouse version 3.8.2 from IQIT-Commerce
-
Hi All Which module would you recommend to be used with Facebook Pixel? I see most modules is Prestashop.. So unsure if it will work correctly. Please tell me what do you use? Regards Henri
-
Search not working or working intermittently
HenriBierman replied to HenriBierman's topic in English
Thank you, I will, Its tough to show exact problems, since there is no Error, only the occasional, no results. -
Got it, thank you so much. I changed it and now its adding. Thank you so much.
-
Where can I rename these Attributes?
-
Its as if it doesnt see the stock, when I change it to Allow Orders when out of stock, then add to cart is working. But when I set it to Deny, then it gives the erorr. And there is stock..
-
https://olightsa.co.za/flashlights/433-flashlights-olight-haloop-rechargeable-led-camping-light-600-lumens-includes-4-x-18500.html?search_query=Haloop&results=1 Here is the link to the actual product, the other items add to cart without issues. But this product - Haloop gives the problem.
-
Yes, Override is currently active
-
Here is the product setup.
-
Search not working or working intermittently
HenriBierman replied to HenriBierman's topic in English
Let me see which item is not working now. I installed Joli Search to help fix the issue, which helped. As this module also does indexing. -
Search not working or working intermittently
HenriBierman replied to HenriBierman's topic in English
Yes sure -
Thank you, I just applied them all, but it seams like the Error is still there when I add that product. What I find off is that the older products add to cart 100%, but not this new product.
-
-
At Core Update, all shows updated. But by Database there is a few open for Apply Fix. Do you think its safe to Apply them all?
-
Search not working or working intermittently
HenriBierman replied to HenriBierman's topic in English
Im on a shared server, running PHP 7.4. Its difficult to provide much more info, as the problem is inconsistent. No errors, just occasionally no search result. -
Whats very strange is that it only does this on some products. I even deleted one listing and recreated it. But the error persist.
-
Not too recently, the update module did mention there was some changes that it needs to fix about 2 days ago, which I did.
-
Hi All My website is giving an error 500, when add to cart on some items. But the items is in stock. Here is the Debug Report: What could this be? 102: if (is_array($cart_products)) 103: foreach ($cart_products as $cart_product) 104: { 105: if ((!isset($this->id_product_attribute) || $cart_product['id_product_attribute'] == $this->id_product_attribute) && 106: (isset($this->id_product) && $cart_product['id_product'] == $this->id_product)) 107: { 108: $qty_to_check = $cart_product['cart_quantity']; 109: 110: if (Tools::getValue('op', 'up') == 'down') 111: $qty_to_check -= $this->qty; 112: else 113: $qty_to_check += $this->qty; 114: 115: break; 116: } 117: } 118: 119: if ($this->id_product_attribute) 120: { 121: if (!Product::isAvailableWhenOutOfStock($product->out_of_stock) && !Attribute::checkAttributeQty($this->id_product_attribute, $qty_to_check)) 122: $this->errors[] = Tools::displayError('There isn\'t enough product in stock.', !Tools::getValue('ajax')); 123: } 124: elseif ($product->hasAttributes()) 125: { 126: $minimumQuantity = ($product->out_of_stock == 2) ? !Configuration::get('PS_ORDER_OUT_OF_STOCK') : !$product->out_of_stock; 127: $this->id_product_attribute = Product::getDefaultAttribute($product->id, $minimumQuantity); 128: if (!$this->id_product_attribute) 129: Tools::redirectAdmin($this->context->link->getProductLink($product)); 130: elseif (!Product::isAvailableWhenOutOfStock($product->out_of_stock) && !Attribute::checkAttributeQty($this->id_product_attribute, $qty_to_check)) 131: $this->errors[] = Tools::displayError('There isn\'t enough product in stock.', !Tools::getValue('ajax'));
-
Search not working or working intermittently
HenriBierman replied to HenriBierman's topic in English
Search was working fine, just now.. And suddenly boom... Showing no results again. Please help. -
Hi, I use ThrityBees 1.4.0 I battle with my search engine to work properly. Sometimes it works, sometimes it does not even show 1 product once you try and search. I have tried to rebuild my Search, I have even out of frustration installed Jolisearch module and tried that. It made it better, but still did not solve the issue. What or where can I check to see what is making my search engine loses its search capability?
-
Hi, When I try and upload more images to a product, I get an error stating that I am missing a temporary folder? Please help me how to resolve this.
-
Hi All Which module would you recommend that I can use for Facebook Pixel tracking on the latest ThrityBees version? Regards
-
- 1
-
-
Thank you, this helped. I am so happy, thank you. If I would like to run the website on PHP 8.1, is this recommended? Or would the current modules and theme crash?
-
Will it work, if I disable the module?
-
Hi All Thank you ThirtyBees for the best Ecommerce package, and with excitement, I tried the update and got this error below, could anyone please help me: I paste it below and attached it: ThirtyBeesDatabaseException Unknown column 'id_feature_product' in 'IN/ALL/ANY subquery' in file /home/torchsac/public_html/olightsa.co.za/modules/ultimatedatabaseoptimizer/classes/Database.php at line 1581 SQL SELECT COUNT(*) FROM `ps_feature_product_lang` WHERE `id_feature_product` NOT IN (SELECT `id_feature_product` FROM `ps_feature_product`) LIMIT 1 Source file: /home/torchsac/public_html/olightsa.co.za/modules/ultimatedatabaseoptimizer/classes/Database.php 1562: $this->errorIntegrity[] = $this->dBPrefix . $query_array[0]; 1563: } 1564: $psTables[] = $this->dBPrefix . $query_array[0]; // Save Prestashop original tables with no _lang and no _shop in array. 1565: } 1566: foreach ($psTables as $originalTable) { 1567: foreach ($this->dBTables as $table) { 1568: if ( Tools::substr($table['name'], -5) == '_lang' && $originalTable == Tools::substr($table['name'], 0, -5)) { 1569: $psOriginalLangTables[] = $table['name']; // Save Prestashop original tables with _lang 1570: } elseif ( Tools::substr($table['name'], -5) == '_shop' && $originalTable == Tools::substr($table['name'], 0, -5)) { 1571: $psOriginalShopTables[] = $table['name']; // Save Prestashop original tables with _shop 1572: } 1573: } 1574: } 1575: // Check _lang tables 1576: foreach ($psOriginalLangTables as $table) { 1577: $table_lang = $table; 1578: $table = str_replace('_lang', '', $table_lang); 1579: $id_table = 'id_' . preg_replace('/^' . $this->dBPrefix . '/', '', $table); 1580: $sql = 'SELECT COUNT(*) FROM `' . pSQL($table_lang) . '` WHERE `' . pSQL($id_table) . '` NOT IN (SELECT `' . pSQL($id_table) . '` FROM `' . pSQL($table) . '`);'; 1581: $totalIntegrityRows = (int) Db::getInstance()->getValue($sql); 1582: if ($totalIntegrityRows > 0) { 1583: $this->errorIntegrity[] = $table_lang; 1584: } 1585: $sql = 'SELECT COUNT(*) FROM `' . pSQL($table_lang) . '` WHERE `id_lang` NOT IN (SELECT `id_lang` FROM `' . pSQL($this->dBPrefix) . 'lang`);'; 1586: $totalIntegrityRows = (int) Db::getInstance()->getValue($sql); 1587: if ($totalIntegrityRows > 0) { 1588: $this->errorIntegrity[] = $table_lang; 1589: } 1590: } 1591: // Check _shop tables Stack trace 1. classes/db/Db.php:867 source () 2. classes/db/Db.php:502 source DbCore->displayError() 3. classes/db/Db.php:789 source DbCore->query() 4. classes/db/Db.php:816 source DbCore->getRow() 5. modules/ultimatedatabaseoptimizer/classes/Database.php:1581 source DbCore->getValue() 6. modules/ultimatedatabaseoptimizer/classes/Database.php:110 source Database->checkIntegrity() 7. modules/ultimatedatabaseoptimizer/ultimatedatabaseoptimizer.php:787 source Database->__construct() 8. classes/Hook.php:769 source UltimateDatabaseOptimizer->hookDisplayBackOfficeTop() 9. classes/Hook.php:471 source HookCore::coreCallHook() 10. classes/Hook.php:288 source HookCore::execWithoutCache() 11. modules/ets_superspeed/classes/ext/ets_hook:59 source HookCore::exec() 12. override/classes/Hook.php:41 source Ets_Hook::exec16() 13. classes/controller/AdminController.php:3939 source Hook::exec() 14. classes/controller/Controller.php:198 source AdminControllerCore->init() 15. classes/Dispatcher.php:861 source ControllerCore->run() 16. override/classes/Dispatcher.php:39 source DispatcherCore->dispatch() 17. admin429zfhthp/index.php:58 source Dispatcher->dispatch() PHP version: 8.0.25. Code revision: 1.4.0 build for PHP 7.4