From my understanding I can create my own integration by System->extension->integration. How do I setup the webservice and let third party to connect my Magento to create system user with user-roles account? Is there any documentation for third party how they get connect and posting request? I only found how […]
Daily Archives: March 5, 2022
I’m trying to create admin configuration with two SKU’s fields, where later you can choose main product and second product will automatically add to cart for free. So, I created system.xml file first: <?xml version="1.0"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Config:etc/system_file.xsd"> <system> <tab id="learning" translate="label" sortOrder="10"> <label>Learning</label> </tab> <section id="sku" translate="label" sortOrder="130" showInDefault="1" […]
On Magento 2.3.4 from the console I can run all reindex and running php bin/magento indexer:reindex catalog_product_price error > Product Price index <!DOCTYPE html> <html style="height:100%"> <head> <meta name="viewport" content="width=device-width, > initial-scale=1, shrink-to-fit=no" /> <title> 403 Forbidden > </title></head> <body style="color: #444; margin:0;font: normal > 14px/20px Arial, Helvetica, sans-serif; height:100%; […]
I finally pointed my domain to the server and now I need to set up the SSL certificate. However, the Virtual Host (on Ubuntu 18.04) is giving me a lot of trouble. My website is hosted in /var/www/html/ (bad idea?), so this is what my current host file looks like: […]
I am trying fetch orders using store_id but I am not getting response from Magento rest API which I am using. So far, I have tried follwowing URL patterns to check the response but none of them worked. /rest/V1/orders/{store_id} /rest/default/V1/orders/ /rest/{store_id}/V1/orders/ /rest/all/V1/orders/ After trying above URL patterns I got error […]
Given an array A[]. The task is to count the number of subsequences such that concatenation of binary representation of the numbers represents palindrome. Examples:… Read More The post Count of Subsequences forming Palindrome with Binary representations appeared first on GeeksforGeeks.
Given an array arr[] of N numbers (N ≤ 20), the task is to find the number of Derangements of the array where array elements… Read More The post Count of Derangements of given Array with Repetition appeared first on GeeksforGeeks.
Given a doubly linked list having all unique elements and two keys X and Y, the task is to swap nodes for two given keys… Read More The post Swap given nodes in a Doubly Linked List without modifying data appeared first on GeeksforGeeks.
Given an array A[] of N non-negative integers and an integer K. Each time, you can do the following two operations Find Average of MAX and… Read More The post Count of Unique elements after inserting average of MEX and Array Max K times appeared first on GeeksforGeeks.