|
Dear Cees,
I currently face 2 problems.
Problem 1
Instead of writing $class->redirect() If I specify a sub routine inside the same pm file, only one session id gets created. But I definitely have to redirect to an other url.
Is it possible for me to redirect without clobbing the existing header
Problem 2
In the cgiapp_init subroutine, when specifying the CGI_SESSION_OPTIONS
Instead of giving $self->query , I tried to pass the existing session id in the database for eg. 0a..df
CGI_SESSION_OPTIONS => ["driver:PostgreSQL", "0a..df", {Handle => $dataBase}]
and now when I refresh the page it does not create a new session id and uses the existing session id.
What could be the reason for this?
|