0
votes
0answers
18 views

How to set permission on plugin controller in cakephp 2.3

I am following http://book.cakephp.org/2.0/en/tutorials-and-examples/simple-acl-controlled-application/simple-acl-controlled-application.html tutorial for a simple ACL controlled cakephp application. ...
0
votes
0answers
15 views

how to use controllers and actions authorization at the same time

I'm a newbie in cakephp and I'm trying to build an application from the scratch. I'm reading the manual and also I did the tutorials. Right now I'm facing an issue about authorization: How allow the ...
0
votes
0answers
14 views

Why is scaffolding not available in Cakephp in combination with ACL and AUTH?

I want to use scaffolding in my Groupscontroller but I'm getting the error: You are not authorized to access that location. all the time. I've used $this->Auth->allow() in my AppController and ...
0
votes
0answers
10 views

CakePHP Acl controlled application failed ARO/ACO lookup - Permissions not registering

I am building an profile based application. I am attempting to use the simple acl controlled application tutorial found here: ...
0
votes
0answers
42 views

Cakephp Ldap + mysql ACL

I am not too sure I might have overseen an answer to my problem. I am using CakePHP 2.x and am currently stuck with my Authentication. It's not a programming issue more like doing it the right way. I ...
0
votes
1answer
45 views

CakePHP access restricted files after authentication

I have an ACL controlled application that uses the Media plugin to upload files to /app/webroot/media. When a file is uploaded, the dirname, basename and file name are written to the database. I'm ...
0
votes
1answer
52 views

ACL cakePHP error

AclNode::node() - Couldn't find Aro node identified by "Array ( [Aro0.model] => User [Aro0.foreign_key] => 1 ) " Error: An Internal Error Has Occurred. Stack Trace My model name is Admin not ...
0
votes
1answer
31 views

CakePHP adding tables to ACL controlled application

Sorry if this is a noob question, I'm using the Simple ACL Controlled Application tutorial as a boilerplate and need to add (bake) a few more tables. If I create a new table then run "cake bake all" ...
0
votes
0answers
60 views

CakePHP: How to create an ACO manually?

