DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://issues.apache.org/bugzilla/show_bug.cgi?id=17149>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://issues.apache.org/bugzilla/show_bug.cgi?id=17149 SCRIPT_URI is missing when using mod_ssl ------- Additional Comments From [EMAIL PROTECTED] 2004-07-17 16:55 ------- >From ssl_engine_vars.c (2.0.50): ... ... 102 else if (strcEQ(var, "REQUEST_METHOD")) 103 result = (char *)(r->method); 104 else if (strcEQ(var, "REQUEST_SCHEME")) 105 result = (char *)ap_http_method(r); 106 else if (strcEQ(var, "REQUEST_URI")) 107 result = r->uri; 108 else if (strcEQ(var, "SCRIPT_FILENAME") || 109 strcEQ(var, "REQUEST_FILENAME")) 110 result = r->filename; ... ... I'm not sure if this is the right place, but SCRIPT_URI and SCRIPT_URL are conspicuously absent from this list. Does that mean that mod_ssl must be aware of the two non standard ENV variables set by mod_rewrite? I noticed that SCRIPT_FILENAME is in the list, but SCRIPT_NAME is not. Am I totally off base here? Can anyone verify that if, in addition to SCRIPT_URI not showing up on SSL connections, are SCRIPT_URL and SCRIPT_NAME absent as well? --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
