On Tuesday 23 September 2008 14:44:31 amithasija wrote: > i want to create multiple instances of zend_auth class > > as i have two modules > > Admin > Front > > wats happening is when i login into admin it automatically get logins into > front or vice-versa. > > > so wat i want is the i can work on both modules separately after > simultaneous authentication.
Surely you should authenticate you user only once ( or twice for comparison when using admin features ) and use an appropriate set of access controls to specify which sections of your site the user is allowed access to. Zend_Acl would allow for this type of per resource control. Graham
