php - Acl in CakePHP - Removing this functionality -
php - Acl in CakePHP - Removing this functionality -
i built project acl enabled - used cakephp tutorial on website this. however, project no longer needs functionality.
i've removed reference of acl , aco in controllers, models , views (if fact did tutorial in reverse remove everything) , deleted 3 database tables generated in process.
however, still error:
error: database table acos model aco not found.
on of controllers.
did acl baking process add together files don't know about? how rid of functionality?
try emptying app/tmp/cache
. model relations may caches there. after that, grep
through app
directory references aco
, aro
. may have missed one.
edit: also, create sure auth
component not set auth->authorize
actions
(which uses acl) else appropriate. see auth::authorize in cakephp manual.
php mysql cakephp acl
Comments
Post a Comment