Install X-Cart 5.3.2.2 on Windows 7 localhost XAMPP 5.6.28 - opensource PHP shopping cart

Trabla: Install X-Cart 5.3.2.2 on Windows 7 x64 localhost XAMPP 5.6.28 - opensource PHP shopping cart for eCommerce


Install X-Cart 5.3.2.2 on Windows 7 localhost XAMPP 5.6.28 - opensource PHP shopping cart


X-Cart - free shopping cart software, easy to use, easy to maintain, easy to modify. X‑Cart is the PCI DSS compliant software you can run on your own server. It works on any hosting, even a shared one
Official Site - https://www.x-cart.com/

Solving:



Watch on YouTube

SQL script to create database and user for X-Cart 5.3.2.2, used in tutorial:

CREATE DATABASE `xc5` 
DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;

CREATE USER 'xc5-owner'@'localhost'; 
CREATE USER 'xc5-owner'@'127.0.0.1';
CREATE USER 'xc5-owner'@'::1';

SET PASSWORD 
FOR 'xc5-owner'@'localhost' = PASSWORD('xc5123$%');
SET PASSWORD 
FOR 'xc5-owner'@'127.0.0.1' = PASSWORD('xc5123$%');
SET PASSWORD 
FOR 'xc5-owner'@'::1' = PASSWORD('xc5123$%');


GRANT ALL PRIVILEGES ON 
`xc5`.* TO 'xc5-owner'@'localhost' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON 
`xc5`.* TO 'xc5-owner'@'127.0.0.1' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON 
`xc5`.* TO 'xc5-owner'@'::1' WITH GRANT OPTION;



No comments:

Post a Comment