Remote development is simply development on a remote server. An SSH connection is made from your local machine to a server in the cloud. SSH stands for secure shell or secure socket shell — a protocol for securely communicating between two computers via a terminal. Image source: code.visualstudio.com Amazon Elastic […]
Daily Archives: September 15, 2021
In Magento 1 need to make a SOAP call for a certain category in order to extract information. For that I use below request: $result_ = $client->call($session, 'catalog_category.info', 90); However, since the store is in multiple languages I need to send along a store_id to be able to collect the […]
I have added a DataRange filter like this on a listing ui component: <column name="fecha_order" sortOrder="20"> <settings> <filter>dateRange</filter> <label translate="true">Fecha</label> </settings> </column> Then I get the values here in a custom Data Provider public function addFilter(MagentoFrameworkApiFilter $filter) { $writer = new LaminasLogWriterStream(BP . '/var/log/filters.log'); $logger = new LaminasLogLogger(); $logger->addWriter($writer); $this->_session->start(); […]
Basically I am getting error We can’t find the quote item after update cart for configurable product. There are no issues in adding item to cart. Also I am not getting any error’s or warnings while adding or updating item to cart through which I can debug and trace the […]
I am facing quite known issue about sending mail via TransportBuilder. I need to send mail in observer, however each time I try I get error Unable to send email. Unknown error . I can reject any server configuration, because email mechanizm is working in any other way ( orders, […]
I made a simple script which sets the QTY of certain products based on a CSV. It all works perfectly excepting the fact that it takes around 3 seconds for each product to be saved. What could I do to optimize it’s saving speed? use MagentoFrameworkAppBootstrap; include('../app/bootstrap.php'); $bootstrap = Bootstrap::create(BP, […]
If you’ve ever tried to learn and master any skill or excel in any of the fields whether it be public speaking, swimming, investing, etc.… Read More The post 100 Days of Code with GFG – Get Committed to a Challenge! appeared first on GeeksforGeeks.
Technology includes Mobile Apps, Scanners, Drones, and much more which if used knowledgeably fulfill many practical purposes of the construction industry. You may now think… Read More The post How Technology is Reshaping Construction Industry? appeared first on GeeksforGeeks.
how to write a batch, vbs, or cmd file that can run hidden as follows: 1- get (trace, fetch) a specific thread ID (TID) from svchost.exe the thread called (wevtsvc.dll) and it’s being used by event log service there are 4 of them, and they change their IDs every startup […]