I am trying to install Microsoft Edge on an offline Microsoft Server 2019 to use for some testing. I downloaded the latest Microsoft Edge Offline installer. When I run it, it pops a box that says: Microsoft Edge works best with the latest Windows Updates. Once you download updates and […]
Yearly Archives: 2022
I am trying to run latest VMWare Workstation Pro (16.2.4 build-20089737) on Windows Server 2022 host (21H2). When I start a VM I got the VMWare Workstation and Hyper-V are not compatible. Remove the Hyper-V role… However the Hyper-V role is removed, actually never been there. I started the Turn […]
im making mcqs for that i have to make answere keys columns options are pak ind usa uk and fifth one ans pak so what i want that if column 5 which is ans (pak) match with coulmn A than write A and if Column 5 (pak) match with column […]
I have been pulling my hair out trying to figure this problem out. The PC will randomly crash, and give the PNP_FATAL_ERROR code. However it boots up just fine, and I can use it no issues, until a random crash. PC is ‘brand new’, it’s only use has been trying […]
Is there anyone help me please for removing malware from the sites. Screenshot is attached. Please check and help me. I’m very worry about that.
How to show a popup as soon as customer logs in. I created an customer_login event and called an observer, I want to display a phtml file with my popup code. Following doesn’t work etc/frontend/events.xml <?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:Event/etc/events.xsd"> <event name="customer_login"> <observer name="customer_login_observer" instance="VendorModuleObserverCustomerLogin" /> </event> </config> Observer/CustomerLogin.php <?php […]
I want to override vendor/magento/module-checkout/Model/GuestPaymentInformationManagement.php. I made a di.xml in app/code/Jilco/Qtybug/etc/ like this: <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> <preference for="MagentoCheckoutModelGuestPaymentInformationManagement" type="JilcoQtybugModelGuestPaymentInformationManagement" /> </config> And the GuestPaymentInformationManagement.php in /home/jilco/public_html/app/code/Jilco/Qtybug/Model/ Also dit the deployement steps rm -rf generated/code/* php bin/magento cache:flush php bin/magento setup:upgrade php bin/magento setup:di:compile php bin/magento setup:static-content:deploy php bin/magento setup:static-content:deploy nl_NL […]
I am adding tax programmatically on checkout using this code: class Tax extends MagentoTaxModelSalesTotalQuoteTax { /** * Class constructor * * @param MagentoTaxModelConfig $taxConfig * @param MagentoTaxApiTaxCalculationInterface $taxCalculationService * @param MagentoTaxApiDataQuoteDetailsInterfaceFactory $quoteDetailsDataObjectFactory * @param MagentoTaxApiDataQuoteDetailsItemInterfaceFactory $quoteDetailsItemDataObjectFactory * @param MagentoTaxApiDataTaxClassKeyInterfaceFactory $taxClassKeyDataObjectFactory * @param CustomerAddressFactory $customerAddressFactory * @param CustomerAddressRegionFactory $customerAddressRegionFactory * @param […]
I want to check if the postcode exists in the current country on the checkout page. How to implement this? or maybe someone knows a module that does it? Thanks for any help