-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathconfig.sample.php
executable file
·45 lines (40 loc) · 1.54 KB
/
config.sample.php
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
<?php
/**
* This file is part of Kumva.
*
* Kumva is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Kumva is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Kumva. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright Rowan Seymour 2010
*
* Purpose: Configuration settings
*/
// Database constants
define('KUMVA_DB_HOST', 'localhost');
define('KUMVA_DB_NAME', 'databasename');
define('KUMVA_DB_USER', 'username');
define('KUMVA_DB_PASS', 'password');
define('KUMVA_DB_PREFIX', 'tableprefix_');
// Site constants
define('KUMVA_TITLE_SHORT', 'Kumva');
define('KUMVA_TITLE_LONG', 'Kumva: Bantu-English Dictionary');
define('KUMVA_THEME_NAME', 'mytheme');
define('KUMVA_LANG_DEFS', 'rw'); // Language of entries
define('KUMVA_LANG_MEANING', 'en'); // Language of meanings
define('KUMVA_PAGE_SIZE', 10);
define('KUMVA_PRONUNCIATION_CHARS', 'âêîôû');
define('KUMVA_MAILER_SYSTEM_NAME', 'Kumva');
define('KUMVA_MAILER_SYSTEM_ADDRESS', 'kumva-no-reply@example.com');
// Optional extras
define('KUMVA_GOOGLE_SITEVERIFICATION', 'xxxxxxxxxxxxxxxxxxxxx');
?>