Home > php教程 > php手册 > body text

PHPCMS V9数据库配置文件database.php位置

WBOY
Release: 2016-06-06 19:58:00
Original
1906 people have browsed it

初次用PHPCMSV9的朋友可能找不到数据库配置文件,其实在官方的wiki中已经介绍了。那就是caches\configs\database.php文件。 初次用PHPCMS V9的朋友可能找不到数据库配置文件,其实在官方的wiki中已经介绍了。那就是 caches\configs\database.php 文件。 在本

初次用PHPCMS V9的朋友可能找不到数据库配置文件,其实在官方的wiki中已经介绍了。那就是 caches\configs\database.php 文件。

 

初次用PHPCMS V9的朋友可能找不到数据库配置文件,其实在官方的wiki中已经介绍了。那就是 caches\configs\database.php 文件。

在本地做好了网站之后,上传到服务器上,就要修改caches\configs\database.php 文件才能正常访问数据库,否则会出现如下错误信息:

MySQL Query :
MySQL Error :
MySQL Errno : 0
Can not connect to MySQL server

return array (
 'default' => array (
  'hostname' => 'localhost', //服务器名称
  'database' => 'phpcmsv9', //数据库名
  'username' => 'root', //数据库用户名
  'password' => '88888888', //密码
  'tablepre' => 'pc9_', //数据库前缀,可以是任意,如没特殊要求
  'charset' => 'utf8', //数据库字符集
  'type' => 'mysql', //数据库类型
  'debug' => true, //是否开启错误提示
  'pconnect' => 0, //是否永久连接数据库 0,不是 1,是
  'autoconnect' => 0
  ),
);

?>

修改其中的hostname,database,username和password值内容为服务器相关的值就可以了。

 

source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!