Created
June 7, 2017 21:36
-
-
Save aweijnitz/41ce88cc29310401aa256b621c35fd55 to your computer and use it in GitHub Desktop.
Install CS.Cart on Ubuntu 14.04
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Based on http://docs.cs-cart.com/4.3.x/install/digitalocean.html | |
curl -sL http://cartoma.tk/installer | bash -s -- cart.is-by.us | |
cd /var/www/html/cart.is-by.us | |
wget "https://www.cs-cart.com/index.php?dispatch=pages.get_trial&page_id=297&edition=ultimate" -O cscart.zip && unzip cscart.zip | |
chown -R service ./ | |
chmod 644 config.local.php | |
chmod -R 755 design images var | |
find design -type f -print0 | xargs -0 chmod 644 | |
find images -type f -print0 | xargs -0 chmod 644 | |
find var -type f -print0 | xargs -0 chmod 644 | |
apt-get install -y emacs24-nox |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment