37,502
questions
0
votes
0
answers
25
views
Magento 2 - After upgrde getting net::ERR_INSUFFICIENT_RESOURCES in admin category page
We upgraded Magento from version 2.4.5 to 2.4.7-p3. After that, we checked the admin category page and encountered the following errors:
POST https://yourdomain.com/admin/catalog/category/...
0
votes
0
answers
5
views
Is mangento 2 support module excluding from JS bundling (like stripe)
I recently enabled JS bundling for my store, which caused the Stripe module not to load in my browser, resulting in the payment button not appearing on my page. Although I updated both the Stripe ...
0
votes
0
answers
15
views
My custom magento section isn't injected into local storage cache
In my understanding, magento store private customer data in a local storage under the mage-cache-storage key. Therefore, I'm trying to create a custom section in the local storage to store my own ...
0
votes
0
answers
16
views
Magento 2 Magento\Catalog\Model\layer getProductCollection()
I'm trying to update the collection in Magento\Catalog\Model\Layer::getProductCollection() to update de attributes in the layered navigation according with my custom collection.
First of all, when I ...
0
votes
1
answer
35
views
404 Error Not found after successful installation Magento
I am an aspiring Magento developer. As a beginner I had to install Magento 2 on my local machine using MAMP, and the composer in VSCODE.
I have just succesfully install Mangeto using the composer.
...
0
votes
1
answer
23
views
How to Manage HTTP Response Headers in Apache for a Magento Site?
I want to update headers like Cache-Control, Expires, and Pragma, but I'm facing issues even after making changes in my .htaccess file.
Current Configuration:
I've added the following to my .htaccess ...
0
votes
1
answer
18
views
Group Product going "Out of Stock"
I have created a grouped product with 5 simple products attached to it. Each of those has a QTY of 15. However, at random, the grouped product turns Out of Stock without any reason. There have not ...
0
votes
0
answers
15
views
How to Install an Older Version of Magento PWA that Supports Magento 2.4.6?
I'm currently working on a project that uses Magento 2.4.6, and I need to install a compatible version of Magento PWA. However, I'm having trouble finding the right version that supports this specific ...
0
votes
0
answers
13
views
Uncaught Error: Mismatched anonymous define() module error Magento 2.4.6 - Only Chrome browser
Uncaught Error: Mismatched anonymous define() module error on chrome browser,on Mozilla is working fine on magento .2.4.7. How can find the error on production server because error only coming on ...
0
votes
0
answers
20
views
Issue creating configurable product using bulk import via web API
I am trying to import products using Magentos web api. Specifically the bulk import endpoints.
I have no issue creating and editing the products, my issue however is when I try to add the options to ...
0
votes
0
answers
27
views
Magento in Kubernetes and Docker not working
I'm trying to deploy Magento2 application in Kubernetes. This is how my Dockerfile looks like.
FROM php:8.1-fpm
RUN apt-get update && apt-get install -y \
nginx \
zip \
unzip \
...
0
votes
0
answers
28
views
Magento graphQl product query (width, height, weight)
I have a store on Magento 2. I don't have much experience with graphQL, so I'm asking for help, tips on how to formulate a graphQL query.
I need to get the dimensions of the product, i.e. length, ...
0
votes
0
answers
39
views
jquery/fileUploader issue in magento after upgrading to Magento 2.4.7
If you're encountering this issue and unable to find a solution, try removing the following entry from your composer.json file
"blueimp/jquery-file-upload": "lib/web/jquery/fileUploader&...
0
votes
0
answers
17
views
Out-of-stock product details not showing in magento 2.4.5 GraphQl
out-of-stock products in productSearch query in magento 2.4.5 is not showing. The below query i am using --
{ products(filter: { category_id: { eq: "3" } }) { items { name sku url_key ...
0
votes
0
answers
25
views
How to remove $_GET timestamp from Magento AJAX Requests
Magento 2 adds a $_GET timestamp to every AJAX request URL to prevent browser caching. Since such requests or the result is PHP generated for me it doesn't make sense to prevent browser caching if the ...