Tagged Questions

A class provided by the Zend Framework, an open source, object oriented PHP5 framework provided by Zend. Zend Auth provides helper functions to authenticate site visitors against various sources.

learn more… | top users | synonyms

19
votes
1answer
8k views

Practical Zend_ACL + Zend_Auth implementation and best practices

Context: My questions pertain to a forum I'm developing pretty much exactly like SO, where there are: guests who have access to view threads but can't reply or vote members who, with enough rep, ...
12
votes
4answers
3k views

Zend_Session / Zend_Auth randomly throws Error Message ps_files_cleanup_dir: opendir(/var/lib/php5) failed: Permission denied (13)

I'm currently working on a new Application using (among other things) Zend_Auth but, for whatever reason, this Error Message is showing up at any location totally randomly (or so it seams) ...
7
votes
2answers
2k views

Zend_Auth setCredentialTreatment

I'm using Zend_Auth with setCredentialTreatment to set the hash method and salt. I see all examples doing something like this, where the salt seems to be inserted as a text. ...
7
votes
1answer
1k views

Does Zend ACL suit my needs?

I have based my application upon the Zend Framework. I am using Zend_Auth for authentication, but I'm not sure if Zend_Acl will work for me because, frankly, the examples I've seen are either too ...
5
votes
4answers
1k views

Zend_Auth: Allow user to be logged in to multiple tables/identities

I am using Zend_Auth for authentication in a web portal. A normal mySQL "users" table with a login and password column gets queried against, and a user logged in. However, I have two additional ...
4
votes
2answers
126 views

how to Use zend_auth as a plugin

I'm working on my first user login in Zend Framework, but I'm a little confused with Zend_Auth. All the articles I read about it use it directly in the controller. But to me, it makes more sense, to ...
4
votes
1answer
255 views

Isolating Zend_Session in PHPUnit tests

I am testing authentification functionality of my site. Zend_Auth is using as authorization engine. But auth status remains between tests and I need to write 'logout' in every tearDown. Now ...
3
votes
2answers
781 views

PHP Unit Testing with Zend Auth and Zend ACL

I have an application that is behind a login and utilizes zend_acl and zend_auth. During pre-dispatch I have an ACL plugin that creates all the rules out for the ACL. I also have an Auth plugin that ...
3
votes
1answer
470 views

management users with Zend_Auth and Zend_Session

I want to Zend_Auth and Zend_Session to save user sessions and logins information whats the easy and best way for implements following items: 1-Disallow multiple concurrent logins for the specific ...
3
votes
1answer
505 views

Zend_Auth_Adapter using a data mapper

First post here so sorry if I seem like a newb, I am trying to find a way to use Zend_Auth_Adapter with a data mapper, but seem to be struggling. I know I can use Zend_Auth_Adapter_DbTable and ...
2
votes
2answers
38 views

zend session and zend auth

i have made a login system through zend auth here is the code // userAuthentication public function authAction(){ $request = $this->getRequest(); $registry = ...
2
votes
2answers
48 views

How to make Zend_Auth case insensitive to username?

Is there a way to make Zend_Auth to accept case-insensetive identities(i.e. usernames)? Zend_Auth seems to provide a way to add special treatment to a credential field, but not to identity field. PS: ...
2
votes
1answer
245 views

Add condition for Zend_Auth_Adapter_DbTable

