Manual Installation
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 (https://github.com/gamonoid/icehrm/releases). 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
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
Creating Configuration File
Inside <icehrm>/app/ directory you will find:
config.sample.php
Rename this file to config.php
and start updating it.
You may change app name and social media urls to your company social media accounts:
So above section can be changed to:
By default CLIENT_NAME should be app
For updating urls you need to know the absolute path of your icehrm installation and url to your icehrm installation.
For an example we assume path to icehrm is : /var/www/icehrm/ and icehrm web url to be http://your-company-domain.com/icehrm then paths and urls should be updated as below.
If you are using windows note that all the path should be specified with forward slash
e.g
Then you can update the database configurations as shown below:
If you would like to upload files larger than 10MB you can update MAX_FILE_SIZE_KB config.
Last updated