17c66ad05a8e324ca827aa20a0f725e71611db0d
bernd Beispiel-Config

bernd authored 16 years ago

1) <?php
2) 
3) global $config;
4) $config = array();
5) 
6) $config['db_host'] = ':/var/run/mysqld/mysqld-sys.sock';
7) $config['db_user'] = 'username';
8) $config['db_pass'] = 'password';
9) 
10) 
11) $config['modules'] = array("index", "domains", "imap", "mysql", "jabber", "vhosts", "register", "systemuser", "su");
12) 
bernd cracklib ausschaltbar machen

bernd authored 16 years ago

13) $config['use_cracklib'] = true;
bernd Beispiel-Config

bernd authored 16 years ago

14) $config['cracklib_dict'] = 'inc/cracklib_dict';
15) 
16) $config['enable_debug'] = true;
bernd Logger mit Logleveln

bernd authored 14 years ago

17) $config['logging'] = LOG_ERR;
bernd Beispiel-Config

bernd authored 16 years ago

18) 
19) 
bernd MIME-Type konfigurierbar

bernd authored 16 years ago

20) $config['mime_type'] = 'application/xhtml+xml';
21) 
22)