Update/Upgrade Joomla from version 3.1.x to 3.9.x

This article shows how you can update or upgrage Joomla from version 3.1.x to 3.9.26 Enable Maintenance Mode 1) From administrator login Login to Joomla administrator Go to System –> Global Configuration On the “Site” tab, there is a setting called “Site Offline”. Set it to “Yes” Once you change it to “Yes”, then three … Read more

Magento 2: Create, Edit, Delete Customer Attribute Programmatically

This article shows how you can programmatically add or create a new customer attribute in Magento 2. It also shows how you can update and delete/remove the customer attribute programmatically in Magento 2. I will also show how you can add the product attributes from both Install Script and Upgrade Script: – Add customer attribute … Read more

Magento 2: Create Product Attribute, Attribute Group/Tab & Attribute Set Programmatically

This article shows how you can programmatically add or create a new product attribute, product attribute group, and product attribute set in Magento 2. In this article, we will be looking at the following: Create Product Attribute Update Product Attribute Remove Product Attribute Create Product Attribute Group/Tab Add Product Attributes to the Attribute Group/Tab Create … Read more

Upgrade Magento 1.x to the latest version

This article shows how you can upgrade/update your Magento 1.x via both Browser GUI and Command Line. Note: – Magento/Adobe ended support for Magento 1.x software on June 30, 2020. – After that day, the Magento 1 software repo was removed. – All Magento 1 extensions were removed from the official extension site. When you … Read more

Magento 2: Upgrade/Update using Command Line & Composer

This article shows how you can upgrade/update your Magento 2 version through command line using composer. Upgrading to Magento 2.3.x is a bit different than that of Magento 2.2.x or 2.1.x. At first, I will show the commands that need to be run to upgrade Magento2 to version 2.1.x or 2.2.x. Upgrading Magento to 2.2.x … Read more

Magento: Upgrading mysql setup of a module

Suppose, you have a module called MyModule. Its version is 0.1.0. Now, you want to do some database changes for the module. You have the mysql setup file (mysql install file) mysql4-install-0.1.0.php in MyModule/sql/mymodule_setup folder of your module. You don’t need to make direct changes to database. You can upgrade your module to make your … Read more