I have an authentication scheme which checks every request for a valid
cookie, and if your session has timed out redirects to a login page. After
logging in, the request is resubmitted as a GET. This works great except
when the original post is large--the redirect URL gets way too long (10K
or more).

I was thinking about saving the posted data to a temporary file and
reading it back in after the login succeeds, but this seems messy and
error-prone. Has anyone else had this problem? Are there any modules
(maybe session mgmt stuff?) that could be easily adapted to handle this?

Thanks,
Chris

Reply via email to