I know what object manager is. I know why it is used. I know that as a general rule it shouldn’t be used. I know why from reading this. https://devdocs.magento.com/guides/v2.3/extension-dev-guide/object-manager.html#exceptions. Then I see code like this https://github.com/magento/magento2/blob/2.3/app/code/Magento/Catalog/Model/Indexer/Product/Eav/Action/Full.php#L83-L85 public function __construct( [...] $this->scopeConfig = $scopeConfig ?: ObjectManager::getInstance()->get( ScopeConfigInterface::class ); [...] } […]
Blog
I’m having a weird issue, all of a sudden our shipping outside of the country has ceased working. “Sorry, no quotes are available for this order at this time.” I’ve been digging around and I saw earlier this year there was an issue with the Gateway URL being http://www.ups.com/using/services/rave/qcostcgi.cgi instead […]
I already checked everything, my remote server is working properly by my local showed up this issue, as you can see in this image below. I don’t know if it’s related to my local environment using Valet+ or if it’s something related with my Magento configuration. How could I figure […]
Getting TypeError: options is undefined in customer-data.js with firefox, With chrome it’s working good no issue. Using Magento 2.2.0 & Wetpixel pearl theme1.5.5 This issue is not coming for all refresh, Is only coming for some refresh, I did a new installation getting the same I have v2 enabled for […]
I have a very weird and annoying problem. Cells in my Excel 2016 are dark by default. Every new document is dark. Every opened document is dark (sometimes with some exceptions). I tried removing the formatting. Macros seem to not be working as well… I have an idea though what’s […]
I am assembling a set of server/router devices to be used as a provider of some offline services for the local network.I don’t need WAN, each server is isolated and for each server I have a set of ethernet NICs and 2 WNICs. I will be running hostapd to create […]
I have been having great difficulties trying to uninstall Microsoft Office Professional Plus 14.0.4734.1000. I am trying to uninstall that version and install 14.0.4763.1000. That became necessary when I tried installing Service Pack 2 and 1 and neither worked, telling me that it could not find a valid install, and […]
I am working with a bunch of computers that were imaged by someone who removed all the built-in Windows 10 apps — including the Microsoft Store app. Whoever removed them didn’t just uninstall them with a simple Remove-AppxPackage command; they actually de-provisioned those apps entirely with Remove-AppxProvisionedPackage, so the package […]
I pass a big range from an Excel spreadsheet to the parameter ExcelRange of a user defined function (UDF) written in VBA. I can declare the parameter ExcelRange As Range and then convert it to Variant: Dim VariantArray As Variant VariantArray = ExcelRange.Value2 or I can directly declare the parameter […]