Trabla: Install X2CRM 6.5.2 on windows 7 x64 localhost XAMPP 5.6.28 - opensource PHP CRM
X2CRM is an open source CRM software platform for marketing, sales, customer service and other custom applications powered by an easy to use workflow engine and process management framework.
Official Site - https://www.x2crm.com/
Solving:
Watch on YouTube
SQL script to create database and user for X2CRM 6.5.2, used in tutorial:
CREATE DATABASE `x2crm`
DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci;
CREATE USER 'x2crmowner'@'localhost';
CREATE USER 'x2crmowner'@'127.0.0.1';
CREATE USER 'x2crmowner'@'::1';
SET PASSWORD
FOR 'x2crmowner'@'localhost' = PASSWORD('x2crm123$%');
SET PASSWORD
FOR 'x2crmowner'@'127.0.0.1' = PASSWORD('x2crm123$%');
SET PASSWORD
FOR 'x2crmowner'@'::1' = PASSWORD('x2crm123$%');
GRANT ALL PRIVILEGES ON
`x2crm`.* TO 'x2crmowner'@'localhost' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON
`x2crm`.* TO 'x2crmowner'@'127.0.0.1' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON
`x2crm`.* TO 'x2crmowner'@'::1' WITH GRANT OPTION;
No comments:
Post a Comment