This may seem like a silly question, but in this code, where would I insert the condition 'WHERE state=1' public function loginByUsernameAndPassword($username, $password) { ...
2
votes
2answers
732 views

Zend Navigation: Where should I load the ACL 'Role' in a private application

I am working on a 'private' application, you must be logged in to do anything at all. This gives me a bit of a an issue loading the role for Zend Navigation. Currently I am 'init'ing Zend Navigation ...
2
votes
1answer
395 views

Zend_Auth getidentity always returns null

Experts, I just found a weird behavior of Zend_Auth whereby it's not able to store session in the server. This happens just suddenly to all of my existing applications that use Zend_Auth for ...
2
votes
1answer
434 views

setCredentialTreatment is not available in SQLite

I ran into a strange error, I want to share it with you. I had to convert my MySQL database to SQLite, which was actually a piece of cake with the program called DBConvert. So I changed in my ...
2
votes
2answers
206 views

Zend_Auth identity versioning

There is a situation: I store some structured data (e.g. array or object, or even string) as a Zend_Auth identity. From version to version the structure of identity could be changed thus identity from ...
2
votes
1answer
256 views

Zend_Auth using Zend_Session instead of default storage?

I was reading through this tutorial, and at one point in the code, the user info is retrieved from the database and a session is created for the user: // the default storage is a session with ...
2
votes
3answers
187 views

where to use Zend_Auth, in model or controller?

I'm working on my first user login in Zend, but I'm a little confused with Zend_Auth. All the articles I read about it use it directly in the controller. But to me, it makes more sense, to work with ...
2
votes
1answer
185 views

What PHP framework provides the most feature-rich authentication and/or access control?

I am currently exploring Zend_Auth, part of Zend Framework, but am dissapointed with the lack of more advanced features such as nonces, authentication tokens, lock-out, etc. In one of my recent ...
2
votes
1answer
212 views

Is there any way to force authentication with Zend_Auth?

I am working with Zend_Auth and cookie/session persistence. I can't seem to figure out how to force an authentication with this class. Is there any way to force Zend_Auth to believe it has ...
2
votes
7answers
5k views

“session has already been started…” exception in Zend Framework application

I get this error when trying to load a Zend Framework application: Fatal error: Uncaught exception 'Zend_Session_Exception' with message 'session has already been started by ...
2
votes
3answers
551 views

Zend Framework: How to check an additional column while using DbTable Auth Adapter?

Currently, I'm getting a regular DbTable Auth Adapter: protected function _getAuthAdapter($formData) { $dbAdapter = Zend_Db_Table::getDefaultAdapter(); $authAdapter = new ...
2
votes
2answers
328 views

Zend_Auth and Firebird DB

A short question for the PROs. Is it possible to use Zend_Auth_Adapter_DbTable with ZendX_Db_Adapter? I've tried this: $adapter = new Zend_Auth_Adapter_DbTable( Zend_Registry::get('db') ); ...
2
votes
4answers
2k views

Zend_Auth checking if user is logged in

I tried using: // do login if request is posted if (isset($_POST) && !empty($_POST)) { // do authencation ... } else { // request not posted // see if already logged in if ...
2
votes
2answers
3k views

How does Zend_Auth storage work?

This is very simple. I write $auth->getStorage()->write($user); And then I want, in a separate process to load this $user, but I can't because $user = $auth->getIdentity(); is empty. ...
1
vote
1answer
31 views

Redirecting requests form a catch-all controller in Zend Application without looping forever

There are plenty of related posts to what I'm asking, but after some lengthy searches couldn't quite find what I was looking for, my apologies if it exists somewhere. My goal -- ALL requests to my ...
1
vote
1answer
54 views

Zend_Auth replacement?

Zend_Auth provides an API for authentication and includes concrete authentication adapters for common use case scenarios. I started working with Zend Framework 2.0 beta1 and I noticed that it ...
1
vote
1answer
139 views

Zend_Acl and Zend_Auth api key approach

What's a good way to implement api keys for accessing specific controller actions using Zend MVC? I currently have Zend_Acl in combination Zend_Auth using session cookies, but I want some actions to ...
1
vote
2answers
153 views

how can we make Zend session storage as persistent among available methods?

I am little bit confused about Zend authentication session storage system. I will try to explain my problem. Please try to express your opinion or anything you know about zend session or my ...
1
vote
2answers
207 views

Zend Framework User Authentication (MVC question)

I'm getting some trouble understanding the MVC concepts. I'm building a User model, you know? Application_Model_Users. They say that the models should only contain the structure... and the business ...
1
vote
2answers
166 views

Zend_Auth and Zend_Namespace Session Error

I'm developing an application, everything works fine but sometimes i get the following error: Fatal error: Uncaught exception 'Zend_Session_Exception' with message 'session has already been started ...
1
vote
2answers
308 views

How do I combine Zend_Ath, Zend_Acl and partialview for the authentication and resource control

According to Randomness will get you everywhere. Ryan’s Blog the action stack component of Zend Framework is un-needed and that a partial view can be combined with Zend_Acl and Zend_Auth for the ...
1
vote
1answer
405 views

Need help with Zend_Auth Storage

Currently I have this code (Fetching user informations from Database then store into Zend_Auth session storage) $auth = Zend_Auth::getInstance(); $storage = $auth->getStorage(); ...
1
vote
1answer
370 views

Database and File Salt for Zend_Auth

In my application I have a table row salt, and a static salt set in my Zend_Registry. I'm trying to both, without having to write my own Auth_Adapter. Here's what I have right now for just one salting ...
1
vote
1answer
652 views

how to get role from Zend_Auth/Zend_ACL when using a Doctrine adapter? getting all work together

I'm using Zend_Auth with a project using doctrine.I believe every bootstrapping is done correctly and i can log in. my adapter looks like this: class Abra_Auth_Adapter_Doctrine implements ...
1
vote
1answer
198 views

Make user object available to all Controllers in Zend?

I'm using Zend_Auth to identify a user in my application. This creates a session with the userobject. My question is how do I make this object available to every Controller and action, so I don't ...
1
vote
2answers
441 views

Zend_ACL how to get role?

after reading the Zend documentation and some posts here I could not figure out how to get my user role out of a user table. At the moment I use Zend_Auth like this in an AuthController: // Set ...
1
vote
1answer
230 views

have zend auth store multiple values of identity

so basically when we use zend auth we can call function $auth->getIdentity() to get the identity of the currently logged in user....the thing is...it would return the value that was set from ...
1
vote
1answer
160 views

Zend_Auth now only works partial

Okay, This is completely a weird situation. When a user logs in, I store some stuff using the following code: $auth->getStorage()->write($authAdapter->getResultRowObject(array( ...
1
vote
1answer
781 views

setting and extending Session Lifetime using Zend_Auth

i use Zend_Auth for one of my Projects, but so far haven't figured out how to set the Lifetime for the Session, or how to extend it (lets say it should run 5 minutes and should reset to that when the ...
1
vote
1answer
246 views

Refactoring a Zend_Auth implementation

I am working on an existing project that has two areas that can be logged into. An admin section and the front end. Currently the admin section has a login action and the front end has its own login ...
1
vote
0answers
214 views

Zend Auth locked session

i nearly frustrated with how Zend handling session. here is my case. i write a auth plugin that always check the the user credential utilize Zend_Auth. and when invoke hasIdentity function from zend ...
1
vote
2answers
112 views

Sign on several sites

i have 2 sites (example.com, ex2.com). Fisical is a 1 site with 1 db. When user sing in ex2.com, he was sing in example.com too. How do this? P.S. Can do this with ZF? I found a very interesting ...
1
vote
2answers
217 views

Simple authentication that uses zend_auth independent of the rest of the Zend framework

I'm working on the login system for a php web app. I'm aware of the dangers of rolling your own system, so I'm hoping to use a pre-built library of some kind. I have seen zend_auth recommended in ...
1
vote
2answers
272 views

Salting example in Zend Framework

I am pretty new to the Zend framework and looking to build an application with pretty tight password security. I have been trying to follow the user guides in relation to password salting but haven't ...
1
vote
2answers
388 views

Zend_Auth multiple credentials?

Login Form: $authAdapter = Zend_Registry::get('authAdapter'); $authAdapter ->setIdentity($formData['email']) ->setCredential($password) ->setCredential(1); Bootstrap: ...
1
vote
2answers
692 views

Zend Auth With Two Identity Columns

I am using Zend_Auth to validate user credentials and ran into an issue. I need to have a dual column identity. The the two columns are user name and customer identifier. The identityColumn setting ...
1
vote
1answer
198 views

setting up OpenID authentication using Zend_Auth_Adapter_OpenId

how do i go abt setting up Zend_Auth_Adapter_OpenId ? in the docs: $auth = Zend_Auth::getInstance(); if ((isset($_POST['openid_action']) && $_POST['openid_action'] == "login" && ...
1
vote
2answers
957 views

Zend framework common code for all the controllers

I have a login button in the header of the website. This header's html is programmed into Zend framework views/layouts/home.phtml. I have a hidden form in this layout that is triggered by jQuery ...

1 2 3