Magento – Magento 1.9.3.4 : How to install sample data after magento setup

magento1.9.3sample-data

I want to install sample data after successful magento setup.

What will be the process of installing sample data after magento installation in magento 1.9.3.4.

Thanks

Best Answer

Install sample data before installing Magento, I have waste lot of time in this. Read official documentation to install sample data.

To import database via terminal use this command

mysql -u <db_user> -p <database> < sample.sql

mysql -u root -p  test < sample.sql
Related Topic