Questions tagged [zend-auth]

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.

Overview

Zend_Auth provides an API for authentication and includes concrete authentication adapters for common use case scenarios.

Zend_Auth is concerned only with authentication and not with authorization. Authentication is loosely defined as determining whether an entity actually is what it purports to be (i.e., identification), based on some set of credentials. Authorization, the process of deciding whether to allow an entity access to, or to perform operations upon, other entities is outside the scope of Zend_Auth.

Questions that should be tagged with zend-auth

  • Authenticating a user against with Zend Framework.
  • Various ways to integrate Zend_Auth with Zend_Acl.
  • Different types of backend authentications that can be used with Zend_Auth.
  • Zend_Auth and questions having to do with PHP sessions.

To learn more, visit:

http://framework.zend.com/manual/en/zend.auth.introduction.html

202 questions
0
votes
1 answer

Zend Auth Redirect Plugin with AJAX

Is there a way I can have a plugin redirect the whole page when it is getting called through an AJAX request? Here is the code I am using to redirect non-authenticated users to the login page. public function…
bconrad
  • 402
  • 4
  • 14
0
votes
2 answers

zend subdomains auth doesn't carry over

I recently had introduced two languages to my site and were initially hidden from the URL. however, after reading more into it, it seemed that having them in the url seemed more SEO friendly. So I added them as subdomains. I now have en.site.com and…
KiaiFighter
  • 647
  • 5
  • 18
0
votes
1 answer

Zend Framework - No error 404

I'm tearing my hair with a site developed by ZF. I have to try to make changes on it while it was developed by offshore companies ... Currently, if I go on the site: http://www.riads-marrakech.org/ If I http://www.riads-marrakech.org/sgfdgdfgdg =>…
Raphaël
  • 1,141
  • 3
  • 18
  • 32
0
votes
1 answer

zend user auth by submitting user credentials from remote android device

We have developed a web site, online magazine store for android device, there is also an android app that loads the website as web view. Every device has a username, password and a device ID which is sent as post during the loading of web view. My…
Arun Killu
  • 13,581
  • 5
  • 34
  • 61
0
votes
1 answer

Zend Auth - Using two tables

I'm currently developing a website in Zend Framework wich uses Zend_Auth. The current design of the database is the following: users - id / email users_props - id - user_id - prop_name - prop_value However, the current Zend_Auth_Adapter_DbTable…
ChrisH
  • 1,283
  • 1
  • 9
  • 22
0
votes
1 answer

zend_auth identity on wake

I have a class representing my identity that contains a few pieces of information. Here is the short version. class Auth_User { private $id; private $current_role; public function __construct($id, $current_role) { $this->id =…
Jeremiah
  • 751
  • 9
  • 21
-1
votes
2 answers

How to set the timeout while using Zend_auth in Zend framework

I am using Zend_auth for authentication purposes.Code for the same is as follows: $authAdapter = $this->getAuthAdapter(); $authAdapter->setIdentity($username) ->setCredential($password); $auth…
ryan
  • 333
  • 1
  • 15
  • 28
1 2 3
13
14