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
|
<?php
// mySQL connection information $MYSQL_HOST = 'localhost'; $MYSQL_USER = 'admin'; $MYSQL_PASSWORD = 'mscmks71s11f132n'; $MYSQL_DATABASE = 'nucleus_mam'; $MYSQL_PREFIX = 'mam_';
// main nucleus directory $DIR_NUCLEUS = 'C:/Program Files (x86)/Apache Software Foundation/Apache2.2/htdocs/nucleus/nucleus/';
// path to media dir $DIR_MEDIA = 'C:/Program Files (x86)/Apache Software Foundation/Apache2.2/htdocs/nucleus/media/';
// extra skin files for imported skins $DIR_SKINS = 'C:/Program Files (x86)/Apache Software Foundation/Apache2.2/htdocs/nucleus/skins/';
// these dirs are normally sub dirs 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/';
// include libs include($DIR_LIBS.'globalfunctions.php'); ?>
|