Merge pull request #1647 from laf/issue-12-new

Added mysqli support
This commit is contained in:
Daniel Preussker
2015-08-12 22:06:09 +02:00
17 changed files with 1185 additions and 583 deletions
+16
View File
@@ -19,6 +19,22 @@ $config['log_dir'] = "/opt/librenms/logs";
```
Log files created by LibreNMS will be stored within this directory.
#### Database config
These are the configuration options you will need to use to specify to get started.
```php
$config['db_host'] = "127.0.0.1";
$config['db_user'] = "";
$config['db_pass'] = "";
$config['db_name'] = "";
```
You can also select between the mysql and mysqli php extensions:
```php
$config['db']['extension'] = 'mysqli';
```
#### Progams