forked from blazoncek/n3o_phpcms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_config.sample.php
executable file
·73 lines (66 loc) · 3.03 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
/*
.---------------------------------------------------------------------------.
| Software: N3O CMS (frontend and backend) |
| Version: 2.2.0 |
| Contact: contact author (also http://blaz.at/home) |
| ------------------------------------------------------------------------- |
| Author: Blaž Kristan ([email protected]) |
| Copyright (c) 2007-2014, Blaž Kristan. All Rights Reserved. |
| ------------------------------------------------------------------------- |
| License: Distributed under the Lesser General Public License (LGPL) |
| http://www.gnu.org/copyleft/lesser.html |
| ------------------------------------------------------------------------- |
| This file is part of N3O CMS (frontend and backend). |
| |
| N3O CMS is free software: you can redistribute it and/or |
| modify it under the terms of the GNU Lesser General Public License as |
| published by the Free Software Foundation, either version 3 of the |
| License, or (at your option) any later version. |
| |
| N3O CMS 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 Lesser General Public License for more details. |
'---------------------------------------------------------------------------'
*/
/**
* The base configurations for N3O site.
*/
define('AppName', 'N3O-CMS'); // change to your liking
define('AppVer', '2.2.0'); // DO NOT CHANGE until DB changes
define('PostMaster', '[email protected]');
define('DefLang', 'En'); // default language (must exist in DB)
/**
* SQL settings - You can get this info from your web host
*/
define('SQLType', 'MySQL'); // only MySQL implemented fully (MsSQL, Ora)
define('DSN', 'N3OCMS'); // DB name
define('DBUS', 'dbuser'); // username
define('DBPW', 'dbpass'); // password
define('DBHOST', 'localhost'); // host
define('DBCS', 'utf8'); // character set
define('DBCOLLATE','utf8_general_ci'); // collation
/**
* Authentication Unique Keys and Salts.
*/
define('PWSALT', 'N3O_CMS:'); // be carefull to update passwords in DB
/**
* Absolute path to home directory.
*/
define('ABSPATH', dirname(__FILE__));
/**
* LDAP settings
*/
define('LDAPSERVER', "srv.domain.com");
define('LDAPCHECK', "OU=ou,DC=domain,DC=com");
/**
* Google Analytics ID
*/
//define('ANALYTICS_ID', 'UA-xxxxxxx-x');
/**
* Apache development settings
*/
//ini_set('error_reporting', E_ALL-E_NOTICE);
//ini_set('display_errors', 1);
?>