Skip to main content

Magento 2.2.0 (Full Release with Sample Data) Install

Magento 2.2.0 (Full Release with Sample Data) 






Magento is an open-source e-commerce platform written in PHP. The software was originally developed by Varien, Inc, a US private company.


Developer(s): Magento Inc
Stable release: 2.2 / September 26, 2017
Initial release: March 31, 2008; 9 years ago
License: OSL v3, AFL v3
Written in: PHP


Magento Clients


Configure in localhost using xampp in windows 10

First download xampp with these php versions, MYSQL and apache versions.

  1. 7.0.2, 7.0.6–7.0.x to verify if PHP is installed already, enter php -v. If PHP is installed
  2.  Magento requires Apache 2.2.x or 2.4.x To verify the Apache version, you’re currently running, enter: apache -v
  3. MySQL 5.7(MariaDB and Percona are compatible with Magento because it support MySQL 5.6 APIs.)

Next start to install Magento 2.2.0

  • Go to the Magento official website and download Magento 2
  •  Now go to xampp/htdocs and create the directory. Extract the Magento 2archive in xampp/htdocs/’your_dir_name’.
  • Now open your XAMPP Control Panel.
  • Click on Apache’s Config and then navigate to PHP (php.ini).
  • Now search for extension=php_intl.dll and extension=php_xsl.dll, and remove the semicolon “;” at the beginning from both.
  • Search for max_execution_time and change its value to 180000.
  • Save and Start the Apache and MySQL services from XAMPP control panel.
  • Go to phpMyAdmin and create a database.
  • Open the web browser and explore localhost/magento. Now click on Agree and Setup Magento.




  • The first step for installing Magento 2 on localhost is to perform a Readiness check. After successful checking, click on Next.
  • If unsuccessful you have to un comment that php extentions from php.ini
  • Now the database configuration page will appear. Here, enter database details and database name which will be the same as the one you created in phpMyAdmin. After completing this step, click on Next.
  • Now complete the web configuration, your store, and admin panel address. After web configuration, click on Next. Remove generated numbers from admin address.
  • Now customize your store and click on Next.
  • Create an Admin account and click on Next.
  • Now hit the Install Now button.
  • Open your store by exploring localhost/’dir_name’
  • Open your admin panel by exploring localhost/admin
  • If not loading css and javascript files,

  1. ROOT > var > cache > *DELETE ALL*
  2. ROOT > var > page_cache > *DELETE ALL*
  3. ROOT > var > session > *DELETE ALL*
  4. ROOT > app > etc > di.xml open file and change, Magento\Framework\App\View\Asset\MaterializationStrategy\Symlink to Magento\Framework\App\View\Asset\MaterializationStrategy\Copy
  5. ROOT > pub > static > DELETE ALL EXCEPT .HTACCESS
  • One or more integrations have been reset because of a change to their xml configs” if this message came in admin view,
  • That is because of Magento 2 comes with a new module called Shopial_Facebook that adds a new "integration" to the platform. Something facebook related...not important.
  • You should not worry about it. Ignore it
  • it can be disabled as follows.
php bin/magento module:disable Shopial_Facebook

Comments

Post a Comment