Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYPC
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
2
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
Rock Zhang
9 years ago
Commit
19000262f7cbcec963f465aa91ab56ef14450055
1 parent
5e4041f1
修复开发环境cookie作用域设置错误导致的bug
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
yohobuy/m.yohobuy.com/public/index-dev.php
yohobuy/m.yohobuy.com/public/index-dev.php
View file @
1900026
...
...
@@ -3,7 +3,7 @@ use Yaf\Application;
define
(
'SITE_MAIN'
,
'http://m.dev.yohobuy.com'
);
// 网站主域名
define
(
'OLD_MAIN'
,
'http://m.yohobuy.com'
);
// 网站旧域名
define
(
'COOKIE_DOMAIN'
,
'.
m.
dev.yohobuy.com'
);
// COOKIE作用域
define
(
'COOKIE_DOMAIN'
,
'.dev.yohobuy.com'
);
// COOKIE作用域
define
(
'SUB_DOMAIN'
,
'.dev.yohobuy.com'
);
// 子域名后缀
define
(
'USE_CACHE'
,
false
);
// 缓存的开关
define
(
'APPLICATION_PATH'
,
dirname
(
__DIR__
));
// 应用目录
...
...
Please
register
or
login
to post a comment