本模块需要您在你的数据库配置文件中添加一个数据库配置,
打开:caches\configs\database.php
为数据配置数组添加一个新的,添加过后如下:
return array (
'default' => array (
'hostname' => 'localhost',
'database' => 'phpcms',
'username' => 'root',
'password' => '',
'tablepre' => 'v9_',
'charset' => 'utf8',
'type' => 'mysql',
'debug' => true,
'pconnect' => 0,
'autoconnect' => 0
), //这里网上是默认的,下面是添加的心得数据库配置,犹豫是自己开发的模块,建立数据库表前缀与官方有区别!
'ext' => array (
'hostname' => 'localhost',
'database' => 'phpcms',
'username' => 'root',
'password' => '',
'tablepre' => 'ext_',
'charset' => 'utf8',
'type' => 'mysql',
'debug' => true,
'pconnect' => 0,
'autoconnect' => 0
),
);
不知道如何使用加群:117247521
1