Files
xinhu/webmain/webmainConfig.php1
2022-08-14 16:47:40 +08:00

36 lines
1.6 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
if(!defined('HOST'))die('not access');
//这个文件是初始配置文件详细安装配置方法浏览网址http://www.rockoa.com/view_anzz.html
//如果你已经安装成功,这个文件可以删掉哦。
return array(
'title' => '信呼协同办公系统', //系统默认标题
'apptitle' => '信呼OA', //APP上或PC客户端上的标题
'url' => '', //系统URL可以为空自动识别
'db_drive' => 'mysqli', //操作数据库驱动有mysql,mysqli,pdo三种
'db_host' => '127.0.0.1', //数据库地址
'db_user' => 'root', //数据库用户名
'db_pass' => '', //数据库密码
'db_base' => 'rockxinhu', //数据库名称
'randkey' => '', //系统密钥,必须填写(详见上面网址生成)
'perfix' => 'xinhu_', //数据库表名前缀
'localurl' => '', //本地系统URL用于服务器上浏览地址(推荐设置)
'updir' => 'upload', //默认上传的目录文件夹
'xinhukey' => '', //信呼官网key用于在线升级使用
'editpass' => '1', //用户登录修改密码0不用修改1强制用户必须修改
'phppath' => '', //php.exe的地址win下如F:\php\php-5.4.14\php.exeLinux下如/usr/bin/php
'qom' => 'xinhu_', //session、cookie前缀
'highpass' => '', //超级管理员密码,可用于登录任何帐号
'asynkey' => 'asynkey23sss', //这是异步任务key
'openkey' => 'openkey23se', //对外接口openkey
'asynsend' => '0', //是否异步发送提醒消息0同步1自己服务端异步2官网VIP用户异步
'install' => true, //已安装,不要去掉啊
'sqllog' => false, //是否记录sql日志保存upload/sqllog下
);