Daily Archives: April 20, 2020
Having a bit of an issue with this one, I managed to get a working interface to Magento by including the following code, which in turn includes the Magento 2 bootstrap.php use MagentoFrameworkAppBootstrap; require_once("../app/bootstrap.php"); $params = $_SERVER; $bootstrap = Bootstrap::create(BP, $params); $obj = $bootstrap->getObjectManager(); $state = $obj->get('MagentoFrameworkAppState'); $state->setAreaCode('adminhtml'); return $obj; […]
I am testing amazon CloudFront with Magento 2, all good so far but I am wondering how that would work on my production store when I do a new release? I only found a manual option to invalidate all data but how long will it than take any new files […]
My robots.txt contain any code and this code Disallow: /tag/ Is it okay for SEO to delete this command?
I need to store few disjoint scalar custom information on a completed sales Order in Magento 2 and display them in a completed Sales order detail view in the Magento admin and also in the Sales order listing page. From my initial research it appears I need to use Extension […]