• Categories
    Category
  • Categories
    Category
  • News
  • Tutorials
  • Forums
  • Tags
  • Users
Tutorial Comments FAQ Related Articles

How to Install CS-cart on Linuxmint 19

  • 00:35 lsb_release -a
  • 00:49 mysql -u root -p
  • 02:05 unzip cscart_v4.10.2.zip -d cscart
  • 02:19 mv cscart /var/www/
  • 02:31 chown -R www-data.www-data /var/www/cscart
  • 02:49 chmod -R 755 /var/www/cscart
  • 03:00 vim /etc/apache2/sites-available/cscart.conf
  • 04:11 a2dissite 000-default.conf
  • 04:25 a2ensite cscart.conf
  • 04:36 a2enmod rewrite
  • 04:45 systemctl restart apache2
5837

Installation of CS-cart on Linux Mint 19

CS-Cart is an eCommerce shopping cart software tool. It’ s written in PHP and uses MySQL database system. It is used for theme editor, layout editor, different payment systems, multi-store, integrated SEO and many more. In this tutorial, we will cover the installation of CS-cart on Linux Mint 19

Requirements for CS- cart:

Apache

Mysql

Php and Its modules

php php-xml php-mysql php-mbstring php-zip php-soap php-curl php-gd php-ldap php-imap php-common php-dev libmcrypt-dev php-pear

Installation procedure

Check the Linuxmint version by using the following command.

root@linuxhelp:~# lsb_release -a
No LSB modules are available.
Distributor ID: LinuxMint
Description: Linux Mint 19 Tara
Release: 19
Codename: tara

Configure the MySQL database. Log into MySQL as a root user and make the necessary settings.

root@linuxhelp:~# mysql -u root -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.7.21-1ubuntu1 (Ubuntu)
Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql> create database cscartdb;
Query OK, 1 row affected (0.04 sec)
mysql> create user 'cscartuser'@localhost identified by 'Linuxc#4';
Query OK, 0 rows affected (0.03 sec)
mysql> grant all privileges on cscartdb.* to 'cscartuser'@localhost;
Query OK, 0 rows affected (0.00 sec)
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)
mysql> exit
Bye

List out the files.

root@linuxhelp:~# ls
cscart_v4.10.2.zip

Previously downloaded the CS-cart installation package Now extract the package using unzip command.

root@linuxhelp:~# unzip cscart_v4.10.2.zip -d cscart
Archive: cscart_v4.10.2.zip
inflating: cscart/.htaccess
inflating: cscart/admin.php
inflating: cscart/api.php
creating: cscart/app/
inflating: cscart/app/.htaccess
creating: cscart/app/Tygh/
creating: cscart/app/Tygh/Addons/
inflating: cscart/app/Tygh/Addons/AXmlScheme.php
inflating: cscart/app/Tygh/Addons/InstallerInterface.php
inflating: cscart/app/Tygh/Addons/Loader.php
.
.
.
inflating: cscart/var/themes_repository/responsive/templates/views/tabs/components/product_tabs.tpl
creating: cscart/var/upgrade/
inflating: cscart/var/upgrade/.htaccess
inflating: cscart/var/upgrade/restore.php
creating: cscart/var/snapshots/
inflating: cscart/var/snapshots/4.10.2_ultimate_dist.php
inflating: cscart/copyright.txt

Move the CS-cart directory to the apache root directory.

root@linuxhelp:~# mv cscart /var/www/

Set the ownership and permission for CS-cart by using the following command.

root@linuxhelp:~# chown -R www-data.www-data /var/www/cscart
root@linuxhelp:~# chmod -R 755 /var/www/cscart

Configure the virtual host for accessing the CS-cart.

root@linuxhelp:~# vim /etc/apache2/sites-available/cscart.conf
<Virtualhost *:80>
Servername www.linuxhelp1.com
documentroot /var/www/cscart
<directory /var/www/cscart>
allowoverride all
allow from all
</directory>
</virtualhost>

Disable the default site access.

root@linuxhelp:~# a2dissite 000-default.conf
Site 000-default disabled.
To activate the new configuration, you need to run:
systemctl reload apache2

Enable the site access for accessing the CS-cart.

root@linuxhelp:~# a2ensite cscart.conf
Enabling site cscart.
To activate the new configuration, you need to run:
systemctl reload apache2

Enable the rewrite module.

root@linuxhelp:~# a2enmod rewrite
Enabling module rewrite.
To activate the new configuration, you need to run:
systemctl restart apache2

Restart the apache service by using the following command.

root@linuxhelp:~# systemctl restart apache2

Switch to your browser and enter your domain name. snap1 Accept the license agreement and click next. snap2 Check the configuration setup. snap3

Configure the database details. snap4

Configure the admin credentials. snap5

Installation is in process. snap6

The admin dashboard of CS-Cart is displayed on the screen. snap7

With this, the method to install CS-cart on Linux Mint 19 comes to an end.

Tags:
olivercooke
Author: 

Comments ( 0 )

No comments available

Add a comment

Frequently asked questions ( 5 )

Q

What is the PHP version requirement for this CS-cart?

A

PHP 5.6 and above version will be required for CS-Cart application.

Q

Where to download the CS-cart Installation package?

A

This is the official website of CS cart here you can download the installation package https://www.cs-cart.ie/cs-cart-free-download/

Q

What are the PHP modules required for CS-cart on Centos?

A

These are the PHP-modules required for CS-cart

php-gd php-curl php-common php-mysql php-soap php-mysql php-mcrypt php-mbstring php-zip php-xml php-gd.

