I have a situation where customer ajax login is not working even though the customer types in valid credentials. Instead, the page just reloads and the customer is not logged in. To clarify, it DOES work when the below Varnish VCL rules are not in place. Ajax Request/Response The request […]
Magento
My Custom module is working in Magento 2.4.0 but when I installed in Magento 2.4.3 version it’s showing below error in grid section. Type Error occurred when creating object: RhCategoryGalleryModelResourceModelImagegalleryCollectionInterceptor, Argument 5 passed to RhCategoryGalleryModelResourceModelImagegalleryCollectionInterceptor::__construct() must implement interface MagentoFrameworkDBAdapterAdapterInterface or be null, array given, called in /var/www/html/cwcabinets/vendor/magento/framework/ObjectManager/Factory/AbstractFactory.php on line 121 […]
Thanks it helped me. can you share similarly to explain to add text like Inclusive of 18% to Grand Total in invoice to admin panel and also to display the same in the PDF template also
I need to combine two table in magento 2 i have query like SELECT customtable_1.name, customtable_1.course FROM customtable_1 UNION SELECT customtable_2.name, customtable_2.course FROM customtable_2 how to write code for above query in magento 2. Thanks in Advance
Overriden UI Component in custom theme is not working. If I delete the existing/original ui_component file then only it is correctly loading from custom theme (from app/design/../..) Why this, How to fix it? Thanks in advance
When I try going to the admin panel of my local environment of Magento 2.4 (Enterprise) (admin URL is http://{unsecure_domain}/admin) It redirects me to a secure previous domain as if I was doing a search with the following URL: https://{secure_domain}/catalogsearch/result/?q=admin+admin+index+index+key+{generated_key} This is what I’ve tried: In the database I set […]
I want to install Magento 2.4.3 on my subdomain I set the subdomain php version to 7.4 But this error is shown Magento supports PHP 7.3.0 or later. Please read Magento System Requirements.
Dockerfile: FROM php:7.4-fpm # Install Composer COPY --from=composer /usr/bin/composer /usr/bin/composer # Increase composer momory limit RUN cd /usr/local/etc/php/conf.d/ && echo 'memory_limit = -1' >> /usr/local/etc/php/conf.d/docker-php-memlimit.ini # Install unzip utility and libs needed by zip PHP extension RUN apt-get update && apt-get install -y zlib1g-dev libzip-dev unzip RUN docker-php-ext-install zip # […]
I have read magento documentation on how to integrate external API(https://devdocs.magento.com/guides/v2.3/ext-best-practices/tutorials/create-integration-with-api.html), but it has no info on how to execute the script and get the response. This might be silly question but I cannot find how to do it properly.