On Thu, 2006-08-31 at 18:37 -0400, Daniel B. Hemmerich wrote: > 2. Have that script redirect the user via GET to another script > using a relative path to the same virtual host
Are you doing an internal redirect rather than a real redirect? CGI.pm doesn't know how to detect that, since it's an internal apache thing. You have to call CGI::_reset_globals() yourself to reset it for the subrequest. - Perrin