9.4 C
Munich
Friday, March 24, 2023

Magento 2.3.5 Installation

Must read

Welcome back to my Magento 2 tutorial. Today, I am going to show everybody a best practice, How to magento 2.3.5 installation and whats new in magento 2.3.5-p1 which make magento robust and faster.Before going to installation we will talk regarding what update and new in magento 2.3.5-p1.

Step 1 : Compatibility : Magento 2.3.5 Installation

Magento modules that have been built to be decoupled from the Magento Commerce core release process; this allows us to release iterations of these modules faster to merchants who are willing to accept a little risk in exchange for earlier access to new features.

The following table shows the release status of Magento extension versions relative to Magento Commerce.

Magento 2.3.5-p1
AMAZON SALES CHANNEL - MAGENTO 2.3.5-P1
AMAZON SALES CHANNEL – MAGENTO 2.3.5-P1
MAGENTO INVENTORY - MAGENTO 2.3.5-P1
MAGENTO INVENTORY – MAGENTO 2.3.5-P1
PAGE BUILDER - MAGENTO 2.3.5-P1
PAGE BUILDER – MAGENTO 2.3.5-P1

These are important points which get updated in Magento 2.3.5 which make Magento more robust and fast,helps in easy to handle and earn more money due to this updated feature.

Now move toward the installation part of Magento 2.3.5-p1 installation.

If you are new and want know more about Magento 2, check with below link book which is a step-by-step instructional guide to get you started easily with Magento 2 and teach you to manage and build World-Class online stores.

Magento 2 – Build World-Class online stores: Create rich and compelling solutions for themes, and extensions

Step 2 : Check with Installation of composer

  1. Run the following command to check if the composer has already been installed:
composer --help
composer list --help

2. If nothing displays or you face any errors, please install Composer:

Composer Download and Install.
Composer Download and Install.

Step 3: Download Magento 2.3.5

Run the following command in the root directory.

composer create-project --repository-url=https://repo.magento.com/ magento/project-community-edition:2.3.5-p1 <installed-directory-name>
Eg : composer create-project --repository-url=https://repo.magento.com/ magento/project-community-edition=2.3.5-p1 magento235/

Step 4: Create The Database

Create an empty database to work with MySQL in case you have already have correct permissions:

echo "CREATE DATABASE magento2" | mysql -u[mysqluser] -p

OR directly add database name to phpMyadmin.

Step 5: Install Magento 2.3.5

Run the following lines in Command Line to install your Magento 2:

php bin/magento setup:install
--base-url="http://yoururl.com/"
--db-host="localhost"
--db-name="dbname"
--db-user="dbuser"
--db-password="dbpass"
--admin-firstname="admin"
--admin-lastname="admin"
--admin-email="[email protected]"
--admin-user="admin"
--admin-password="admin123"
--language="en_US"
--currency="USD"
--timezone="America/Chicago"
--use-rewrites="1"
--backend-frontname="admin"
Eg : php bin/magento setup:install --base-url="http://localhost/magento235" --db-host="localhost" --db-name="magento235" --db-user="root" --db-password="" --admin-firstname="admin" --admin-lastname="admin" --admin-email="[email protected]" --admin-user="admin" --admin-password="admin123" --use-rewrites="1" --backend-frontname="admin"

SOLVED Magento 2.3.5 Error Gd2.php On Installation

Magento 2.3 admin blank page

Step 6 : Test and see the result

Run the command lines following:

php bin/magento indexer:reindex
php bin/magento setup:upgrade
php bin/magento setup:static-content:deploy
php bin/magento cache:flush

After Execution of this command, please open below link in browser and check with the result of installation.

http://localhost/magento235

In the below video tutorial given step by step practically

- Advertisement -spot_img

More articles

LEAVE A REPLY

Please enter your comment!
Please enter your name here

- Advertisement -spot_img

Latest article