首页 > CMS建站 > PhpCMS > 正文

phpcms数据库配置文件位置

2020-10-10 21:39:10
字体:
来源:转载
供稿:网友

根目录下caches/configs/database.php,database.php文件内容如下:

  1. <?php 
  2. return array ( 
  3. 'default' => array ( 
  4. 'hostname' => 'localhost'
  5. 'database' => 'zb'
  6. 'username' => 'root'
  7. 'password' => 'root'
  8. 'tablepre' => 'yf_'
  9. 'charset' => 'utf8'
  10. 'type' => 'mysql'
  11. 'debug' => true, 
  12. 'pconnect' => 0, 
  13. 'autoconnect' => 0 
  14. ), 
  15. ); 
  16. ?> 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表