Hello everyone. I am trying something in the zend Framework I have create a project with zend_tool.
I have 2 controllers 1. artist controler 2. 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 And following the book: "Beginning zend framework." This might sound famillair for a few of you. Can anyone tell me how to solve the problem? Thanks for your help. J. Sanders
