skip to Main Content

Dockerizing Magento 2.4.3-p2 on Ubuntu 22.04

I have been trying to Dockerizing Magento 2.4.3-p2 on my Ubuntu 22.04. So here is my `docker-compose.yml version: '3.0' services: nginx: build: context: . dockerfile: docker/nginx/dockerfile ports: - '8000:80' volumes: - ./docker/nginx/conf.d:/etc/nginx/conf.d - ./src:/var/www/html restart: always php-fpm: build: context: .…

VIEW QUESTION

Class "MagentoElasticsearch7ModelClientClientBuilder" not found#0

I was following this tutorial to install magento on my windows device: https://ccbill.com/kb/install-magento-windows#ftoc-heading-4 Step 3 was to use this command to install magento: php bin/magento setup:install --base-url="http://mystore.magento.com" --db-host="localhost" --db-name="magento" --db-user="root" --db-password="magento2" --admin-firstname="Bruce" --admin-lastname="Banner" --admin-email="[email protected]" --admin-user="Hulk" --admin-password="Hulk123" --language="en_US" --currency="USD" --timezone="America/Chicago" --use-rewrites="1"…

VIEW QUESTION

Installed magento 2.4.6-p1 & added a few products then tried to add a product to cart and got the below error. Any help will be much appreciated

[2023-08-07T02:38:55.058044+00:00] main.DEBUG: URI '/checkout/cart/add/uenc/aHR0cHM6Ly93d3cuYmVzdWlnZW5lcmlzLmNvbS92MjQ2djEvYi1jLWluc3BpcmUtZTE1MC5odG1s/product/1/'' cannot be accessed with GET method (MagentoCheckoutControllerCartAdd) [] [] [2023-08-07T02:38:55.060439+00:00] main.DEBUG: Request validation failed for action "MagentoCheckoutControllerCartAddInterceptor" {"exception":"[object] (MagentoFrameworkAppRequestInvalidRequestException(code: 0): Invalid request received at /home/public_html/vendor/magento/framework/App/Request/HttpMethodValidator.php:69)"} [] Have looked for an answer on google but just cant…

VIEW QUESTION

Magento. Issue OAuth oauth_problem=Signature+method+HMAC-SHA1+is+not+supported

I have issue with Magento. Everything worked well(I don't change anything) but now something going wrong with OAuth part. I have an error on response statusCode 400 with message oauth_problem=Signature+method+HMAC-SHA1+is+not+supported According to the docs https://devdocs.magento.com/guides/v2.4/get-started/authentication/gs-authentication-oauth.html#pre-auth-token oauth_signature_method The name of the…

VIEW QUESTION
Back To Top
Search