Skip to content

Instantly share code, notes, and snippets.

@tonyoconnell
Last active August 21, 2023 17:35
Show Gist options
  • Star 18 You must be signed in to star a gist
  • Fork 17 You must be signed in to fork a gist
  • Save tonyoconnell/2351492 to your computer and use it in GitHub Desktop.
Save tonyoconnell/2351492 to your computer and use it in GitHub Desktop.
Install Magento 1.8 With Sample Data By SSH
mkdir demo
cd demo
wget http://www.magentocommerce.com/downloads/assets/1.8.1.0/magento-1.8.1.0.tar.gz
wget http://www.magentocommerce.com/downloads/assets/1.6.1.0/magento-sample-data-1.6.1.0.tar.gz
tar -zxvf magento-1.8.1.0.tar.gz
tar -zxvf magento-sample-data-1.6.1.0.tar.gz
mv magento-sample-data-1.6.1.0/media/* magento/media/
mv magento-sample-data-1.6.1.0/magento_sample_data_for_1.6.1.0.sql magento/data.sql
mv magento/* magento/.htaccess .
chmod o+w var var/.htaccess app/etc
chmod -R o+w media
mysql -h localhost -u root -proot clean < data.sql
chmod 755 mage
./mage mage-setup .
@HydJing
Copy link

HydJing commented Jul 5, 2015

Thanks, it really helps me a lot

@electroidru
Copy link

no direct downloads in possible anymore, so the right way is here https://gist.github.com/piotrekkaminski/9bc45ec84028611d621e

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment