Skip to content

Instantly share code, notes, and snippets.

@tojibon
Last active December 6, 2017 07:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tojibon/1603cb8f074a32efac55901d39dd0fe4 to your computer and use it in GitHub Desktop.
Save tojibon/1603cb8f074a32efac55901d39dd0fe4 to your computer and use it in GitHub Desktop.
Installing PrestaShop 1.7
git clone https://github.com/PrestaShop/PrestaShop.git mystore   
cd mystore   
composer install   
sudo nano /etc/php/7.0/apache2/php.ini   
#add extension=simplexml.so   
#add extension=zip.so   
sudo service apache2 restart   
sudo chown -R www-data:www-data ./   
sudo find ./ -type d -exec chmod 755  {} \;   
sudo find ./ -type f -exec chmod 644  {} \;   
sudo a2enmod rewrite   
sudo service apache2 restart   
xdg-open http://localhost/istore 
#when installation done   
sudo rm -rf install-dev/   
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment