IOWEB TECHNOLOGIES

Results 105 comments of IOWEB TECHNOLOGIES

I had the same issue ``` a:5:{i:0;s:64:"A pipeline is already in use and only one pipeline is supported.";i:1;s:2960:"#0 /public_html/vendor/colinmollenhour/cache-backend-redis/Cm/Cache/Backend/Redis.php(626): Credis_Client->__call('pipeline', Array) #1 /public_html/lib/Zend/Cache/Core.php(390): Cm_Cache_Backend_Redis->save('a:4:{s:2:"id";a...', '4af_DB_PDO_MYSQ...', Array, false) #2 /public_html/lib/Varien/Cache/Core.php(145): Zend_Cache_Core->save('a:4:{s:2:"id";a...',...

I'd love to provide it but I noticed that today when my user logged out for inactivity I'm getting an internal server error on login page. So I can no...

That is the confusing part. During bench migrate all patches executed successfully

I've managed to get past the login error by using this patch ``` Index: apps/frappe/frappe/__init__.py IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP UTF-8 =================================================================== diff --git a/apps/frappe/frappe/__init__.py b/apps/frappe/frappe/__init__.py --- a/apps/frappe/frappe/__init__.py +++ b/apps/frappe/frappe/__init__.py...

Could someone point me out where this "app_logo_url" key is stored in the database so I can update it in the database as well for future updates?

I found it in the website settings, there's the brand logo and footer logo url and app logo url. If you haven't added them in the previous versions, the system...

I just found this thread and it's indeed a very serious issue. The whole point of having a MSI is because you want to have accurate stock level information on...

I've been checking the code deeper to see why this is happening and this is probably done so that when a product is set to out of stock, positive quantities...

After further investigating I notice that on the stock index for the specific store view, the configurable product's total salable quantity is incorrectly counted. It appears as `instock` with salable...

I ended up tracking it all the way to this function `\Magento\InventoryIndexer\Indexer\SelectBuilder::execute` Which results in the following SQL in my case ``` SELECT `source_item`.`sku`, SUM(IF(source_item.status = 0, 0, quantity)) AS...