Files
SRCMS/Application/Common/Conf/config.php
Martin Zhou 9cc8998300 SRCMS·轻响应 V1.8正式版
修复:
1. 后台无法查看生成的工单
2. 前端页面JS远程资源失效问题
3.  前台用户密码修改设计缺陷(Issued By 藏形匿影)
优化:
1. 多处代码提升二次开发可读性
新增:
1. 安全工单模块中动态更新功能
2016-12-03 21:42:04 +08:00

27 lines
929 B
PHP
Raw 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
return array(
'MODULE_ALLOW_LIST' => array('Home','Admin',),
'LOAD_EXT_CONFIG' => 'db',
/**
URL不区分大小写
**/
'URL_CASE_INSENSITIVE' => true,
'URL_MODEL' =>0,
'URL_HTML_SUFFIX' =>'html',
'SHOW_ERROR_MSG' => true,
/**
邮件服务配置
**/
'MAIL_ADDRESS'=>'xxxx@126.com', // 此处填写邮箱地址
'MAIL_SMTP'=>'smtp.126.com', // 邮箱SMTP服务器各家邮件服务提供商smtp服务器地址不同
'MAIL_LOGINNAME'=>'xxxxx', // 邮箱登录帐号
'MAIL_PASSWORD'=>'xxxxx', // 邮箱密码QQ邮箱登录密码不是QQ密码
'MAIL_CHARSET'=>'UTF-8', // 邮件字符编码
'MAIL_AUTH'=>true, // 邮箱认证
// true发送的邮件正文为HTML格式 false发送的邮件正文为TXT格式
'MAIL_HTML'=>true,
/**
站点全局开启http-only
**/
'COOKIE_HTTPONLY' => ''
);