
Use drush to download commerce kickstart
cd websites
drush dl commerce_kickstart
Use drush to install the downloaded files without demo store
drush si commerce_kickstart --site-name=SiteName --sites-subdir=domain.com
--account-name=user --account-pass=passwd --db-url=mysql://dbuser:passwd@mysql.domain.com:
3306/dbname commerce_kickstart_configure_store_form.install_demo_store=0
Use drush to install the downloaded files with demo store
drush si commerce_kickstart --site-name=SiteName
--sites-subdir=domain.com --account-name=user
--account-pass=passwd --db-url=mysql://dbuser:passwd@mysql.domain.com:3306/dbname
Or if you want to use the GUI during installation to configure the store settings
- Create a normal drupal site using drush qc --domain=site_name.
- Then take note of the database name, user and password in the setting.php file and delete all files and folders in the site folder.
- Now copy over all the files and folders from the directory you downloaded with the drush dl commerce_kickstart command.
- Edit and save the settings.php file with the database setting noted above.
- Use phpMyAdmin to drop all tables in the database
- Run update.php by entering www.your_site_name.com/update.php
- Follow the Gui instructions.