• Categories
    Category
    {{ postCtrl.tags }}
    • {{ category.tag_type }}

      • {{tag.tag_name}}
      • View more
  • Categories
    Category
    {{ postCtrl.tags }}
    • {{ category.tag_type }}

      • {{tag.tag_name}}
      • View more
  • News
  • Tutorials
  • Forums
  • Tags
  • Users
Tutorial News Comments FAQ Related Articles

How to Install Abantecart on Ubuntu 19.04

  • 02:49 unzip master.zip
  • 03:07 mv abantecart-src-master /var/www/abante
  • 03:21 chown -R www-data.www-data /var/www/abante
  • 03:38 chmod -R 755 /var/www/abante
  • 03:56 vim /etc/apache2/sites-available/abante.conf
  • 05:07 a2dissite 000-default.conf
  • 05:17 a2ensite abante.conf
  • 05:28 a2enmod rewrite
  • 05:37 systemctl restart apache2
{{postValue.id}}

Installation of Abante Cart On Ubuntu 19.04

AbanteCart is a free and open source eCommerce platform for merchants to provide the ability in creating online businesses in order to sell products online quickly and efficiently. AbanteCart comes with powerful core features and numerous extensions that allow you to build an online business and start selling your products in minimal time. This article will explain the installation procedure of AbanteCart on Ubuntu 19.04.

Requirements for Abante 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 Ubuntu version by using the following command

root@linuxhelp:~# lsb_release -a
No LSB modules are available.
Distributor ID:	Ubuntu
Description:	Ubuntu 19.04
Release:	19.04
Codename:	disco

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 4
Server version: 5.7.26-0ubuntu0.19.04.1 (Ubuntu)

Copyright (c) 2000, 2019, 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 abantedb;
Query OK, 1 row affected (0.04 sec)

mysql> create user 'abanteuser'@localhost identified by 'Linuxc#45';
Query OK, 0 rows affected (1.00 sec)

mysql> grant all privileges on abantedb.* to 'abanteuser'@localhost;
Query OK, 0 rows affected (0.08 sec)

mysql> flush privileges;
Query OK, 0 rows affected (1.11 sec)

mysql> exit
Bye

Once the database configuration is done, Download the Abante Cart Installation package by using the wget command.

root@linuxhelp:~# wget https://github.com/abantecart/abantecart-src/archive/master.zip
--2019-06-07 14:05:32--  https://github.com/abantecart/abantecart-src/archive/master.zip
Resolving github.com (github.com)... 13.234.210.38
Connecting to github.com (github.com)|13.234.210.38|:443... connected.
HTTP request sent, awaiting response... 302 Found
Location: https://codeload.github.com/abantecart/abantecart-src/zip/master [following]
--2019-06-07 14:05:33--  https://codeload.github.com/abantecart/abantecart-src/zip/master
Resolving codeload.github.com (codeload.github.com)... 192.30.253.120
Connecting to codeload.github.com (codeload.github.com)|192.30.253.120|:443... connected.
HTTP request sent, awaiting response... 200 OK
Length: unspecified [application/zip]
Saving to: ‘master.zip’

master.zip                      [                                 <=>       ]  38.78M  90.3KB/s    in 4m 45s  

2019-06-07 14:10:19 (139 KB/s) - ‘master.zip’ saved [40664358]

Once the download is completed extract the downloaded package using unzip command

root@linuxhelp:~# unzip master.zip
Archive:  master.zip
f8ca442fcedd0699d2ed1130863a0e93b8fa1547
creating: abantecart-src-master/
inflating: abantecart-src-master/.gitignore  
inflating: abantecart-src-master/.travis.yml  
inflating: abantecart-src-master/LICENSE.txt  
inflating: abantecart-src-master/README.md  
inflating: abantecart-src-master/install.txt  
creating: abantecart-src-master/public_html/
.
.
.
creating: abantecart-src-master/tests/phpunit/core/helper/
inflating: abantecart-src-master/tests/phpunit/core/helper/SystemCheckTest.php  
inflating: abantecart-src-master/tests/phpunit/core/helper/UtilsTest.php  
creating: abantecart-src-master/tests/phpunit/core/lib/
inflating: abantecart-src-master/tests/phpunit/core/lib/AConfigTest.php  
inflating: abantecart-src-master/tests/phpunit/core/taskTest.php  
inflating: abantecart-src-master/tests/phpunit/phpunit_mysql.xml  

Move the Abante Cart directory to apache root directory

root@linuxhelp:~# mv abantecart-src-master /var/www/abante

Set the ownership and permission for AbanteCart by using the following command

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

Configure the virtualhost for accessing the Abantecart

root@linuxhelp:~# vim /etc/apache2/sites-available/abante.conf
<Virtualhost *:80>
        Servername www.linuxhelp1.com
        Documentroot /var/www/abante
<directory /var/www/abante>
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 Abante cart

root@linuxhelp:~# a2ensite abante.conf
Enabling site abante.
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 the domain name snap1 Accept the License agreement and click continue. snap2 check The system requirements snap3

Configure the database and admin credentials snap4 snap5 Abantecart application is now being installed. snap6 The installation is now complete, click on the Login to your Control Panel button. snap7 Enter your admin credentials and click Login. snap8 This is the dashboard of Abantecart snap9 With this the installation of Abante cart on Ubuntu 19.04 comes to end

Tags:
jacob
Author: 

Comments ( 0 )

No comments available

Add a comment
{{postCtrl.cmtErrMsg}}

Frequently asked questions ( 5 )

Q

What are their basic requirements for abantecart?

A

Requirements for this as below, LAMP Setup -Apache -Mysql -PHP 7

Q

What is the use of abantecart?

A

AbanteCart is a free and open source eCommerce platform for merchants to provide the ability in creating online businesses in order to sell products online quickly and efficiently. AbanteCart comes with powerful core features and numerous extensions that allow you to build an online business and start selling your products in minimal time

Q

What are the php modules required for abantecart?

A

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

Q

What is the alternative for Abantecart?

A

The alternatives are,alternative for Abantecart listed below,
PrestaShop,

Thirty Bees,

CubeCart,

Zen cart,

Q

Where to download the package for Abantecart on ubuntu?

A

download the package for Abantecart in ubuntu by blow link, https://github.com/abantecart/abantecart-src/archive/master.zip

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 Isaiah ?
What is the use of SUID & SGID commands

How to set the special permissions to the files and folders using SUID and SGID commands...

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
© 2026 LinuxHelp.com All rights reserved. Linux™ is the registered trademark of Linus Torvalds. This site is not affiliated with linus torvalds in any way.