|
From: Florin C B. <ory...@us...> - 2013-06-28 15:32:40
|
Update of /cvsroot/mxbb/core In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv1281 Modified Files: common.php config.php login.php Log Message: mxpcms since mx-publisher domain is out Index: login.php =================================================================== RCS file: /cvsroot/mxbb/core/login.php,v retrieving revision 1.33 retrieving revision 1.34 diff -C2 -d -r1.33 -r1.34 *** login.php 30 Mar 2011 10:05:23 -0000 1.33 --- login.php 28 Jun 2013 15:32:38 -0000 1.34 *************** *** 6,10 **** * @copyright (c) 2002-2008 MX-Publisher Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 ! * @link http://www.mx-publisher.com * */ --- 6,10 ---- * @copyright (c) 2002-2008 MX-Publisher Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 ! * @link http://mxpcms.sourceforge.net/ * */ Index: config.php =================================================================== RCS file: /cvsroot/mxbb/core/config.php,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** config.php 16 Jun 2013 16:15:59 -0000 1.15 --- config.php 28 Jun 2013 15:32:37 -0000 1.16 *************** *** 6,9 **** --- 6,21 ---- // This file must be put into the MX-Publisher Modular System directory, not into the phpBB directory. + $dbms = 'mysql4'; + + $dbhost = 'localhost'; + $dbname = 'caleacrestina_uv_ro01'; + $dbuser = 'caleacrestina_01'; + $dbpasswd = 'tZDvL7A2'; + + $mx_table_prefix = 'ms_'; + + define('UTF_STATUS', 'phpbb3'); + + define('MX_INSTALLED', true); ?> \ No newline at end of file Index: common.php =================================================================== RCS file: /cvsroot/mxbb/core/common.php,v retrieving revision 1.118 retrieving revision 1.119 diff -C2 -d -r1.118 -r1.119 *** common.php 26 Jun 2013 09:15:22 -0000 1.118 --- common.php 28 Jun 2013 15:32:37 -0000 1.119 *************** *** 200,204 **** * MX-Publisher CORE Includes */ ! //require($mx_root_path . INCLUDES . 'mx_class_loader.' . $phpEx); require($mx_root_path . INCLUDES . 'mx_constants.' . $phpEx); // Also includes phpBB constants require($mx_root_path . INCLUDES . 'db/' . $dbms . '.' . $phpEx); // Load dbal and initiate class --- 200,204 ---- * MX-Publisher CORE Includes */ ! require($mx_root_path . INCLUDES . 'mx_class_loader.' . $phpEx); require($mx_root_path . INCLUDES . 'mx_constants.' . $phpEx); // Also includes phpBB constants require($mx_root_path . INCLUDES . 'db/' . $dbms . '.' . $phpEx); // Load dbal and initiate class *************** *** 209,216 **** if (@phpversion() >= '5.1.2') { ! //$mx_class_loader = new mx_class_loader('mx_', "{$mx_root_path}includes/", $phpEx); ! //$mx_class_loader->register(); ! //$mx_class_loader_ext = new mx_class_loader('mx_ext_', "{$mx_root_path}ext/", $phpEx); ! //$mx_class_loader_ext->register(); } --- 209,216 ---- if (@phpversion() >= '5.1.2') { ! $mx_class_loader = new mx_class_loader('mx_', "{$mx_root_path}includes/", $phpEx); ! $mx_class_loader->register(); ! $mx_class_loader_ext = new mx_class_loader('mx_ext_', "{$mx_root_path}ext/", $phpEx); ! $mx_class_loader_ext->register(); } |