Fixup fromcvs/togit conversion
[minix-pkgsrc.git] / misc / php-orangehrm / MESSAGE
bloba79f3319342dcb7e65c9bf80fb5675ea96a81902
1 ===========================================================================
2 $NetBSD: MESSAGE,v 1.1.1.1 2011/12/12 17:39:09 ryoon Exp $
4 To use OrangeHRM, you will need to perform the following steps.
6 1. To use MySQL server, install databases/mysql51-server and enable it.
8         # ${RCD_SCRIPTS_DIR}/mysqld start
10 2. Install apache httpd server, for example www/apache22 and www/ap-php.
12 3. Be sure to have the following lines in ${PREFIX}/etc/httpd/httpd.conf
14         DocumentRoot "${PREFIX}/share/orangehrm"
15         LoadModule php5_module lib/httpd/mod_php5.so
16         AddType application/x-httpd-php .php
17         <Directory ${PREFIX}/share/orangehrm>
18                 Options All
19                 Allow from All
20                 AllowOverride All
21         </Directory>
23 4. Be sure to have the following lines in ${PREFIX}/etc/php.ini.
25         extension=mysql.so
26         extension=mysqli.so
27         extension=pdo.so
28         extension=pdo_mysql.so
30 5. Start apache httpd.
32         # ${RCD_SCRIPTS_DIR}/apache start
34 6. Access http://localhost/index.php and setup.
35    In detail, please read http://localhost/INSTALL.html .
36 ===========================================================================