I have problem with setting up project the nginx is working fine and it is setup correctly, but it gives me 404 Not Found page when I try to access the url. The log: 2022/12/06 19:01:26 [crit] 285154#285154: *3 stat() "/home/kristijan/Documents/VAPO/vapo/pub/errors/404.php" failed (13: Permission denied), client: 127.0.0.1, server: vapo.local, request: […]
Magento
Is there a plug-in to automatically disable a customer’s account after a certain number of payment failures? My store is undergoing a carding attack. The attacker is using different IP addresses and is using email addresses from gmail, so this seems like the only way to stop it. The attacker […]
We are setting up different stores with own product entry, metric system, currency, etc. Like US, EU, UK. All products should be displayed on every store view, displays depending from location. Challenge here is that a product entered within US store should reflect local tax if delivery address is within […]
after upgrading to Magento 2.4.5v in the Layered Navigation Listing, configurable products are shown separately. All configurable options are shown as simple products separately even are selected as “Not visible individually” and the configurable products with swatches are not shown.
magento 2.4.5 Deprecated Functionality: Zend_Http_UserAgent implements the Serializable interface, which is deprecated. Implement __serialize() and __unserialize() instead (or in addition, if support for old PHP versions is necessary) in /var/www/html/mag245/vendor/magento/zendframework1/library/Zend/Http/UserAgent.php on line 37 -php8.1, and composer2.4.2
Magento version – Adobe Commerce ver. 2.4.5-p1 Issue – Product images are not showing up on the front end. I’m debugging this file, getting below data. vendor/magento/module-catalog/view/frontend/templates/product/view/gallery.phtml echo "<pre>"; print_r($mainImage); exit; MagentoFrameworkDataObject Object ( [_data:protected] => Array ( [value_id] => 195402 [file] => /c/o/controlflex-coupling-cpfrg16-25-at.jpg [media_type] => image [row_id] => 56037 […]
Have an odd question hoping the community can answer: In Magento 2.4.4 enterprise we have a Braintree Virtual Terminal link We have a multi-store view site as we have multiple currencies. My question is Staff can use this to manually accept payments but how does the platform know what currency […]
I am creating a custom graphql query to view list of product. I need to add aggregation to my custom product list. For that I created a schema. type ViewAllProducts { products: [ProductInterface] aggregations (filter: AggregationsFilterInput): [Aggregation] @doc(description: “A bucket that contains the attribute code and label for each filterable […]
Is there a general consensus on when you should create a custom module to override core vs when you should use a composer patch? At present, I need to add @ to a line of code and feel that a module is a lot more work than necessary.