Daily Archives: December 24, 2019
varnish server gives back error message: Error 503 Backend fetch failed Backend fetch failed Guru Meditation: XID: 131307 varnish log info: Varnish cache server # varnishlog -q 'RespStatus == 503' * < < Request >> 131307 - Begin req 196933 rxreq - Timestamp Start: 1577129611.804607 0.000000 0.000000 - Timestamp Req: […]
I am trying to migrate a magento version 2.3.3 site / system from one server to another. After doing everything I should do to complete the migration I am getting 302 as a server response once after another. A targeting loop. Follow the link: https://engravedrinks.cp02.alfasoft.pt/. I have already tried some […]
I have normal magento 2.3.3 which has the default mini cart as shown below. And in the above pic by default the quantity as to be manually entered and updated the cart on click. But I want a mini cart that should have a plus and minus symbol, with synchronous […]
On every listing page, I’m getting We can’t find products matching the selection. I followed this also but dint helped We can’t find products matching the selection. I’m attaching a screenshot for your reference I tried changing elasticsearch version also but that also doesn’t worked. Currently, I’m using elasticsearch 6.8.x. […]
How does one programmatically get and set the position of a product within a category? $category_id = 101; $query = "SELECT product_id, position FROM catalog_category_product WHERE category_id = $category_id"; $query = mysqli_query($link, $query); while ($q = mysqli_fetch_array($query)) { $product_id = $q['product_id']; $position = $q['position']; echo $product_id." - ".$position.""; } The […]