File: conf.php.dist

package info (click to toggle)
php-horde-content 2.0.4-4
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 308 kB
  • ctags: 377
  • sloc: php: 1,454; xml: 474; makefile: 10; sh: 3
file content (24 lines) | stat: -rw-r--r-- 1,293 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
$conf['content']['sql']['mysql']['adapter'] = 'mysql';
$conf['content']['sql']['mysql']['host'] = 'localhost';
$conf['content']['sql']['mysql']['username'] = '';
$conf['content']['sql']['mysql']['password'] = '';
$conf['content']['sql']['mysql']['dbname'] = 'test';
$conf['content']['sql']['mysql']['charset'] = 'utf-8';
$conf['content']['sql']['mysqli']['adapter'] = 'mysqli';
$conf['content']['sql']['mysqli']['host'] = 'localhost';
$conf['content']['sql']['mysqli']['username'] = '';
$conf['content']['sql']['mysqli']['password'] = '';
$conf['content']['sql']['mysqli']['dbname'] = 'test';
$conf['content']['sql']['mysqli']['charset'] = 'utf-8';
$conf['content']['sql']['pdo_mysql']['adapter'] = 'pdo_mysql';
$conf['content']['sql']['pdo_mysql']['host'] = 'localhost';
$conf['content']['sql']['pdo_mysql']['username'] = '';
$conf['content']['sql']['pdo_mysql']['password'] = '';
$conf['content']['sql']['pdo_mysql']['dbname'] = 'test';
$conf['content']['sql']['pdo_mysql']['charset'] = 'utf-8';
$conf['content']['sql']['pdo_pgsql']['adapter'] = 'pdo_pgsql';
$conf['content']['sql']['pdo_pgsql']['username'] = '';
$conf['content']['sql']['pdo_pgsql']['password'] = '';
$conf['content']['sql']['pdo_pgsql']['dbname'] = 'test';
$conf['content']['sql']['pdo_pgsql']['charset'] = 'utf-8';