===========================================================================
$NetBSD: MESSAGE,v 1.5 2022/04/30 02:28:40 wen Exp $

To use OrangeHRM, you will need to perform the following steps.

1. To use MySQL server, install databases/mysql57-server and enable it.

	# /etc/rc.d/mysqld start

2. Install apache httpd server, for example www/apache24 and www/ap-php.

3. Be sure to have the following lines in /usr/pkg/etc/httpd/httpd.conf

	DocumentRoot "/usr/pkg/share/orangehrm"
	LoadModule php7_module lib/httpd/mod_php7.so
	AddType application/x-httpd-php .php
	<Directory /usr/pkg/share/orangehrm>
		Options All
		Allow from All
		AllowOverride All
	</Directory>

4. Be sure to have the following lines in /usr/pkg/etc/php.ini.

	extension=iconv.so
	extension=json.so
	extension=pdo.so
	extension=pdo_mysql.so

5. Start apache httpd.

	# /etc/rc.d/apache start

6. Access http://localhost/index.php and setup.
   In detail, please read http://localhost/INSTALL.html .
===========================================================================
