Skip to content

Instantly share code, notes, and snippets.

@aweijnitz
Created June 7, 2017 21:36
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 aweijnitz/41ce88cc29310401aa256b621c35fd55 to your computer and use it in GitHub Desktop.
Save aweijnitz/41ce88cc29310401aa256b621c35fd55 to your computer and use it in GitHub Desktop.
Install CS.Cart on Ubuntu 14.04
#!/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