Hello everyone.
I am trying something in the zend Framework
I have create a project with zend_tool.
I have 2 controllers
- artist controler
- account controler
Within the accountcontroller whenever the user login the $_SESSION['id'] is set to the user id. But as soon as I leave the accountcontroller and go to the Artist controller, my session variable is empty.
Here is a link to both full files http://www.codedump.be/code/435/
If you look at the saveArtistAction()
Here I am always redirected to the login form:
if(!isset($_SESSION['id'])){
$this->_forward('login', 'account');
}
I am using zf 1.9.5
Can anyone tell me how to solve the problem?