Most voted "acl" questions
ACL is an access control list that defines access permissions to a particular component or service of a system. Thus, in order for a server to provide access to a resource, it first queries the list to verify that the device that is requesting it has permission to use it
Learn more…14 questions
Sort by count of
-
6
votes1
answer1417
viewsAccess permissions on Laravel 4
I’m developing a system in Laravel 4 based on official Laravel tutorials and documentation. I haven’t seen anything related to access permissions (ACL) in Laravel. Knowing that my system will have…
-
3
votes1
answer79
viewsUsing the ACL in Cakephp
After doing a lot of research, I didn’t find a satisfactory answer. I’d like your feedback and/or advice on using the ACL in Cakephp. I’ve seen some plugins that "help" in this issue, but I haven’t…
-
2
votes1
answer343
viewsDifference between ACL and RBAC access control types?
I would like to know the difference between these two types of ACL and RBAC access control. I’ve been reading about them, and I’ve been a little confused to understand them. The following questions…
-
1
votes0
answers37
viewsACL Adjustable by field
Is there any solution for access control by input? Example: a given user can access a form but cannot access a given field, another user can access the same form and have access to the field in…
-
1
votes1
answer1135
viewsUndefined error Property
I’m getting the following error by clicking on permissions, button that directs to this controller: Error: Undefined Property: App Http Controllers Rolescontroller::$role Controller: <?php…
-
1
votes1
answer277
viewsACL Laravel using ADMINLTE
Good morning. I am using Laravel 5.5 and adminlte. I implemented Acl with middlewares and use can to test permissions. I would like to put can('centrocusto') in the adminLte menu. It’s not working.…
-
1
votes0
answers212
viewsDoubts of ACL with Node.js!
People I am trying to apply Authorization (ACL) using the plugin npm "node_acl" in a Node.js application with express, I am trying to implement as explained in the documentation.. however I am…
-
0
votes4
answers698
viewsDoes anyone know a good tutorial on ACL in Symfony 2?
I’m starting a new project and decided to use Symfony, I wonder if anyone knows a good tutorial on Acl and/ or roles so I can implement. The hierarchy I’ll need to use is more or less this: Master…
-
0
votes1
answer56
viewsUsing Voter with Symfony 4
I’m learning Symfony 4 and I am facing a problem. In version 4 of Symfony the ACL was discontinued and from what I’ve seen they’re using the Voter. I’ve researched the internet and the documentation…
-
0
votes1
answer277
viewsSynchronizing Permissions with Spatie Permissions
I need a little help, I need to synchronize permissions when creating and editing a user within the Administrator. I’m using the Laravel Spartie Permission package, which I need to synchronize roles…
-
0
votes2
answers198
viewsLaravel Authorization for Multi Authentication
I have an ACL app for Laravel where I have two sessions(Guards), one for users and another to admins. The configuration of Guards auth.php file looks like this: 'guards' => [ 'web' => […
-
-1
votes1
answer1018
viewsACL Laravel 5.3
Is there any tutorial to create the structure of ACL (Permissions and roles) for Laravel 5.3? I tried to use the Zizaco/Entrust package, but even following the setup steps of github it didn’t work.…
-
-1
votes2
answers2791
viewsHow to pass Array values in Postman
I am developing an API, and one of the modules is the ACL(access control list) in the Laravel Framework. I came to a problem that I haven’t found plausible solutions yet, which is like testing…
-
-3
votes1
answer108
viewsHow to create ACL with External Database in Laravel?
The application I’m making already has a database with the users' data. The levels I need are a 'Common User', a 'Manager' and an 'Admin'. The logic of having a user table, role, role_user,…