Okay this is a tough and obscure one so I'm going to post as much background as I can. Even if I can't get a solution based on what I know thus far; ideas are better than nothing.

So here goes:

I've made a cookie-based authentication script. It's as simple as the login/password and session ID being stored in a cookie on the user end and the authentication script is executed each time data is submitted. If for some reason the login/pw on the user's side don't match the server side, they're booted out.

For navigation I'm simply using a "session file" to determine what's displayed on the user screen. The session file is changed depending on what's submitted to the main script.IE: if the user clicks on a hyperlink that's pointing to "http://website.com/cli/client.cgi?cmd=OPERATION&ident_a=123&ident_b=123"

I'll have the script update the session file to store what part of the site the user is currently visiting, and then, using SSI, send it back to the "index.shtml" page where the proper results *should be* displayed.

Okay so here's my problem:

I have a user who can connect and login to the site fine. They enter their login/pw on the form and it brings them to their member home page. However, whenever they try to submit any further data, it doesn't update on the server side. It's almost like their machine wont let them submit queries with arguments.

I know they have cookies enabled and I know they're working because of the simple fact that they are able to login, and see the proper login page with their info listed and such.

-ANY- comments, suggestions, or possible solutions would be much appreciated.

If I've left anything out or if anyone needs any more info, please don't hesitate to ask.

Thanks.

In reply to Perl/Cookie and data transmission by Sylvyr

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.