Update of /cvsroot/phpmp/phpMP/docs
In directory sc8-pr-cvs1:/tmp/cvs-serv8352/docs
Modified Files:
config.php.sample
Log Message:
Switching over to the new config.php layout as well as moving to the new DBAL.
Index: config.php.sample
===================================================================
RCS file: /cvsroot/phpmp/phpMP/docs/config.php.sample,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** config.php.sample 4 Feb 2003 21:43:16 -0000 1.2
--- config.php.sample 14 Sep 2003 22:11:04 -0000 1.3
***************
*** 9,18 ****
define( "PHPMP_INSTALLED", TRUE );
! define( "DB_TYPE", "mysql" );
! define( "DB_HOST", "localhost" );
! define( "DB_NAME", "phpmp" );
! define( "DB_TABLE_PREFIX", "phpmp_" );
! define( "DB_USER", "phpmp" );
! define( "DB_PASSWD", "passwd" );
?>
--- 9,20 ----
define( "PHPMP_INSTALLED", TRUE );
! $dbinfo = array(
! 'type' => 'mysql',
! 'host' => 'localhost',
! 'name' => 'phpmp',
! 'prefix'=> 'phpmp_',
! 'user' => 'phpmp',
! 'passwd'=> 'password'
! );
?>
|