MSVC accepts lambda with deleted parameterized ctor while GCC and Clang rejects

Summary The issue at hand is a lambda expression that is accepted by MSVC but rejected by both GCC and Clang. The lambda expression attempts to initialize a captured variable b with an instance of struct C, which has a deleted parameterized constructor. The standard compliant behavior is the one exhibited by GCC and Clang, … Read more

WiX dual-purpose .msi package won’t create system-wide start menu shortcuts

Summary The issue at hand is related to creating a dual-purpose .msi package using WiX that can be installed either in the per-user or per-machine context. The package is set to perUserOrMachine, which sets ALLUSERS=2 and MSINSTALLPERUSER=1. However, when trying to create system-wide start menu shortcuts, they are always created in a subdirectory of C:\Users\\AppData\Roaming\Microsoft\Windows\Start … Read more

Bundle with Showpare/Symfony

Summary The issue at hand is a ClassNotFoundError when attempting to load a class from a custom bundle in Shopware 6.5. The error message indicates that the class Cdn from namespace App\Bb\Cdn cannot be found. This suggests a problem with the autoloading or namespace configuration. Root Cause The root cause of this issue is likely … Read more

ASP.NET Core Entra ID external login redirects to /signin-microsoft but shows resource not found

Summary The issue at hand involves an ASP.NET Core application using Microsoft Entra ID as an external login provider via OpenID Connect. After a successful authentication, the user is redirected to /signin-microsoft, but instead of completing the login process, the application displays a “resource not found” error. This problem seems to be tenant-specific and occurs … Read more

How to add features when user pay online payment that time user get 5% discount not in COD payment?

Summary The problem at hand is to implement a discount system that offers an extra 5% discount for orders paid via online payment (prepayment) compared to COD (Cash on Delivery) payment. This requires integrating a conditional discount feature into an existing e-commerce platform, such as Shopify. Root Cause The root cause of the issue is … Read more

Apple Pay button not showing in HyperPay paymentWidgets on Safari (Odoo backend)

Summary The Apple Pay button is not visible in HyperPay paymentWidgets on Safari despite a clean test HTML page and proper setup. The issue persists even after verifying Apple Pay and domain verification. Root Cause The root cause of this issue can be attributed to several factors, including: Incorrect configuration of HyperPay or Apple Pay … Read more