Change Customer Login Title in Magento 2 Create a customer_account_login.xml file to change title of customer login For theme – app/design/frontend/{Packagename}/{themename}/Magento_Customer/layout/customer_account_login.xml For module – app/code/{Package}/{Module}/view/frontend/layout/customer_account_login.xml… Read More →
Articles by Al Mahbub Khan
# Edit your php.ini file- session.gc_maxlifetime = 1440 # Go to config.inc.php in phpmyadmin add the following code.. $cfg[‘LoginCookieValidity’] = 60*60*24*7; // 60*60*24*7 = one… Read More →
How to Automatically Mount Disk Partitions on Boot in Ubuntu Linux: Comprehensive Step-by-Step Guide
Automating the mounting of disk partitions in Ubuntu ensures seamless access to your data every time your system starts. This process eliminates the need for… Read More →
The error “/dev/sda5: Inodes that were part of a corrupted orphan linked list found” indicates filesystem corruption on the /dev/sda5 partition, which often occurs due… Read More →
Reading EPUB eBooks on Ubuntu is straightforward once you pick the right reader and installation method. This guide walks through the best choices for Ubuntu… Read More →
Install and Use YouTube-DL on Ubuntu 18.04 Install YouTube-DL – A Command Line Video Download Tool for Linux sudo snap install youtube-dl Update youtbe-dl Snap… Read More →
Ubuntu 17.10, codenamed Artful Aardvark, marked a significant shift in the Linux ecosystem by replacing the Unity desktop environment with GNOME Shell as the default… Read More →
sudo apt-get update Type “sudo apt-get install ubuntu-desktop” to install the Gnome desktop. Type “sudo apt-get install ubuntu-unity-desktop” to install the Gnome desktop. Type “sudo… Read More →
Linux systems offer a vast array of customization options, allowing users to tailor their experience to specific needs and preferences. One of the most impactful… Read More →
When you first install a clean version of Ubuntu, you may notice that certain media files—such as MP3s, high-definition MP4 videos, and proprietary web fonts—do… Read More →
Magento 2, now rebranded under Adobe Commerce, powers countless e-commerce stores with its robust features and scalability. However, one common challenge store owners and developers… Read More →
Change to production mode bin/magento deploy:mode:set production Change to developer mode bin/magento deploy:mode:set developer Another way Goto app/etc/ and open env.php Change current mode MAGE_MODE’ => ‘default’ to… Read More →