0

I am following this guide to add Zfc-Rbac in my application. But I can't figure out where to put this configuration information.

Application\config\application.config.files

or Application\modules\modulename\config\module.config.php

mrN
  • 3,734
  • 15
  • 58
  • 82

2 Answers2

1

You can also put it in a global config file, ie application/config/autoload/zfcrbac.global.php

jmleroux
  • 947
  • 6
  • 17
0

Either in application/module or application/vendor, place the config inside the ModuleName/config/module.config.php

Also make sure you have added the ZfcRbac to the application module list

'modules' => array(
    'Application',
    'ZfcRbac',
    'DoctrineModule',
    'DoctrineORMModule'
lumberjacked
  • 966
  • 1
  • 21
  • 35