zend-auth Questions
13
Solved
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
session.auto-star...
Joust asked 10/3, 2010 at 15:31
6
Solved
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)
Zend...
Gyre asked 28/5, 2010 at 16:46
2
Solved
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 t...
Faille asked 15/10, 2010 at 7:46
2
I'm trying to change the session backend of Zend_Auth. But couldn't succeed it.
In my bootstrap.php ;
$oBackend = new Zend_Cache_Backend_Libmemcached(
array(
'servers' => $servers,
'compres...
Leptospirosis asked 28/8, 2012 at 13:5
6
Solved
I have made a login system through zend auth here is the code
// userAuthentication
public function authAction(){
$request = $this->getRequest();
$registry = Zend_Registry::getInstance();
$...
Ist asked 25/1, 2012 at 11:21
4
Solved
I have a CMS built on the Zend Framework. It uses Zend_Auth for "CMS User" authentication. CMS users have roles and permissions that are enforced with Zend_Acl. I am now trying to create "Site User...
Loreenlorelei asked 30/11, 2010 at 21:2
1
Solved
I'm looking for a tutorial on authentication with Zend 2 and Doctrine 2.
In particular the creation of the controller and adapter.
The official documentation is too global not help me enough.
tha...
Lakesha asked 23/8, 2012 at 12:56
1
Solved
Zend_Auth uses PHP Session but, codeigniter has a different approach altogether.
The project that I am working on requires that anyone who hasIdentity() in zend, when logs into another system whic...
Snazzy asked 7/8, 2012 at 5:33
2
Solved
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 th...
Torch asked 28/7, 2010 at 11:38
3
Solved
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 (Zend_Auth:...
Pieter asked 24/9, 2009 at 8:14
2
Solved
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 f...
Rigi asked 12/3, 2011 at 12:43
4
Solved
I have created a pages login , logout to access a control panel
scenario goes like this: user logs in and accesss the cpanel page and them logs out
Problem : when login is done if user click on bro...
Houghton asked 9/3, 2011 at 19:29
4
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 g...
Foresheet asked 2/8, 2010 at 16:20
2
Solved
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.
->setCredentialTreat...
Wonderstricken asked 16/9, 2010 at 10:45
1
Solved
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 s...
Inclining asked 16/2, 2010 at 23:43
1
Solved
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,...
Hepzi asked 12/1, 2010 at 3:50
1
© 2022 - 2024 — McMap. All rights reserved.