-
Notifications
You must be signed in to change notification settings - Fork 3
/
nconfig.php
29 lines (27 loc) · 1.34 KB
/
nconfig.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
<?php
/*=======================================================================
86it Network Config File
=======================================================================*/
/************************************************************************/
/* PHP-NUKE: Advanced Content Management System */
/* ============================================ */
/* */
/* Copyright (c) 2002 by Francisco Burzi */
/* http://phpnuke.org */
/* */
/* This program 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 2 of the License. */
/************************************************************************/
if(realpath(__FILE__) == realpath($_SERVER['SCRIPT_FILENAME'])) exit('Access Denied');
global $portaladmin, $dbhost2, $dbname2, $dbuname2, $db2, $network_prefix;
$portaladmin = 2;
define('network', 'enabled');
if ( defined('network') ):
$dbhost2 = 'localhost';
$dbname2 = 'hub_db';
$dbuname2 = 'hub_user';
$dbpass2 = '';
$network_prefix = 'network';
endif;
?>