|
From: Jon O. <jon...@us...> - 2008-01-30 09:11:34
|
Update of /cvsroot/mxbb/core In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv7690 Modified Files: config.php Log Message: BlockCP - updated what features should be adminCP options only Schemas - no point updating the module INSERTS with full spec Sitelog - updated sitemap and pagination mod_rewrite - exceptions when in need of technical full paths...eg for module editing actions Nav menu - intial fixes while simplifying this module with less parameters and more tpl freedom ...more to come ;) Tinymce updates wherever needed - admin has full interface, users less options. mx_users - bugfix for renaming users Index: config.php =================================================================== RCS file: /cvsroot/mxbb/core/config.php,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** config.php 8 Jan 2006 23:17:58 -0000 1.10 --- config.php 30 Jan 2008 09:10:55 -0000 1.11 *************** *** 1,10 **** <?php ! // mxBB Portal auto-generated config file // Do not change anything in this file! ! // This file must be put into the mxBB Portal directory, not into the phpBB directory. ?> \ No newline at end of file --- 1,19 ---- <?php ! // mxBB Modular System auto-generated config file // Do not change anything in this file! ! // This file must be put into the mxBB Modular System directory, not into the phpBB directory. + $dbms = 'mysql'; + $dbhost = 'localhost'; + $dbname = 'test'; + $dbuser = 'root'; + $dbpasswd = ''; + + $mx_table_prefix = 'mx_'; + + define('MX_INSTALLED', true); ?> \ No newline at end of file |