Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
O
OA
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
weiyn
OA
Commits
77d5d457
提交
77d5d457
authored
4月 16, 2020
作者:
wangkr
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update
上级
a547d1e7
显示空白字符变更
内嵌
并排
正在显示
4 个修改的文件
包含
8 行增加
和
115 行删除
+8
-115
config.php
config/config.php
+3
-2
config.php.bb
config/config.php.bb
+0
-108
loginModel.php
webmain/model/loginModel.php
+1
-1
webmainConfig.php
webmain/webmainConfig.php
+4
-4
没有找到文件。
config/config.php
浏览文件 @
77d5d457
...
...
@@ -9,9 +9,9 @@
//调整session为redis
ini_set
(
'session.save_handler'
,
'redis'
);
ini_set
(
'session.save_path'
,
'tcp://192.168.1.
222
:6379'
);
ini_set
(
'session.save_path'
,
'tcp://192.168.1.
70
:6379'
);
ini_set
(
'session.cookie_path'
,
'/'
);
ini_set
(
'session.cookie_domain'
,
'gonn.
com.cn
'
);
ini_set
(
'session.cookie_domain'
,
'gonn.
tech
'
);
ini_set
(
'session.cookie_lifetime'
,
'7200'
);
@
session_start
();
...
...
@@ -61,6 +61,7 @@ $config = array(
'authorkey'
=>
''
,
//系统授权的key,请联系官网获取
'companymode'
=>
false
,
//是否开启多单位模式切换
'encrypt_key'
=>
'INJq4HXEGI'
'base_url'
=>
'http://jz-release.gonn.tech/'
);
//引入配置文件
$_confpath
=
$rock
->
strformat
(
'?0/?1/?1Config.php'
,
ROOT_PATH
,
PROJECT
);
...
...
config/config.php.bb
deleted
100644 → 0
浏览文件 @
a547d1e7
<?php
/**
* 来自:信呼开发团队
* 作者:磐石(rainrock)
* 网址:http://www.rockoa.com/
* 系统默认配置文件,请不要去修改
* 要修改配置文件在:webmain/webmainConfig.php
*/
//调整session为redis
ini_set
(
'session.save_handler'
,
'redis'
);
ini_set
(
'session.save_path'
,
'tcp://192.168.1.222:6379'
);
ini_set
(
'session.cookie_path'
,
'/'
);
ini_set
(
'session.cookie_domain'
,
'gonn.com.cn'
);
ini_set
(
'session.cookie_lifetime'
,
'1800'
);
ini_set
(
'max_execution_time'
,
45
);
ini_set
(
'memory_limit'
,
256
);
@
session_start
();
if
(
function_exists
(
'date_default_timezone_set'
))
date_default_timezone_set
(
'Asia/Shanghai'
);
//设置默认时区
header
(
'Content-Type:text/html;charset=utf-8'
);
define
(
'ROOT_PATH'
,
str_replace
(
'\\'
,
'/'
,
dirname
(
dirname
(
__FILE__
))));
//系统跟目录路径
include_once
(
''
.
ROOT_PATH
.
'/include/rockFun.php'
);
include_once
(
''
.
ROOT_PATH
.
'/include/Chajian.php'
);
include_once
(
''
.
ROOT_PATH
.
'/include/class/rockClass.php'
);
$rock
=
new
rockClass
();
$db
=
null
;
$smarty
=
false
;
define
(
'HOST'
,
$rock
->
host
);
define
(
'REWRITE'
,
'true'
);
if
(
!
defined
(
'PROJECT'
))
define
(
'PROJECT'
,
$rock
->
get
(
'p'
,
'webmain'
));
if
(
!
defined
(
'ENTRANCE'
))
define
(
'ENTRANCE'
,
'index'
);
$config
=
array
(
'title'
=>
'信呼'
,
'url'
=>
''
,
'urly'
=>
'http://www.rockoa.com/'
,
//官网域名地址,修改后就无法提供在线升级了。
'db_host'
=>
'127.0.0.1'
,
'db_user'
=>
'root'
,
'db_pass'
=>
''
,
'db_base'
=>
''
,
'perfix'
=>
''
,
'qom'
=>
''
,
'highpass'
=>
''
,
'install'
=>
false
,
'version'
=>
require
(
'version.php'
),
'path'
=>
'index'
,
'updir'
=>
'upload'
,
'dbencrypt'
=>
false
,
'sqllog'
=>
false
,
'checksign'
=>
false
,
//列表请求是否验证
'memory_limit'
=>
''
,
//运行内存大小
'timeout'
=>
-
1
,
//抄送时间(秒),-1默认的
'db_drive'
=>
'mysqli'
,
//数据库操作驱动
'db_engine'
=>
'MyISAM'
,
//数据库默认引擎
'debug'
=>
true
,
//默认debug模式
'reim_show'
=>
true
,
//首页是否显示REIM
'mobile_show'
=>
true
,
//首页是否显示手机版
'accesslogs'
=>
false
,
//是否记录访问日志和限制IP
'upurl'
=>
''
,
//上传文件附件地址(还不能使用)
'authorkey'
=>
''
,
//系统授权的key,请联系官网获取
'companymode'
=>
false
,
//是否开启多单位模式切换
'encrypt_key'
=>
'INJq4HXEGI'
);
//引入配置文件
$_confpath
=
$rock
->
strformat
(
'?0/?1/?1Config.php'
,
ROOT_PATH
,
PROJECT
);
if
(
file_exists
(
$_confpath
)){
$_tempconf
=
require
(
$_confpath
);
foreach
(
$_tempconf
as
$_tkey
=>
$_tvs
)
$config
[
$_tkey
]
=
$_tvs
;
if
(
isempt
(
$config
[
'url'
]))
$config
[
'url'
]
=
$rock
->
url
();
if
(
!
isempt
(
$config
[
'memory_limit'
])
&&
function_exists
(
'ini_set'
))
ini_set
(
'memory_limit'
,
$config
[
'memory_limit'
]);
if
(
$config
[
'timeout'
]
>-
1
&&
function_exists
(
'set_time_limit'
))
set_time_limit
(
$config
[
'timeout'
]);
}
$_confpath
=
''
.
ROOT_PATH
.
'/config/author.php'
;
if
(
file_exists
(
$_confpath
)){
$config
[
'authorkey'
]
=
require
(
$_confpath
);
}
define
(
'DEBUG'
,
$config
[
'debug'
]);
error_reporting
(
DEBUG
?
E_ALL
:
0
);
define
(
'TITLE'
,
$config
[
'title'
]);
define
(
'URL'
,
$config
[
'url'
]);
define
(
'URLY'
,
$config
[
'urly'
]);
define
(
'PATH'
,
$config
[
'path'
]);
define
(
'DB_DRIVE'
,
$config
[
'db_drive'
]);
define
(
'DB_HOST'
,
$config
[
'db_host'
]);
define
(
'DB_USER'
,
$config
[
'db_user'
]);
define
(
'DB_PASS'
,
$config
[
'db_pass'
]);
define
(
'DB_BASE'
,
$config
[
'db_base'
]);
define
(
'UPDIR'
,
$config
[
'updir'
]);
define
(
'PREFIX'
,
$config
[
'perfix'
]);
define
(
'QOM'
,
$config
[
'qom'
]);
define
(
'VERSION'
,
$config
[
'version'
]);
define
(
'HIGHPASS'
,
$config
[
'highpass'
]);
define
(
'SYSURL'
,
''
.
URL
.
PATH
.
'.php'
);
define
(
'UPURL'
,
$config
[
'upurl'
]);
define
(
'ISMORECOM'
,
$config
[
'companymode'
]);
define
(
'ENCRYPT_KEY'
,
$config
[
'encrypt_key'
]);
$_confpath
=
''
.
ROOT_PATH
.
'/config/iplogs.php'
;
//这个用来限制IP访问的
if
(
file_exists
(
$_confpath
))
include_once
(
$_confpath
);
$rock
->
initRock
();
webmain/model/loginModel.php
浏览文件 @
77d5d457
...
...
@@ -298,7 +298,7 @@ class loginClassModel extends Model
//删除redis
$redis
=
new
Redis
();
$redis
->
connect
(
'192.168.1.
222
'
,
6379
);
$redis
->
connect
(
'192.168.1.
70
'
,
6379
);
$sid
=
'PHPREDIS_SESSION:'
.
$cookieSid
;
$redis
->
delete
(
$sid
);
$redis
->
close
();
...
...
webmain/webmainConfig.php
浏览文件 @
77d5d457
...
...
@@ -4,11 +4,11 @@ if(!defined('HOST'))die('not access');
return
array
(
'url'
=>
'http://oa.gonn.com.cn/'
,
//系统URL
'localurl'
=>
''
,
//本地系统URL,用于服务器上浏览地址
'title'
=>
'广厦网络OA办公系统(
测试-test
)'
,
//系统默认标题
'apptitle'
=>
'广厦网络OA(
测试-test
)'
,
//APP上和手机网页版上的标题
'db_host'
=>
'192.168.1.7
1
:10036'
,
//数据库地址
'title'
=>
'广厦网络OA办公系统(
预生产-release
)'
,
//系统默认标题
'apptitle'
=>
'广厦网络OA(
预生产-release
)'
,
//APP上和手机网页版上的标题
'db_host'
=>
'192.168.1.7
0
:10036'
,
//数据库地址
'db_user'
=>
'root'
,
//数据库用户名
'db_pass'
=>
'
aLN%4Jx7ZsmsoMlOB0XEd7
'
,
//数据库密码
'db_pass'
=>
'
pvv5718J0CwhNfn4B^8^H3igPj#oiQkX
'
,
//数据库密码
'db_base'
=>
'oa'
,
//数据库名称
'db_engine'
=>
'MyISAM'
,
'perfix'
=>
'oa_'
,
//数据库表名前缀
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论