Q

What is CS-cart?

A

CS-cart is an eCommerce shopping cart software with an intuitive admin panel. It hosts a plethora of features such as theme editor, layout editor, different payment system, multi-store, integrated SEO, and cloud-powered search function. It is mainly written in PHP and uses the MySQL database system.

Q

What are the requirements for CS-cart?

A

These are the requirements for cs-cart

Apache

MariaDB

PHP and its modules.

Related Tutorials in How to Install CS-cart on Linuxmint 19

Related Tutorials in How to Install CS-cart on Linuxmint 19

How to install WinRAR 5.11 on Linuxmint 18.03
How to install WinRAR 5.11 on Linuxmint 18.03
May 22, 2018
How to Setup VNC Server on Linux Mint 20
How to Setup VNC Server on Linux Mint 20
Dec 22, 2020
How to install and configure samba setup in Linux mint - 18.3
How to install and configure samba setup in Linux mint - 18.3
Mar 26, 2018
Installation SSL Certificate on Ubuntu/Linuxmint/Debian to Secure Apache
Installation SSL Certificate on Ubuntu/Linuxmint/Debian to Secure Apache
Sep 19, 2018
How to Install and Configure Samba on Linux Mint 20
How to Install and Configure Samba on Linux Mint 20
Nov 9, 2020
How to Install NextCloud on Linux Mint 18.3
How to Install NextCloud on Linux Mint 18.3
Feb 27, 2018
How To Install And Update OpenSSL On Linuxmint 18.3
How To Install And Update OpenSSL On Linuxmint 18.3
Jun 8, 2018
How To Install AnyDesk on Linux Mint 18.3
How To Install AnyDesk on Linux Mint 18.3
Apr 11, 2018

Related Forums in How to Install CS-cart on Linuxmint 19

Related Forums in How to Install CS-cart on Linuxmint 19

Linux
isaac class=
Failed to fetch http://security.ubuntu.com/ubuntu/pool/main/m/mysql-8.0/mysql-client-core-8.0_8.0.21-0ubuntu0.20.04.4_amd64.deb 404 Not Found
Dec 4, 2020
Linux Mint
AlxH class=
Complete beginner, install bluegriffon
Jul 1, 2020
Linux
AadrikaAnshu class=
How to add timestamps to history On Any Linux Machine
Jun 18, 2019
Linux Mint
bz0 class=
How to change a function of a key
Jun 7, 2019
Linux Mint
who class=
How to compare multiple files
Nov 10, 2019
NFS (Network File System)
Mike class=
Linux Mint 18.3 - NFS Shares - Only Root Can Mount Share
Oct 4, 2019
Command Line Tools
wayne class=
Deleting windows files booting from mint(usb)
Sep 16, 2017
Ubuntu
Kirin class=
Videos Always Micro-Shutter
Mar 8, 2019

Related News in How to Install CS-cart on Linuxmint 19

Related News in How to Install CS-cart on Linuxmint 19

A Newer and a Faster Window Manager for Tina (Linux Mint 19.2)
A Newer and a Faster Window Manager for Tina (Linux Mint 19.2)
Apr 9, 2019
Linux Mint 18.2 Ubuntu based Operating System is named Sonya
Linux Mint 18.2 Ubuntu based Operating System is named Sonya
May 2, 2017
Refreshed Linux Mint Debian Edition (LMDE) 2 'Betsy' ISO images now available
Refreshed Linux Mint Debian Edition (LMDE) 2 'Betsy' ISO images now available
Mar 14, 2017
The Best Linux Operating System is in the house: Mint 18.2
The Best Linux Operating System is in the house: Mint 18.2
Aug 12, 2017
Linux Mint 18.1 released with smooth features and offers long-term support
Linux Mint 18.1 released with smooth features and offers long-term support
Apr 11, 2017
Linux Mint 18.2 Sonya Beta version now available for download
Linux Mint 18.2 Sonya Beta version now available for download
Jun 7, 2017
Back To Top!
Rank
User
Points

Top Contributers

userNamenaveelansari
135850

Top Contributers

userNameayanbhatti
92510

Top Contributers

userNamehamzaahmed
32150

Top Contributers

1
userNamelinuxhelp
31040

Top Contributers

userNamemuhammadali
24500
Can you help legeek ?
Installation of the call center module

hello

I wish to install a call center in virtual with issabel, I downloaded the latest version of it , but I don' t arrive to install the call center module in issabel. please help me

thanks!

Networking
  • Routing
  • trunk
  • Netmask
  • Packet Capture
  • domain
  • HTTP Proxy
Server Setup
  • NFS
  • KVM
  • Memory
  • Sendmail
  • WebDAV
  • LXC
Shell Commands
  • Cloud commander
  • Command line archive tools
  • last command
  • Shell
  • terminal
  • Throttle
Desktop Application
  • Linux app
  • Pithos
  • Retrospect
  • Scribe
  • TortoiseHg
  • 4Images
Monitoring Tool
  • Monit
  • Apache Server Monitoring
  • EtherApe 
  • Arpwatch Tool
  • Auditd
  • Barman
Web Application
  • Nutch
  • Amazon VPC
  • FarmWarDeployer
  • Rukovoditel
  • Mirror site
  • Chef
Contact Us | Terms of Use| Privacy Policy| Disclaimer
© 2025 LinuxHelp.com All rights reserved. Linux™ is the registered trademark of Linus Torvalds. This site is not affiliated with linus torvalds in any way.