This repository has been archived by the owner on Dec 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsettings.php.sample
64 lines (46 loc) · 1.7 KB
/
settings.php.sample
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<?php
// Site maintenance
$settings['maintenance'] = false;
// Database settings
$db_host = 'localhost'; // Host where MySQL database resides; localhost for most cases
$db_username = 'db_username'; // Database username
$db_password = 'db_password'; // Database password
$db_name = 'db_name'; // Name of database
// FTP settings
$ftp_server = 'localhost'; // FTP server address (exclude ftp://); localhost for most cases
$ftp_username = 'ftp_username'; // FTP server username
$ftp_password = 'ftp_password'; // FTP server password
// Logo (without http://)
$settings['logo'] = 'http://www.example.com/logo.png';
// URL of CMS (without http://)
$settings['url'] = 'http://www.example.com/path/to/cms';
// Agree before registering for site
$settings['agree_page'] = true;
// reCAPTCHA keys
$settings['recaptcha_public_key'] = 'PUBLIC_KEY_HERE';
$settings['recaptcha_private_key'] = 'PRIVATE_KEY_HERE';
// Email address
$settings['email'] = '[email protected]';
// Reply email for automated messages
$settings['replyemail'] ='[email protected]';
// Universal layout
$settings['text_style'] = false;
// Default theme
$settings['theme'] = 'default';
// Allow users to choose own theme
$settings['allow_theme_change'] = true;
// Inbox limit for members (in MB)
$settings['inbox_limit_member'] = 10;
// Inbox limit for administrators
$settings['inbox_limit_admin'] = 'unlimited';
// Path to user files
$settings['files_path'] = '/path/to/store/files/';
// Allow members to comment on posts
$settings['comments'] = true;
// Default images per page in gallery
$settings['img_per_pg'] = 50;
// Maximum image upload size (in MB)
$settings['img_size'] = 5;
// Maximum quantity of images
$settings['img_qnty'] = 'unlimited';
?>