Magento 2 Error Can’t run this operation: deployment configuration is absent.

January 5, 2021

We all know that Magento has CLI command. You can call Magento CLI commands using shortcuts instead of the full command name. For example, you can call bin/magento setup:upgrade using bin/magento If you sees this error:  Can’t run this operation: deployment configuration is absent. Run ‘magento setup:config:set –help’ for options. Please check whether your two files are […]

Magento migration product image not shows up after upload

August 16, 2015

This is a very common but annoying problem many of us face while working with magento. Sometimes we couldn’t really figure out what exactly is the problem. But don’t panic: Try: *Changing the attributes/Permissions All the FTP clients (fileZilla, cuteFTP etc) give you the option to change the file/folder attributes. Just right click on the […]

Magento debug “cannot add item to cart”

August 14, 2015

When adding a product in shopping cart on your magento installed website, it shows message as below. It does not allows you to add the product to your shopping cart. Cannot add the item to shopping cart. When adding a product to your shopping cart system needs a directory in which the sessions files can […]

Magento product reviews and ratings not showing in backend

February 1, 2015

This is the problem usually happen. The product reviews enabled but show showing in catalog. To solve this issue first check <pre>System > Configuration > Advanced > Advanced </pre> and see if Mage_Review is enabled there. Once this enabled, you should able to see the review and ratings showing in catalog.  If it’s not there […]

Magento upgrade cannot save the customer, Unknown column ‘ca.sort_order’

January 28, 2015

First find out what cause the error. “CANNOT SAVE THE CUSTOMER” is plain text message mask by magento to avoid it display raw message to system user. By find out raw, you are able to debug the error. First, edit file: app/code/core/Mage/Customer/controllers/AccountController.php In ubuntu, you can do like below: Then, add $e->getMessage() to this line: […]

Magento checkout Paypal change “What is PayPal text

December 14, 2014

The Magento checkout “What is PayPal” text is code in this file, as well as paypal logo /app/design/frontend/base/default/template/paypal/payment/mark.phtml Ideal way to make changes is copy this file with same path in your theme and modify this file according to requirements. Example your theme is: yourtheme /app/design/frontend/default/yourtheme Then in template folder create same path as “paypal/payment” […]