If you encountered any issues with automated installation please follow these steps to manually configure icehrm on your server.
Download and Extract IceHrm Latest Release
If you are using icehrm opensource version download it from (). Make sure to download the release .zip or .gz file (e.g : icehrm_v19.0.OS.zip).
If you have purchased icehrm pro, you can find installation directory inside the files you have downloaded after purchase.
Extract icerm to public web directory root on your web server for now we assume it to be (/var/www/)
Creating MySQL Database
Login to your mysql installation and create a database and a user for icehrm
mysql> create database icehrm;
mysql> create user 'icehrm_user'@'localhost' identified by 'icehrm_pwd';
mysql> grant all on icehrm.* to 'icehrm_user'@'localhost';
Then execute icehrm database scripts on newly created mysql database via console or phpmyadmin.
The two files you need to execute can be found in icehrm installation directory (assuming it to be /var/www/icehrm)
/var/www/icehrm/scripts/icehrmdb.sql
/var/www/icehrm/scripts/icehrm__master__data.sql
mysql> use icehrm;
mysql> source /var/www/icehrm/scripts/icehrmdb.sql
mysql> source /var/www/icehrm/scripts/icehrm_master_data.sql