Error Coupon {"message":"The coupon code isn't valid. Verify the code and try again.","trace":"#0 [internal function]: Magento\Quote\Model\CouponManagement->set()n#1 /var/www/workspaces/marcelo.caetano/projetos/supermercado-escola/vendor/magento/module-webapi/Controller/Rest/SynchronousRequestProcessor.php(95): call_user_func_array()n#2 /var/www/workspaces/marcelo.caetano/projetos/supermercado-escola/vendor/magento/module-webapi/Controller/Rest.php(188): Magento\Webapi\Controller\Rest\SynchronousRequestProcessor->process()n#3 /var/www/workspaces/marcelo.caetano/projetos/supermercado-escola/vendor/magento/framework/Interception/Interceptor.php(58): Magento\Webapi\Controller\Rest->dispatch()n#4 /var/www/workspaces/marcelo.caetano/projetos/supermercado-escola/vendor/magento/framework/Interception/Interceptor.php(138): Magento\Webapi\Controller\Rest\Interceptor->___callParent()n#5 /var/www/workspaces/marcelo.caetano/projetos/supermercado-escola/vendor/magento/framework/Interception/Interceptor.php(153): Magento\Webapi\Controller\Rest\Interceptor->Magento\Framework\Interception\{closure}()n#6 /var/www/workspaces/marcelo.caetano/projetos/supermercado-escola/generated/code/Magento/Webapi/Controller/Rest/Interceptor.php(23): Magento\Webapi\Controller\Rest\Interceptor->___callPlugins()n#7 /var/www/workspaces/marcelo.caetano/projetos/supermercado-escola/vendor/magento/framework/App/Http.php(116): Magento\Webapi\Controller\Rest\Interceptor->dispatch()n#8 /var/www/workspaces/marcelo.caetano/projetos/supermercado-escola/vendor/magento/framework/App/Bootstrap.php(264): Magento\Framework\App\Http->launch()n#9 /var/www/workspaces/marcelo.caetano/projetos/supermercado-escola/pub/index.php(29): Magento\Framework\App\Bootstrap->run()n#10 {main}"} This is the site in production: https://sitenovo.supermercadoescola.org.br/ Magento 2.4.3 php7.4-fpm Apache 2.4 Debian 8
Daily Archives: December 24, 2021
I whitelisted all domains in my module’s csp_whitelist.xml file and it is working as expected except google-analytics, I tried adding it to the file but after adding it is giving the same error. I tried disabling the magento_Csp module, even after that google-analytics CSP issue is always in the console. […]
I would like to specify the date format for a new date field in my CMS page form. I have created a new cms_page_form.xml field which links to a date field in the MySQL database table cms_page. However, MySQL rejects the field because it is in the wrong format. I […]
I’m running quite old Magento 1.9.2 instance, since a couple of weeks it’s going offline periodically because of MySQL load. MySQL server CPU usage is going over 1000% (one thousand), all cores are busy and server stops responding. DB server has 32GB of RAM and 16 CPUs. Incidents are happening […]
When I click on “share wish list” button it is redirecting to “<base_url>/wishlist/index/send/” and showing blank page. I am using Magento 2.3.4 CE. The system log shows the below error. Is it Magento 2.3.4 version bug or another one? How can we solve this issue?
Given a circular array arr[] of N numbers, and an integer K. The task is to print the average for 2K+1 numbers for each elements… Read More The post Find mean of K adjacent elements on each sides for each Array element appeared first on GeeksforGeeks.
Given an array arr[] consisting of positive integers. The task is to minimize the contiguous groups formed if each element from arr[] can be a… Read More The post Minimize Array partitions such that an element is repeated atmost once in each partition appeared first on GeeksforGeeks.
Given array arr[] of size N containing cyclic variables having states from 0 to (M – 1) (i.e when incremented from M-1 it goes to… Read More The post Print the Array of size N containing values in range [0, M) after Q query updates appeared first on GeeksforGeeks.
Given a positive integer N. The task is to find Nth term of the series 5, 13, 37, 109, 325, ….. Examples: Input: N =… Read More The post Find the Nth term of the series 5, 13, 37, 109, 325, . . . appeared first on GeeksforGeeks.