i am getting error this error Exception #0 (Zend_Db_Statement_Exception): SQLSTATE[42S22]: Column not found: 1054 Unknown column ‘e.manufacturer’ in ‘where clause’, query was: SELECT FLOOR((ROUND((e.min_price) * 1, 2)) / 100) + 1 AS range, COUNT(*) AS count FROM catalog_product_index_price AS e INNER JOIN cataloginventory_stock_status AS stock_status_index ON e.entity_id = stock_status_index.product_id INNER […]
Magento
Magento 2.4.2-p1 PHP 7.4 I’ve noticed that I get a fatal error allowed memory when I hit any Magento’s rest API like rest/default/V1/guest-carts/zg9WgsI6iTxvcA9YzPQnWqDNr7CLYVy2/estimate-shipping-methods in the cart and checkout page, I disabled some modules and I saw there is a circular dependency in these 2 class Exception #0 (LogicException): Circular dependency: […]
I am trying to troubleshoot why my staging site is loading without the css I guess is whats missing see screenshot. When I look in exception.log I see this error not sure if it is related I did edit my default.xml file but i have undone my changes and not […]
I am rewritting the /vendor/magento/module-catalog/view/base/templates/product/price/amount/default.phtml file. The file MyCompany_MyApp::product/default.phtml works fine, but I want to pass a viewModel into the block as an argument but this doesn’t work as expected. This doesnt work when trying to add: <argument name="viewModel" xsi:type="object">MyCompanyMyAppViewModelProductLoader</argument> Into: MyCompany/MyApp/view/frontend/layout/catalog_product_prices.xml <block class="MagentoFrameworkPricingRenderRendererPool" name="render.product.prices"> <arguments> <argument name="viewModel" xsi:type="object">MyCompanyMyAppViewModelProductLoader</argument> <argument […]
I’ve looked high and low for this but have had no luck. I need to get the category of the page that the product was added from. I have written an Observer that hooks into the add to cart event that would hopefully get the category of the page and […]
<?php namespace CgtgPayControllerPayment; use MagentoFrameworkAppResponseInterface; use MagentoSalesApiOrderRepositoryInterface; use MagentoFrameworkAppCsrfAwareActionInterface; class Make extends MagentoFrameworkAppActionAction { protected $_orderRepository; public function __construct( OrderRepositoryInterface $orderRepository, MagentoFrameworkAppActionContext $context ){ $this->_orderRepository = $orderRepository; parent::__construct($context); } /** * @inheritDoc */ public function execute() { // TODO: Implement execute() method. $order = $this->_orderRepository->get('1'); $order->addStatusHistoryComment('notify make11991 status make 49944: […]
Magento2 Customer login Invalid request received When i try Register customer, i receive similar kind of error. "MagentoCustomerControllerAccountCreatePostInterceptor" {"exception":"[object] (Magento\Framework\App\Request\InvalidRequestException(code: 0): Invalid request received at /var/www/html/airbnb/app/code/Magento/Customer/Controller/Account/CreatePost.php:327)"} [] On Login page i receive this error as shoon in screen shot too. Request validation failed for action "MagentoCustomerControllerAccountLoginPostInterceptor" {"exception":"[object] (Magento\Framework\App\Request\InvalidRequestException(code: 0): Invalid […]
I have installed the OpenSSL 1.1 and Lets Encrypt SSL on a Magento installation. I am trying to connect the Fedex Service on Magento. Whenever it tries to fetch the rate I am getting an error Unable to connect. After debugging I found that it is using Soap Service to […]
How can I build this module for our Magento 2 cache warmer to crawl both desktop and mobile version pages? We would like to create a plugin with the method afterGetData on the class MagentoFrameworkAppHttpContext In this method of the plugin, I would like to add a condition by which […]