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 . | |
This comment has been minimized.
This comment has been minimized.
You're welcome Jeremy |
This comment has been minimized.
This comment has been minimized.
how does it works. Where can i use these Codes. Is there any install-guide? |
This comment has been minimized.
This comment has been minimized.
Thanks for this, I always forget what permissions to set on what files. very useful little guide |
This comment has been minimized.
This comment has been minimized.
thanks for very simple steps ... |
This comment has been minimized.
This comment has been minimized.
Dear tony, thanks first. when I use the sentence "mysql -h localhost -u oneie_oneie -p100ppneoc oneie_demo < data.sql", it replies Access denied for user"oneie_oneie". then I changed oneie_oneie to mysql admin name "Magento", but it still showes "access denied for user "Magento", could you help to expain... tks. |
This comment has been minimized.
This comment has been minimized.
Thanks, it really helps me a lot |
This comment has been minimized.
This comment has been minimized.
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
This comment has been minimized.
Thanks for this. VERY convenient.