I need help with this code I’m writing for GNRE in Espirito Santo, using the SOAP standard (version 1.2), I’m programming in PHP (version 7.2.24), and it’s giving this error: SOAP Error: SOAP-ERROR: Parsing WSDL : Couldn’t load from ‘http://schemas.xmlsoap.org/wsdl/’ : failed to load external entity “http://schemas.xmlsoap.org/wsdl/” follows the code: […]
Magento
Magento 2.4.7-p3 My store deletes the cache (Varnish or any other 3rd party cache) multiple times a day by itself, it has to be rebuild afterwards. Any idea where and how to start looking for that type of problem? Since I do not know when it happens, I can not […]
I’m new to Magento and Varnish. I have an Ubuntu24 on Vbox. Magento 2.4.7-p3 with sample data is up and running. Varnish is activated in Magento Backend. I’m using the standard magento optimized vcl from varnish. I have set the standard vhost port to 8080 The shop is running on […]
I have created setup patch data using the attribute please check the below code and block using add custom tab moduleDataSetup = $moduleDataSetup; $this->customerSetupFactory = $customerSetupFactory; $this->eavConfig = $eavConfig; } public function apply() { $this->moduleDataSetup->getConnection()->startSetup(); $customerSetup = $this->customerSetupFactory->create([‘setup’ => $this->moduleDataSetup]); // Add global_customer_price attribute $customerSetup->addAttribute(Customer::ENTITY, ‘global_customer_price’, [ ‘type’ => ‘varchar’, […]
I’m facing a critical issue with order creation in my Magento2.4.6 store. Sometimes, when customers place new orders using credit limit payment method, instead of creating a new order, the products are getting merged into their old completed orders. For example: Customer has an old order containing products A, B, […]
I have two custom options on the product view page: width and length. When adding a product to the cart, I want to update both the weight and the price based on these options. Currently, the price update works correctly. However, the weight update behaves unexpectedly. Here’s the issue: When […]
Problem: We have discovered that when we start getting a large amount of cookies/data, users are getting errors or undesired issues or, in some cases, getting a 400 error. We need to implement some code that forcibly dumps the user’s on-site cookies. This can be after X days/hours, X number […]
In my local dev system I need to symlink modules into the /vendor folder. Unfortunately magento checks if any included file actually resides inside magento’s root folder. Files from outside that scope are not permitted for security reasons. Since I only need this in my local dev setup I wanted […]