How to migrate data from Magento 1 to Magento 2 using data migration tool Magento has shared Magento migration tool to upgrade Magento 1.x to Magento 2.x You need to…
Q1. Which technology is used by Magento? There are multiple technologies used by Magento, with its web server and Database components. Its web server is being created using PHP scripting…
As you know that Magento 2 different from Magento 1 and you can’t direct update your Magento 1 store to Magento 2 using any patch or extension or folder merge.…
New Magento Security Scan Tool is available! Finally , Magento has launch a feature to scan Magento online store for virus, known security risks, malware, and unauthorized access.You can scan…
Here are all the 60 questions of Magento test of Upwork.You can pass Magento test on Upwork using those answers of Magento test.You will also get the Top 10%, Top…
There are many questions from the Magento merchant and Magento developers about migrating to Magento 2. Now Magento released the latest Magento 2.2.2 version with 96 bug fix and additional…
Migrate from Magento 1 to Magento 2 using UB Themes Data Migration tool Magento 1.x will sunset on 18th Nov 2018 and you should now migrate your Magento 1 to…
If you have deleted any product from magento and now if you want to restore deleted products back to magento store catalogs then you can do it by using available…
If you want to debug any module and functionality you want to find the log.Every developers love the logs. While working with magento extension development or customization you need to…
If you want to get all discount coupons codes of magento.Please use the folllowing code $sales_rules_collection = Mage::getModel(‘salesrule/rule’)->getCollection(); foreach($sales_rules_collection as $rule) { if($rule->getData(‘is_active’) ==1) { $rule->getData(‘name’); $rule->getData(‘code’); $rule->getData(‘simple_action’); $rule->getData(‘discount_amount’); }…