I´m struggling very hard with ACL Component of CakePHP. I set up everything, the DB Scheme and have some Users. My App Controller starts with: public $components = array( 'Acl', 'Session', ...
0
votes
1answer
104 views

CakePHP 2.0 Acl + Auth + custom username field

in my AppController I have this setup public $components = array( 'Acl', 'Auth' => array( 'authorize' => array( 'Actions' => array('actionPath' => ...
0
votes
0answers
86 views

Cakephp 2.3 using ACL with HABTM relationships

I would like to use cakePHPs Access Control Lists to manage authorization in my application. My model is pretty complex with some many-to-many/HABTM relationships. It would be too much to describe the ...
1
vote
3answers
207 views

Plugin model assiciation is not working in cakephp 2.3 with cake ACL

I am just trying to implement Cakephp ACL user authentication in a plugin named "Cauth". The same thing I implements before was working fine. This time the difference is, it is under plugin. Here, in ...
0
votes
1answer
78 views

Memory Exhaustion from a Deny in CakePHP ACL

Running CakePHP 2.2 and have a group that has a deny on controllers, and then an allow on several other controllers. If I am logged in as a user of that group and attempt accessing a controller I do ...
0
votes
1answer
92 views

restricting aro scope in cakephp

Ok, I'll preface this by saying i'm a noob to cake and ACL, and MVC architecture. I'm following a cakephp tutorial from its site, ...
0
votes
1answer
42 views

What is the use of ACL behavior?

I don't know the use of ACL behavior in cakePHP? I've read the documentation and still don't understand when can we use it and why. Thank you.
0
votes
1answer
128 views

cakephp: single code line or block to allow all authenticated users to action

I am using cake 2.x I am also using Auth and Acl Component. I want to allow a single action to all the logged in users. But this results in me writing this code several times and then running the ...
1
vote
1answer
129 views

CakePHP - ACL and Setting ACO

I'm implementing ACL in a CakePHP app that I have and I seem to be struggling with setting up ACOs. I've been following the Simple ACL Controlled Application tutorial and I've set up the aros, acos ...
0
votes
1answer
110 views

Cakephp 2 acl not denying any actions

I followed the tutorial and didn't get any errors but acl is allowing all actions for all users.I checked with aclmanager all permissions are being displayed correctly.I have added ...
0
votes
1answer
181 views

setting up ACL permissions from shell or code? CAKEPHP

I'm new to cake and I'm currently trying to implement the Simple Acl Controlled Application Tutorial from CakePHP. I have reached the setting permissions part, but I'm not sure how I am meant to ...
0
votes
0answers
100 views

cakephp 1.3 - access list of actions not requiring authentication

application is primarily ajax (jquery). i have a server method/action 'checkPageAccess' which takes parameters of 'controller' and 'action'. if the user is not logged in, i need to check if the ...
0
votes
3answers
184 views

Cakephp 2 ACL ERR_TOO_MANY_REDIRECTS

I am trying to implement the ACL tutorial found here: http://book.cakephp.org/2.0/en/tutorials-and-examples/blog-auth-example/auth.html I followed all the instructions, however when I try to go to ...
0
votes
1answer
132 views

CakePHP 2.2 AclExtras aco_sync in browser (sh permission denied)

I'm working on a remote server and I can't use the console because ssh is not enabled. So I need to run aco_sync directly from the browser (or any other way that doesn't involve the shell). I managed ...
0
votes
2answers
92 views

acl permissions

Using cake acl I am trying to set permissions for logged in users. I have this in the login function: if ($user = $this->Auth->user()) { CakeLog::write('debug', 'this->Auth->user'); ...
0
votes
0answers
92 views

Multiple domains on one database and CakePHP ACL Permissions

The situation We are developing a CakePHP webshop application that offers us the possibility to use just one database for different domains. For example we have shop1.com, shop2.com and shop3.com all ...
0
votes
1answer
24 views

Can't see homepage when not logged in with ACL CakePHP

When I am not logged in and I'm viewing my homepage (localhost) then I'm automatically getting redirected to the login page. Is this normal? And what can I do about it..
0
votes
1answer
253 views

Cakephp: Setting up ACL allow specific action and deny the rest of actions from controller

I'm trying to setup the cakephp ACL permissions. public function initDB() { $group = $this->User->Group; //root $group->id = 1; $this->Acl->allow($group, 'controllers'); //admin ...
1
vote
0answers
220 views

CakePHP 2.0 ACL - updating the user record results in ARO error

I am using ACL in CakePHP 2.3.0-RC1 When I update a user field (optin to marketing) I get an error: AclNode::node() - Couldn't find Aro node identified by "Array ( [Aro0.model] => ...
1
vote
1answer
183 views

cakePHP not adding aro on user/group add

I am trying to get aco's / aro's up and running on an application of mine. The cakePHP tutorial says that when I add a user, it should automatically be added to the aros table, but it's not working. ...
0
votes
1answer
61 views

CakePHP - More granular ACOs in ACL

My Products table: select * from products; +------+----------------+ | id | name | +------+----------------+ | 1 | product XYZ | | 2 | product XPTO | | 3 | procudt ABC | ...
1
vote
1answer
126 views

cakephp adding ACL to functional login system

i have built upon this tutorial http://www.jamesfairhurst.co.uk/posts/view/creating_an_admin_section_with_cakephp_updated and currently have a functional and quite well fleshed out admin section for ...
1
vote
1answer
379 views

Menu Component CakePHP markstory

I've edited the CakePHP Menu Component made by Mark Story to make it compatible with CakePHP 2.2.3. https://github.com/markstory/cakephp_menu_component The problem is that I still get an error that I ...
0
votes
1answer
212 views

CakePHP show buttons based on ACL

I have a ACL system setup on my application in CakePHP 2.2.3. I wanted to know how can I make cake when is baking the models to automatically show commands(buttons) only to the groups that have ...
2
votes
1answer
346 views

CakePHP 2: Acl tutorial doesn't work

as the title already says I've got a problem with the Acl Tutorial of CakePHP 2. I've done everything exactly the way it is mentioned in the Tutorial, but still it doesn't work. I know that there are ...
0
votes
1answer
52 views

ACL for php applications

I have a question about ACL implementation. Is it good to maintain the ACL rules in DB? or we can create the ACL rules at file level (in one of the file) and read it from there. As i was reading ...
0
votes
0answers
136 views

CakePHP Creating a switch menu for ACL/group level

I am working out some things on a site that uses ACL and was originally coded in CakePHP. The site has four AROs that correspond with another table called groups (Let's say: Admin, Moderator, User, ...
0
votes
1answer
94 views

How do variable Model names work in CakePHP tables?

Looking at the tables (aros, acos) generated by the ACL component and for example the Favorites plugin by CakeDC I see the favorites table with the fields Favorite.user_id, Favorite.model and ...
2
votes
1answer
138 views

Multiple applications can share the same ACL tables?

Currently I have to share my database with many CakePHP applications and the tables are prefixed to identify each application respectively. So, can many applications share the same ACL tables? Or, I ...
2
votes
1answer
389 views

CakePHP 2.x: ACL Behavior vs ACL Component

I have read book.cakephp articles on ACL Behavior & ACL Component, but I am still not clear on their distinction. i.e., when is it best to use both? ACLBehavior only? ACLComponent only? If you ...
2
votes
1answer
173 views

ACL in Cakephp 2.xx using custom tables

I set up a custom Authentication system for my CakePHP application. Now we need to include some ACL to it. I followed the instructions here. Now for some reason I need to use the tables admin_users ...
0
votes
1answer
186 views

CakePHP ACL. One action multiple permissions

I'm new to CakePHP but familiar with other PHP frameworks. I'm trying to figure out the 'Cake way' of implementing the following ACL setup.. I currently have ACL configured as the Simple Acl ...
5
votes
2answers
213 views

CakePHP ACL and Auth not working

I have a few questions about CakePHPs ACL and Auth system. Whats the naming convention of the aliases in the acos table? Is it 'controllers/Posts/add' or just 'add' with the parent id from 'Posts'? ...
1
vote
1answer
171 views

Checking CakePHP ACL permissions by URL

I'm using the CakePHP ACL CRUD system in my webapplications and i'm trying to generate some menu's based on the permissions for the user currently logged in. I'm facing a problem which is not ...
0
votes
2answers
157 views

Auth and ACL with condition in CakePHP

I can't find a solution to my problem. I have an CakePHP website using Auth Component and ACL component. I do not want users who are not active to be able to log in. I found that userScope in Auth ...
0
votes
1answer
64 views

cakephp concept acl

I'm researching the use of ACL in CakePHP and it's confusing... I haven't understood a thing. With ACL can I permit or deny the access to a page (that part I get). But, for example, I want to make ...
0
votes
2answers
89 views

User based permission

how I can make a user based permission system? The basic is: I will have pages (account, foo, bar, etc..) and actions (add, edit, delete, etc..), and, each user can have permissions based on ...
0
votes
1answer
126 views

cakephp saving into tables that has actas => requester for another model

i have a crm that has many customers,groups,users,products,departments etc. The form for each will is different (depending on the customers specifications). So baking different view for each form was ...
0
votes
1answer
310 views

CakePHP 2.0 AclExtras Prints HTML code in shell

I am trying to setup ACL based on the tutorial in the 2.0 book, but I get HTML script when i run ./Console/cake AclExtras.AclExtras aco_sync It's really long to post here. In my bootstrap.php file ...
0
votes
0answers
107 views

cakephp acl confuse

I have a site developed with cakephp and I would like to implement acl.. I have two models: User (with the following actions: add, register, view, modify) Ingredient (with the actions: add, ...
0
votes
1answer
238 views

Cakephp 2.0 ACL implementation issue

I have created acos, aros and aros_acos tables. Values inserted in the "acos" table by using CakePlugin::load('AclExtras'). Also, values added in "aros" table automatically while adding Group ( In my ...
0
votes
1answer
122 views

CakePHP: can ACL be used to deny editing on specific fields in a model?

I have been reading up on CakePHP's ACL component. I understand it can grant or deny certain actions, but can I use it to grant or deny editing for specific fields in a model? For example, let's say I ...

1 2 3 4