-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.php
42 lines (32 loc) · 1.15 KB
/
config.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
<?php
// This file contains variables with the locations of the data dirs
// and basic functions that every page can use
// mySQL connection information
$MYSQL_HOST = 'hostname';
$MYSQL_USER = 'username';
$MYSQL_PASSWORD = 'password';
$MYSQL_DATABASE = 'databasename';
$MYSQL_PREFIX = '';
// new in 3.50. first element is db handler, the second is the db driver used by the handler
// default is $MYSQL_HANDLER = array('mysql','mysql');
//$MYSQL_HANDLER = array('mysql','mysql');
//$MYSQL_HANDLER = array('pdo','mysql');
$MYSQL_HANDLER = array('mysql','');
// main nucleus directory
$DIR_NUCLEUS = '/your/path/to/nucleus/';
// media dir
$DIR_MEDIA = '/your/path/to/media/';
// extra skin files for imported skins
$DIR_SKINS = '/your/path/to/skins/';
// these dirs are normally subdirs of the nucleus dir, but
// you can redefine them if you wish
$DIR_PLUGINS = $DIR_NUCLEUS . 'plugins/';
$DIR_LANG = $DIR_NUCLEUS . 'language/';
$DIR_LIBS = $DIR_NUCLEUS . 'libs/';
if (!@file_exists($DIR_LIBS . 'globalfunctions.php')) {
echo "Configuration error, please run the install script or modify config.php";
exit;
}
// include libs
include($DIR_LIBS.'globalfunctions.php');
?>