Trabla: Install webERP 4.13.1 on Windows 7 localhost XAMPP 5.6.28 - opensource PHP ERP
webERP is a mature open-source ERP system providing best practise, multi-user business administration and accounting tools over the web.
Solving:
Watch on YouTube
NOTE: SQL script to create database for webERP 4.13.1 used in tutorial:
CREATE DATABASE `weberp`
DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
CREATE USER 'weberp-owner'@'localhost';
CREATE USER 'weberp-owner'@'127.0.0.1';
CREATE USER 'weberp-owner'@'::1';
SET PASSWORD
FOR 'weberp-owner'@'localhost' = PASSWORD('weberp123$%');
SET PASSWORD
FOR 'weberp-owner'@'127.0.0.1' = PASSWORD('weberp123$%');
SET PASSWORD
FOR 'weberp-owner'@'::1' = PASSWORD('weberp123$%');
GRANT ALL PRIVILEGES ON
`weberp`.* TO 'weberp-owner'@'localhost' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON
`weberp`.* TO 'weberp-owner'@'127.0.0.1' WITH GRANT OPTION;
GRANT ALL PRIVILEGES ON
`weberp`.* TO 'weberp-owner'@'::1' WITH GRANT OPTION;
No comments:
Post a Comment