Toggle navigation
Toggle navigation
This project
Loading...
Sign in
fe
/
YOHOBUYWAP
·
Commits
Go to a project
GitLab
Go to group
Project
Activity
Files
Commits
Pipelines
0
Builds
0
Graphs
Milestones
Issues
0
Merge Requests
0
Members
Labels
Wiki
Forks
Network
Create a new issue
Download as
Email Patches
Plain Diff
Browse Files
Authored by
hf
9 years ago
Commit
760e6cb86fbccc2bc9ba4b70d00444be4fa2ca94
1 parent
1adbcac7
fixes bug to brand list not return brand id
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
12 additions
and
8 deletions
yohobuy/m.yohobuy.com/application/modules/Product/controllers/Index.php
yohobuy/m.yohobuy.com/configs/application.developer.ini
yohobuy/m.yohobuy.com/configs/application.preview.ini
yohobuy/m.yohobuy.com/configs/application.production.ini
yohobuy/m.yohobuy.com/configs/application.testing.ini
yohobuy/m.yohobuy.com/configs/core/cache.developer.config.ini
yohobuy/m.yohobuy.com/configs/core/cache.production.config.ini
yohobuy/m.yohobuy.com/configs/core/cache.testing.config.ini
yohobuy/m.yohobuy.com/application/modules/Product/controllers/Index.php
View file @
760e6cb
...
...
@@ -91,7 +91,7 @@ class IndexController extends AbstractAction
$brandId
=
0
;
if
(
isset
(
$brandIds
[
0
]))
{
$brandId
=
$brandIds
[
0
];
}
}
// 当前的登录用户UID
$uid
=
$this
->
getUid
();
...
...
@@ -114,6 +114,10 @@ class IndexController extends AbstractAction
'gender'
=>
FILTER_DEFAULT
,
'p_d'
=>
FILTER_DEFAULT
,),
false
);
$condition
[
'brand'
]
=
$brandId
;
if
(
$brandId
===
0
)
{
$condition
[
'query'
]
=
$domain
;
}
if
(
isset
(
$condition
[
'gender'
]))
{
$condition
[
'gender'
]
=
rawurldecode
(
$condition
[
'gender'
]);
...
...
yohobuy/m.yohobuy.com/configs/application.developer.ini
View file @
760e6cb
...
...
@@ -50,7 +50,7 @@ application.template.ext = ".phtml"
application.assets.path
=
ROOT_PATH "/assets"
; 应用的版本号
application.version
=
"1.0.
5
"
application.version
=
"1.0.
6
"
; 网站SEO信息
application.seo.title
=
"Yoho!Buy有货"
...
...
yohobuy/m.yohobuy.com/configs/application.preview.ini
View file @
760e6cb
...
...
@@ -50,7 +50,7 @@ application.template.ext = ".phtml"
application.assets.path
=
ROOT_PATH "/assets"
; 应用的版本号
application.version
=
"1.0.
5
"
application.version
=
"1.0.
6
"
; 网站SEO信息
application.seo.title
=
"Yoho!Buy有货"
...
...
yohobuy/m.yohobuy.com/configs/application.production.ini
View file @
760e6cb
...
...
@@ -50,7 +50,7 @@ application.template.ext = ".phtml"
application.assets.path
=
ROOT_PATH "/assets"
; 应用的版本号
application.version
=
"1.0.
5
"
application.version
=
"1.0.
6
"
; 网站SEO信息
application.seo.title
=
"Yoho!Buy有货"
...
...
yohobuy/m.yohobuy.com/configs/application.testing.ini
View file @
760e6cb
...
...
@@ -50,7 +50,7 @@ application.template.ext = ".phtml"
application.assets.path
=
ROOT_PATH "/assets"
; 应用的版本号
application.version
=
"1.0.
5
"
application.version
=
"1.0.
6
"
; 网站SEO信息
application.seo.title
=
"Yoho!Buy有货"
...
...
yohobuy/m.yohobuy.com/configs/core/cache.developer.config.ini
View file @
760e6cb
[memcached]
master.hosts
=
127.0.0.1:11212,127.0.0.1:11213
slave.hosts
=
127.0.0.1:11212,127.0.0.1:11213
memcached.session
=
127.0.0.1:11212,127.0.0.1:11213
session.hosts
=
127.0.0.1:11212,127.0.0.1:11213
[redis]
servers.hosts
=
192.168.1.168:6379
\ No newline at end of file
...
...
yohobuy/m.yohobuy.com/configs/core/cache.production.config.ini
View file @
760e6cb
[memcached]
master.hosts
=
10.170.182.9:12111,10.172.169.31:12111,10.173.8.214:12111
slave.hosts
=
10.170.182.9:12112,10.172.169.31:12112,10.173.8.214:12112
memcached.session
=
10.170.182.9:12111,10.172.169.31:12111,10.173.8.214:12111
session.hosts
=
10.170.182.9:12111,10.172.169.31:12111,10.173.8.214:12111
[redis]
servers.hosts
=
127.0.0.1:6379
\ No newline at end of file
...
...
yohobuy/m.yohobuy.com/configs/core/cache.testing.config.ini
View file @
760e6cb
[memcached]
master.hosts
=
127.0.0.1:11212,127.0.0.1:11213
slave.hosts
=
127.0.0.1:11212,127.0.0.1:11213
memcached.session
=
127.0.0.1:11212,127.0.0.1:11213
session.hosts
=
127.0.0.1:11212,127.0.0.1:11213
[redis]
servers.hosts
=
127.0.0.1:6379
\ No newline at end of file
...
...
Please
register
or
login
to post a comment