Wednesday 7 January 2015

Magento2 Installation Steps

Step1: Download the Magento2 from https://github.com/magento/magento2  (or)
Step2: Download the composer.exe file from https://getcomposer.org/download/ and install it.
Step3: Copy the all composer files in magento2 root folder
Step4: Open the command prompt and go to magento2 folder and install the Composer Install
            Ex:c:\xampp\htdocs\magento2-master>composer install
If you got the any error like ‘php’ is not existing in external memory, we are create the Environment variables  in Advanced settings.
Step5:Run the magento2 in url like
             http://localhost/magento2-master/setup
Step6: Click on the Agree and Setup Magento Button
Step7: Click on Start Readiness Check button
Step8: Add the Database Details like
Database server hostname -- Mandatory
Database server username – Mandatory
Database server password – Not always Necessary
Database Name – Mandatory
Table Prefix – Optional
Step9: Select the Web configuration details
Step10: Customize your store Details like Time Zone, Currency, Language
Step11: Create the Admin Account Details with Username, Email, Password
Step12: Last step is Install the magento2 go to Homepage and Backend
               Homepage: http://localhost/magento2-master/

                Backend/admin: http://localhost/magento2-master/admin/

No comments:

Post a Comment

Product Collection with out of stock and In Stock in Magento 2

Product collection with out of stock and In stock. use Magento\Catalog\Model\ResourceModel\Product\CollectionFactory; $collection = $th...