PHPcms V9企业招聘模块是一款专为使用PHPcms V9内容管理系统的企业设计的人才招聘插件,版本1.0提供了简洁高效的职位发布、简历管理等功能,帮助企业便捷地进行人才招募。
本模块需要您在数据库配置文件中添加一个新的数据库配置,请打开caches\configs\database.php 文件,并为数据配置数组添加一个新项。完成后的代码如下:
```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
),
);
```