I must find the letter (diacritics) î in the middle of the words, but not the letter î at the beginning or at the end of the words. For example: 1.stăpînii 2.înstăpanit 3.coborî 4.înfornît So the regex must find the letter î just from words like the first one: stăpînii. […]
Yearly Archives: 2022
This is weird because I could join via Adminsistrator but not via a user I created on the DC I can join normally on Windows clients
I have migrated some good SATA HDD’s from a Windows 7 PC (AMD FX) to a Windows 10 PC (Ryzen + Gygabite 399 designare MB). All 5 disks are have blank monitor info, no S.M.A.R.T. info and temperature. The disks are accessed fine by Windows 10 and have been checked […]
After upgrade from Magento 2.3.7-p2 to Magento 2.4.3-P1 i can’t upload images, in magento admin i get this error message: The file was not uploaded In var/log/exception.log file, i see this error: main.CRITICAL: The file was not uploaded. {“exception”:”[object] (DomainException(code: 666): The file was not uploaded. at ../../../vendor/magento/framework/File/Uploader.php:228)”} [] I […]
I created frontend template page, my page has embedded some javascript. Some line I need to use double curly brace. one of the line <a class='media' data-media-index='{{> Index }}'> <img data-original="{{> Media.Images.LowResolution.Url }}" alt="{{> Title }}" style="display:inline-block;" class="lazy"> </a> but it turns out the page source is showing <a class='media' […]
We’re currently using the WebShopApps Matrixrates extension on our Magento 2 installation. The columns in our matrix rates file include: ‘Order Subtotal >’ and ‘Order Subtotal <=’ We have the following configuration: Greater than ‘0’ and less than or equal to ‘349.99’ is a Shipping Price of ’45’ Greater than […]
We need to implement partial payment functionality in magento 2 store. It will be in such a way that during payment the transaction will only be authorized but not captured. Then at the time of invoice creation the items will be invoiced in parts (like few items are part of […]
In the checkout in the country_id dropdown I have 2 countries: FR and BE. For FR I have a VAT percentage of 20% and for BE I have 21%. My goal is to update the tax amount in the checkout. When I switch countries I triggered an ajax request: $quote […]
Given the root of a binary tree in which all nodes has values 0 or 1, the task is to find and print all levels… Read More The post Find all duplicate levels of given Binary Tree appeared first on GeeksforGeeks.