I have a server on Ubuntu with Docker Swarm installed. It runs a mail server docker container (Exim + Dovecot + Roundcube) which is also built on Ubuntu. Is it possible to configure the mail server so that when the quota of one of the mailboxes on the server is […]
Yearly Archives: 2022
I’ve learned about TP-Link’s proprietary Onemesh technology that, as far as I understand, allows to combine multiple WiFi access points into one single access point. While that can be achieved by giving all access points the same SSID, clients might still to switch from one AP to another, causing overhead. […]
In a weird scenario sometimes I see Google meet is opened in my background where I see a person whom I talked 4 days ago after that I never opened Google meet but it appeared in my minimised app section.This has happened to me 3 times I don’t understand what […]
With default Windows 10 sandbox GPU the application can be run, but whit vGPU it can’t. To run it with vGPU I have to configure rendering settings in application, the sandbox with vGPU contains default sandbox GPU aswell, is it possible to run an application with secondary default sandbox GPU […]
I am creating plugin to alter API response in M2.4.3. I am trying to alter this functionality via plugin MagentoFrameworkWebapiRestResponse and function prepareResponse My di.xml file is: <?xml version="1.0" ?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd"> <type name="MagentoFrameworkWebapiRestResponse"> <plugin name="vendor_apiresponses_extend_Webapi_rest_response" type="VendorApiResponsesPluginFrameworkWebapiRestResponseUpdateResponse" /> </type> </config> and plugin file is : <?php declare(strict_types=1); namespace VendorApiResponsesPluginFrameworkWebapiRestResponse; […]
I am trying to add custom filter to layer navigation. Basically I didn’t have any problem with displaying it on navigation sidebar but collection filtering is now the problem. I have filter which is NOT product attribute and that filter has two possible items. Each item should be filtered by […]
I’ve a problem in my website, when the customer order as guest then create account after purchase the order didn’t appear ! Could you please advise how to fix it ? Thanks a lot.
I would like to add a custom attribute to the product and create an installData.php according to the guide. However, nothing changed after se:up. Please help. app/code/My/Module/Setup/InstallData.php <?php namespace MyModuleSetup; use MagentoEavSetupEavSetup; use MagentoEavSetupEavSetupFactory; use MagentoFrameworkSetupInstallDataInterface; use MagentoFrameworkSetupModuleContextInterface; use MagentoFrameworkSetupModuleDataSetupInterface; class InstallData implements InstallDataInterface { private $eavSetupFactory; public function __construct(EavSetupFactory […]