[PHP] Re: PHP slash Apache question?

2001-10-02 Thread jimw

Michael Champagne [EMAIL PROTECTED] wrote:
 Ok, this is semi-related to PHP.  I think it may mainly be our Apache
 configuration.  We have our listener listening on .
 
 This URL works: http://hostname.capis.com:/
 This URL does not: hostname.capis.com:/
 
 Is there anyway to get the bottom one to work?

not without the source to internet explorer. it is a shortcoming of
their url parsing (it mistakes the latter format for scheme:host
instead of host:port).

jim

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Re: PHP slash Apache question?

2001-10-02 Thread Michael Champagne

Great, thanks for the response Jim.  Would there possibly be a way around this
using mod_rewrite?

Thanks,
Mike

 Michael Champagne [EMAIL PROTECTED] wrote:
  Ok, this is semi-related to PHP.  I think it may mainly be our Apache
  configuration.  We have our listener listening on .
 
  This URL works: http://hostname.capis.com:/
  This URL does not: hostname.capis.com:/
 
  Is there anyway to get the bottom one to work?

 not without the source to internet explorer. it is a shortcoming of
 their url parsing (it mistakes the latter format for scheme:host
 instead of host:port).

 jim



**
This communication is for informational purposes only.  It is not
intended as an offer or solicitation for the purchase or sale of 
any financial instrument or as an official confirmation of any 
transaction, unless specifically agreed otherwise.  All market 
prices, data and other information are not warranted as to 
completeness or accuracy and are subject to change without
notice.  Any comments or statements made herein do not 
necessarily reflect the views or opinions of Capital Institutional
Services, Inc.  Capital Institutional Services, Inc. accepts no
liability for any errors or omissions arising as a result of
transmission.  Use of this communication by other than intended
recipients is prohibited.
**

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




Re: [PHP] Re: PHP slash Apache question?

2001-10-02 Thread jimw

Michael Champagne [EMAIL PROTECTED] wrote:
 Great, thanks for the response Jim.  Would there possibly be a way around this
 using mod_rewrite?

no. if you'll check your logs, you'll see that the request is never
even making it to your server. internet explorer simply barfs on urls
that include a port but don't include a scheme.

jim

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]