pkgsrc/www/php-glpi/MESSAGE
hauke 3d9f392295 Upgrade GLPI to 9.4.1.1
The full changelog is available at:
<https://github.com/glpi-project/glpi/milestone/30?closed=1>
<https://github.com/glpi-project/glpi/milestone/33?closed=1>

De-support apache 2.2 config in httpd-glpi.conf sample
Re-work the way we hook in pkgsrc specific etc and var paths
2019-03-15 16:32:13 +00:00

33 lines
1 KiB
Text

===========================================================================
$NetBSD: MESSAGE,v 1.5 2019/03/15 16:32:13 hauke Exp $
GLPI requires a web server set up to run PHP scripts;
${PREFIX}/share/examples/glpi/http-glpi.conf is a sample
configuration for Apache.
In addition, you need access to a MySQL server. Create a MySQL glpi user,
and as that user create a database:
# mysql -u root -p
Enter password: <your_mysql_root_passwd>
mysql> CREATE DATABASE glpi;
mysql> CREATE USER 'glpi'@'<web_server_host_name>';
mysql> GRANT ALL PRIVILEGES ON glpi.* TO 'glpi'@'<web_server_host_name>'
IDENTIFIED BY '<your_glpi_passwd>';
mysql> FLUSH PRIVILEGES;
mysql> EXIT
Bye
#
To set up or upgrade GLPI, activate the setup page:
cd ${PREFIX}/share/glpi/install && mv install.php.disabled install.php
Then, open <http://localhost/glpi>. Follow the instructions, enter the
above glpi user's credentials, and select the newly created glpi
database.
Rename install.php when you are done.
===========================================================================