Update of /cvsroot/phpmp/phpMP/docs
In directory sc8-pr-cvs1:/tmp/cvs-serv32142
Added Files:
config.php.sample
Log Message:
Added a sample config file for developers.
--- NEW FILE: config.php.sample ---
<?
## DO NOT ALTER THIS FILE.
## This file is automatically generated
## by the phpMP install script. Do not
## alter this file if you don't know
## what you're doing.
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" );
?>
|