Home > Article > CMS Tutorial > Where is the DreamWeaver cms database configuration file?
Where is the Dreamweaver cms database configuration file?
Some friends need to change the dede space and dede database. Modify database configuration. Such as database prefix, database name, etc.
Where can I find the dede database configuration file?
The path where the dede database configuration file is located is: /data/common.inc.php
Modification method:
The following is the content of the dede database configuration file:
<?php //数据库连接信息 $cfg_dbhost = 'localhost';网站地址 $cfg_dbname = 'data';数据库名 $cfg_dbuser = 'data_user';数据库用户名 $cfg_dbpwd = 'admin';数据库连接密码 $cfg_dbprefix = 'dede_';数据库前缀 $cfg_db_language = 'gbk';数据库语言版本 ?>
You can modify it according to your needs .
Recommended tutorial: dedecms tutorial
The above is the detailed content of Where is the DreamWeaver cms database configuration file?. For more information, please follow other related articles on the PHP Chinese website!