{"id":19376,"date":"2016-06-20T01:44:09","date_gmt":"2016-06-20T06:44:09","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=19376"},"modified":"2022-06-03T03:42:50","modified_gmt":"2022-06-03T08:42:50","slug":"how-to-install-quick-cart-shopping-cart-on-centos-7","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-install-quick-cart-shopping-cart-on-centos-7\/","title":{"rendered":"How to install Quick.Cart shopping cart on CentOS 7"},"content":{"rendered":"
Quick.Cart is a free and open source shopping cart script written in PHP. Quick.Cart is very simple, but yet powerful shopping card and it can be installed and run on almost all Linux distributions. It does not require an SQL database and it can be installed in less than 5 minutes. In this tutorial we will guide you through the process of installing Quick.Cart on a CentOS 7 VPS<\/a> with Apache and PHP.<\/p>\n In order to run Quick.Cart on a CentOS 7 VPS, we have to install or enable the following requirements<\/p>\n – PHP version 5.2.0 or higher with the GD module enabled First of all login to your server via SSH as user root<\/p>\n And as usual, run the following command to make sure that all services installed on your server are up to date<\/p>\n Now, we will install Apache web server<\/p>\n Once the web server is installed, start it and set it to start automatically on server boot<\/p>\n Since Quick.Cart is written in PHP, we will install PHP and the PHP-GD extension<\/p>\n That’s all, your server is ready for installing Quick.Cart.<\/p>\n Go to their official website an download the latest release of the script to your server<\/p>\n Create a new directory for Quick.Cart in the document root directory on your server<\/p>\n and unpack the downloaded zip archive to the newly created directory<\/p>\n All Quick.Cart file have to be owned by the Apache user. Change the ownership by executing the following command<\/p>\n Now, we will create Apache virtual host, so you can access Quick.Cart with your domain name.<\/p>\n Create a \u2018\/etc\/httpd\/conf.d\/vhosts.conf\u2019 file with the following content:<\/p>\n Create a \u2018vhosts.d\u2019 directory is it is not already created.<\/p>\n and create the virtual host with the following content<\/p>\n Save the file and restart the web server for the changes to take effect<\/p>\n Once all of the above steps are completed, you will be able to access your new Quick.Cart website at http\/\/yourdomain.com . To access the administrator panel, add ‘admin.php’ (ttp\/\/yourdomain.com\/admin.php) at the end of the URL. The default login credentials generated by Quick.Cart are admin\/admin . You should change the admin password immediately after you login to the administrator panel. It is also recommended to change the name of the ‘admin.php’ file for security reasons.<\/p>\n You can change the name of the file using the following command<\/p>\n Now you will be able to access the administrator panel at http\/\/yourdomain.com\/s2jsd2s.php<\/p>\n Of course you don\u2019t have to do any of this if you use one of our CenoOS VPS Hosting services<\/a>, in which case you can simply ask our expert Linux admins to install Quick.Cart for you. They are available 24\u00d77 and will take care of your request immediately.<\/p>\n PS.<\/strong> <\/span>If you liked this post please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":" Quick.Cart is a free and open source shopping cart script written in PHP. Quick.Cart is very simple, but yet powerful … <\/p>\n
\n– Web Server (Apache web server is recommended)<\/p>\nssh root@IP_Adress<\/pre>\n
yum -y update<\/pre>\n
yum -y install httpd<\/pre>\n
systemctl start httpd\r\nsystemctl enable httpd<\/pre>\n
yum -y install php php-gd<\/pre>\n
wget http:\/\/opensolution.org\/download\/home.html?sFile=Quick.Cart_v6.7.zip<\/pre>\n
mkdir \/var\/www\/html\/quickcart<\/pre>\n
unzip home.html\\?sFile\\=Quick.Cart_v6.7.zip -d \/var\/www\/html\/quickcart<\/pre>\n
chown -R apache:apache \/var\/www\/html\/quickcart\/<\/pre>\n
IncludeOptional vhosts.d\/*.conf<\/pre>\n
mkdir \/etc\/httpd\/vhosts.d\/<\/pre>\n
vim \/etc\/httpd\/vhosts.d\/yourdomain.com.conf\r\n\r\n<VirtualHost YOUR_SERVER_IP:80>\r\nServerAdmin webmaster@yourdomain.com\r\nDocumentRoot \"\/var\/www\/html\/quickcart\/\"\r\nServerName yourdomain.com\r\nServerAlias www.yourdomain.com\r\nErrorLog \"\/var\/log\/httpd\/yourdomain.com-error_log\"\r\nCustomLog \"\/var\/log\/httpd\/yourdomain.com-access_log\" combined\r\n\r\n<Directory \"\/var\/www\/html\/quickcart\/\">\r\nDirectoryIndex index.html index.php\r\nOptions FollowSymLinks\r\nAllowOverride All\r\nRequire all granted\r\n<\/Directory>\r\n<\/VirtualHost><\/pre>\n
systemctl restart httpd<\/pre>\n
mv \/var\/www\/html\/quickcart\/admin.php \/var\/www\/html\/quickcart\/s2jsd2s.php<\/pre>\n
\n