Hi, I don't know if anyone faced this problem. here it is:
I am using HTML_Template_Sigma to display my pages across my site, particularly in pages that needs authorization and authentication. I am trying to build a control panel for my site, and I am using PEAR Auth, to initiate the authentication process against a DB. When I login with my correct username and password, it will execute privileged part of my page. When I click on other links within my site, the Pear Auth should take care of session state and variables and it should allow me to continue without displaying the login screen. But when I click any link inside/outside my control panel, the Auth process starts all over again and I have to log-in again. Whenever I do any navigation in my control panel, the login form appears. The Auth package should let me navigate through the page until session expires or until I explicitly call the logout method in the Auth object.
How can I make it work so I don't have to login everytime I click and using HTML_Template_Sigma?
I heard that PEAR Auth needs to be the one first executed before anything else is sent by the header.