Skip to content

Commit

Permalink
Merge pull request #2982 from djvdorp/master
Browse files Browse the repository at this point in the history
Add functions needed to Installation instructions and Support/FAQ
  • Loading branch information
laf committed Feb 11, 2016
2 parents 9cca64d + 616820d commit df0e34f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion doc/Installation/Installation-(Debian-Ubuntu).md
Expand Up @@ -73,7 +73,7 @@ Adding the above line to `/etc/snmp/snmpd.conf` and running `service snmpd resta

In `/etc/php5/apache2/php.ini` and `/etc/php5/cli/php.ini`, ensure date.timezone is set to your preferred time zone. See http://php.net/manual/en/timezones.php for a list of supported timezones. Valid
examples are: "America/New York", "Australia/Brisbane", "Etc/UTC".
Please also ensure that allow_url_fopen is enabled.
Please also ensure that `allow_url_fopen` is enabled. Other functions needed for LibreNMS include `exec,passthru,shell_exec,escapeshellarg,escapeshellcmd,proc_close,proc_open,popen`.

### Adding the librenms-user ###

Expand Down
3 changes: 2 additions & 1 deletion doc/Installation/Installation-(RHEL-CentOS).md
Expand Up @@ -135,7 +135,8 @@ You need to configure snmpd appropriately if you have not already done so. An a
Adding the above line to `/etc/snmp/snmpd.conf` and running `service snmpd restart` will activate this config.

In `/etc/php.ini`, ensure date.timezone is set to your preferred time zone. See http://php.net/manual/en/timezones.php for a list of supported timezones. Valid
examples are: "America/New York", "Australia/Brisbane", "Etc/UTC". Please also ensure that allow_url_fopen is enabled.
examples are: "America/New York", "Australia/Brisbane", "Etc/UTC".
Please also ensure that `allow_url_fopen` is enabled. Other functions needed for LibreNMS include `exec,passthru,shell_exec,escapeshellarg,escapeshellcmd,proc_close,proc_open,popen`.

Next, add the following to `/etc/httpd/conf.d/librenms.conf`

Expand Down
2 changes: 2 additions & 0 deletions doc/Support/FAQ.md
Expand Up @@ -73,6 +73,8 @@ If the page you are trying to load has a substantial amount of data in it then i

This is usually due to there being blank spaces outside of the `<?php ?>` php tags within config.php. Remove these and retry.
It's also worth removing the final `?>` at the end of config.php as this is not required.
Another reason why it might not be working is if you disabled functions needed by LibreNMS, which include `allow_url_fopen`
and `exec,passthru,shell_exec,escapeshellarg,escapeshellcmd,proc_close,proc_open,popen`.

#### <a name="faq7"> How do I debug pages not loading correctly?</a>

Expand Down

0 comments on commit df0e34f

Please sign in to comment.