>To answer about my configuration, I have the following:


Seems to be ok, also I didn't try the Base64 on my own so far

>[14180]SES:  Embperl Session management enabled (>= 1.50)
>/usr/local/apache/bin/apachectl start: httpd started
>
>So I thaught everything was ok for Session management.


Should so.

>Actually this part (Embperl Configuration) then would refer to the previous
>message I posted here (ie.: 'Embperl & Postgres & Session Management'):
>actually
>that was sorted out (or so I thaught, unless you tell me otherwise):

I saw it after I have pushed the send button, sorry

>simply
>the
>Postgres doent like the 'Storable' default and had to use 'Base64' as well
>as
>remove some IPC stuffs hanging there from previous (default 'Storable')
>crashes.

>Anyway, here is all the configuration directives I have placed in my
>httpd.conf
>concerning Embperl:

>This should be ok.. ?


yes

>All whith the same result:

Do you _exactly_ the same session id in the database, that you see in the
Embperl log ? (same length!)

>PS.: and one last thing:
>if i have a file with only:
>
>  [- $udat{some}{thing} = "1" -]
>
>it crashes (undefined HASH..), but if I use "the trick":
>
>  [- $udat{whatever} = "whatever" -]
>  [- $udat{some}{thing} = "1"     -]


That's a simple Perl issue and because of the way Apache::Session ties to
the hash
I would use the following, also both should work

 [- $udat{some} ||= {} -]
 [- $udat{some}{thing} = "1"     -]

How is your id field in Postgres defined ?

Gerald



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to