- Posts: 640
- Thank you received: 16
Dynamic Access levels have no effect
- PeterChain
-
Topic Author
- Offline
Less
More
11 years 3 months ago #204724
by PeterChain
Dynamic Access levels have no effect was created by PeterChain
-- url of the page with the problem -- : local by now
-- HikaShop version -- : 2.4.0
-- HikaMarket version -- : 1.6.2
-- Joomla version -- : 3.4.1
Carefully read the instructions for the Dynamic Access Leves at www.hikashop.com/support/documentation/i...l#tuto_configure_acl
But after many tries and experiments I find this as no effect over the users no matter if I create them after or before chainging dynamic access.
Users have assigned the right user group which is a custom one
Shall I enable some checkbox, plugin, whatever?
Is this a known issue ?
-- HikaShop version -- : 2.4.0
-- HikaMarket version -- : 1.6.2
-- Joomla version -- : 3.4.1
Carefully read the instructions for the Dynamic Access Leves at www.hikashop.com/support/documentation/i...l#tuto_configure_acl
But after many tries and experiments I find this as no effect over the users no matter if I create them after or before chainging dynamic access.
Users have assigned the right user group which is a custom one
Shall I enable some checkbox, plugin, whatever?
Is this a known issue ?
Please Log in or Create an account to join the conversation.
11 years 3 months ago #204732
by Jerome
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Replied by Jerome on topic Dynamic Access levels have no effect
Hi,
The ACL system is working fine as long as I know and there is no reported issue.
Best will be to explain what you what to perform and provide some screenshots of your HikaMarket ACL configuration.
Regards,
The ACL system is working fine as long as I know and there is no reported issue.
Best will be to explain what you what to perform and provide some screenshots of your HikaMarket ACL configuration.
Regards,
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Please Log in or Create an account to join the conversation.
11 years 3 months ago #204862
by maujbigo
Replied by maujbigo on topic Dynamic Access levels have no effect
Hi,
I just noticed the same problem.
went to hikamarket configuration/access/vendor access, I can see the green/red icons. I turned a few of them red, all the 'acl' ones that were green. It displays the red icon but the ACL option still comes up in the front end next to the price when adding or creating a new product.
Yes, in the tree 'product,edit,price,acl' is red.
Please confirm
I just noticed the same problem.
went to hikamarket configuration/access/vendor access, I can see the green/red icons. I turned a few of them red, all the 'acl' ones that were green. It displays the red icon but the ACL option still comes up in the front end next to the price when adding or creating a new product.
Yes, in the tree 'product,edit,price,acl' is red.
Please confirm
Please Log in or Create an account to join the conversation.
11 years 3 months ago #204863
by Jerome
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Replied by Jerome on topic Dynamic Access levels have no effect
Hi,
Please provide screenshots and concrete example to explain the issue and allow us to reproduce it.
Regards,
Please provide screenshots and concrete example to explain the issue and allow us to reproduce it.
Regards,
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Please Log in or Create an account to join the conversation.
11 years 3 months ago #205424
by maujbigo
Replied by maujbigo on topic Dynamic Access levels have no effect
Hi,
As you can see on this screen grab, price tax, acl, retail price and acl are all red.
postimg.org/image/69j7uo26x/
However as you can see on the other screen grab, the acl and tax price is coming up in the front end.
postimg.org/image/4ev465bfb/
Please advise.
Thanks
As you can see on this screen grab, price tax, acl, retail price and acl are all red.
postimg.org/image/69j7uo26x/
However as you can see on the other screen grab, the acl and tax price is coming up in the front end.
postimg.org/image/4ev465bfb/
Please advise.
Thanks
Please Log in or Create an account to join the conversation.
11 years 3 months ago #205431
by Jerome
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Replied by Jerome on topic Dynamic Access levels have no effect
Hi,
There is no screenshot to show the vendor groups ; in order to see if they are other groups and if he have other accesses.
Your screenshot does not indicate either the configured group.
So, unfortunately, it does not help much to understand really the issue.
So I had to spend a lot of time in order to reproduce the issue, performing different kind of tests to have, at last, the configuration you should have.
Please edit the file "administrator/component/com_hikashop/helpers/helper.php" and replace
By
It will force the "public" group at the end of the ACL list for the default configuration rules.
Regards,
There is no screenshot to show the vendor groups ; in order to see if they are other groups and if he have other accesses.
Your screenshot does not indicate either the configured group.
So, unfortunately, it does not help much to understand really the issue.
So I had to spend a lot of time in order to reproduce the issue, performing different kind of tests to have, at last, the configuration you should have.
Please edit the file "administrator/component/com_hikashop/helpers/helper.php" and replace
Code:
sort($vendor_access, SORT_STRING);
if(strpos($vendor->vendor_access, '@') !== false) {
Code:
sort($vendor_access, SORT_STRING);
if(reset($vendor_access) == '@0')
$vendor_access[] = array_shift($vendor_access);
if(strpos($vendor->vendor_access, '@') !== false) {
Regards,
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Please Log in or Create an account to join the conversation.
11 years 3 months ago #205749
by maujbigo
Replied by maujbigo on topic Dynamic Access levels have no effect
Hi Jerome,
Thanks for the solution.
Cheers
Thanks for the solution.
Cheers
Please Log in or Create an account to join the conversation.
11 years 3 months ago #205751
by Jerome
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Replied by Jerome on topic Dynamic Access levels have no effect
Hi,
The patch will be include in the next release.
Regards,
The patch will be include in the next release.
Regards,
Jerome - Obsidev.com
HikaMarket & HikaSerial developer / HikaShop core dev team.
Also helping the HikaShop support team when having some time or couldn't sleep.
By the way, do not send me private message, use the "contact us" form instead.
Please Log in or Create an account to join the conversation.
Moderators: Obsidev
Time to create page: 0.216 seconds