Your question still is not clear. but, if you want to set a session ID you can use cookies or encoded urls to do so on the clients webbrowser. some example code is:
my $session_cookie = "SESSION_ID=$session{_session_id};"; $r->header_out("Set-Cookie" => $session_cookie);
Once the session ID is set, you don't need to generate a new one, you attach data to it and it is persistent. If you are asking on how you would go about generating your own type of ID and using that as the ID for everything, I answered that question in the first place. You make a new module in the same directory as the MD5 session id module, call it something else and return the structs just like MD5 does. you then use flex to tell appache:session to use your module for the generation of the ID. If you want something completely different, roll your own and ask questions here where we do not have to try to read your mind.


-Waswas

In reply to Re: Re: Re: Re: Re: Apache Session own ID by waswas-fng
in thread Apache Session own ID by roberlamerma

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.