Install OrangeHRM 3.3.3 on Windows 7 localhost - open source HR management

Trabla: Install OrangeHRM 3.3.3 on Windows 7 x64 ( XAMPP 5.6.24 ) localhost - open source PHP human resource ( HR ) management software


Install OrangeHRM 3.3.3 on Windows 7 localhost - open source HR management


OrangeHRM - human resource management (HRIS) solution, that is available both as an open source and an advanced hosted application (SaaS). OrangeHRM is released under the GNU General Public License.
The architecture of the application targets small and medium enterprises. The functionality includes employee information management, employee absence management, recruitment management, employee performance evaluation and other HR management tools.


Solving:



SQL Script used in tutorial to create OrangeHRM database:


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

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

SET PASSWORD 
FOR 'orangehrm-owner'@'localhost' = PASSWORD('orangehrm123');
SET PASSWORD 
FOR 'orangehrm-owner'@'127.0.0.1' = PASSWORD('orangehrm123');
SET PASSWORD 
FOR 'orangehrm-owner'@'::1' = PASSWORD('orangehrm123');


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





No comments:

Post a Comment