Home  >  Article  >  Backend Development  >  数据库config.php文件内容解释及替换方法

数据库config.php文件内容解释及替换方法

WBOY
WBOYOriginal
2016-06-23 13:02:521272browse

   在网上我们下载的程序,有很多并没有安装程序,而是需要我们手动修改数据库配置文件 有的还需要网站路径如域名等,下面由魅力网络为大家解释

$pe['db_host'] = 'localhost';服务器名
$pe['db_name'] = 'cps1';数据库名
$pe['db_user'] = 'root';数据库用户名
$pe['db_pw'] = '';数据库密码
$pe['db_coding'] = 'utf8';编码
$pe['url_model'] = 'pathinfo_safe';安全码
$pe['domain_cps'] = 'cps.cps.com';网站域名 这里需要改成自己的网站域名 本地调试改成自己的本地目录如 http://localhost/viicms/
$pe['domain_mark'] = 'cps.cps.com';水印或者别的。

define('dbpre','cps_');
?>

本地调试的话我改成后的是这样 我把程序没有放根目录 而是放到了viicms文件夹中 是这样写的

<?php$pe['db_host'] = 'localhost';$pe['db_name'] = 'viicms';$pe['db_user'] = 'root';$pe['db_pw'] = 'root';$pe['db_coding'] = 'utf8';$pe['url_model'] = 'pathinfo_safe';$pe['domain_cps'] = 'http://localhost/viicms/';$pe['domain_mark'] = 'cps.cps.com';define('dbpre','cps_');?>

有什么不懂的,或者无法访问的可以咨询魅力网络

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn