-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.php
More file actions
36 lines (27 loc) · 798 Bytes
/
config.example.php
File metadata and controls
36 lines (27 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?php
function config () {
/* We use a separate database from wordpress */
$config['user'] = '';
$config['pass'] = '';
$config['database'] = '';
$config['host'] = '';
/* Our current domain */
$config['domain'] = '';
/* Admin email */
$config['admin_email'] = '';
/* A single string such as "myorganisationforms" */
$config['shortcode'] = '';
$config['from'] = '';
/* Anti spam answer */
$config['antispam'] = '';
/* Optional Mailman password to add people to mailing list */
$config['mailman'] = '';
/* File path to a text file containing the additional item to the encryption password */
$config['saltfile'] = '';
/* Organisation name */
$config['org_name'] = '';
/* Debug switched on or off */
$config['debug'] = false;
return $config;
}
?>