Learn Magento 2 Adobe Commerce

Magento 2 Custom Development, Magento 2 tutorials, Adobe Commerce Tutorials, Magento for beginners, Adobe, Adobe Commerce

How to Install and Configure PHP 8 (for magento)?

Add a Linux repository that includes all PHP versions: $ sudo apt install software-properties-common$ sudo add-apt-repository ppa:ondrej/php Install PHP in Apache$ sudo apt update$ sudo apt install php8.0 libapache2-mod-php8.0$ sudo systemctl restart apache2 Installing PHP extensions:$ sudo apt install php8.0-{Extension-Name} Example$ sudo apt install php8.0-xml php8.0-intl For Magento install below PHP extensions: ext-bcmath ext-ctype ext-curl …

How to Install and Configure PHP 8 (for magento)? Read More »

Magento 2 – Speed Optmization tips, increase your magento website speed

21 Tips to improve Magento 2 Application performance Production Mode– Run below command in terminal to get current application mode:$ bin/magento deploy:mode:show– Now set the application mode to production:$ bin/magento deploy:mode:set productionIt will take a while to switch the modeIf you want to skip the compilation for any reason use below command :$ bin/magento deploy:mode:set production -s Minify …

Magento 2 – Speed Optmization tips, increase your magento website speed Read More »