|
发表于 2003-4-12 20:40:56
|
显示全部楼层
在vb/admin/下有个config.php.new文件,改名为config.php 再编辑它.就象下面(红色处)
<?php
/////////////////////////////////////////////////////////////
// Please note that if you get any errors when connecting, //
// that you will need to email your host as we cannot tell //
// you what your specific values are supposed to be //
/////////////////////////////////////////////////////////////
// type of database running
// (only mysql is supported at the moment)
$dbservertype="mysql";
// hostname or ip of server
$servername="localhost";
// username and password to log onto db server
$dbusername="root";
$dbpassword="";(此处改为你root的密码)
// name of database
$dbname="bbs";( (此处为添加的数据库名 >create database bbs; )
// technical email address - any error messages will be emailed here
$technicalemail = "maowei@cmmail.com";
"config.php" 38L, 1014C |
|