ID:               40579
 Comment by:       vsamwarcraft3 at hotmail dot com
 Reported By:      ruslan dot kyrychuk at gmail dot com
 Status:           No Feedback
 Bug Type:         *Web Server problem
 Operating System: Windows 2003
 PHP Version:      5.2.1
 New Comment:

I have the same problem with the same symptoms. I am running a server
on Ubuntu and an server on Debian.


Previous Comments:
------------------------------------------------------------------------

[2009-03-18 13:39:51] peter at lvp-media dot com

This isn't a PHP-specific bug, it seems to be a problem within
mod_rewrite or Apache itself. I ran into this problem as well, but was
able to reproduce it with Perl and C scripts. For completeness, I'm
running PHP 5.3-dev on Linux with Apache 2.2.

------------------------------------------------------------------------

[2009-01-26 15:06:38] tim at timloram dot me dot uk

I am experiencing this issue with exact same symptoms. Having used
mod_rewrite to redirect incoming requests to central gateway script,
$_SERVER['SERVER_PORT'] is always reading '80' even if my inital URL was
http://abc.com:86

Any ideas?

------------------------------------------------------------------------

[2007-03-31 01:00:00] php-bugs at lists dot php dot net

No feedback was provided for this bug for over a week, so it is
being suspended automatically. If you are able to provide the
information that was originally requested, please do so and change
the status of the bug back to "Open".

------------------------------------------------------------------------

[2007-03-23 11:10:51] tony2...@php.net

Works just fine here.

["SERVER_PORT"]=> string(4) "8887"
["SCRIPT_NAME"]=> string(11) "/index.html" 

------------------------------------------------------------------------

[2007-03-23 10:58:01] ruslan dot kyrychuk at gmail dot com

Reproduce code:
---------------
1. Configure Apache to use port 8080
2. Create .htaccess file:
Options +FollowSymLinks -Indexes
RewriteEngine on 

RewriteCond %{REQUEST_FILENAME}  (.+)\.html
RewriteRule ^(.+)$ test.php [QSA,L]
3. Create test.php file
<?php
echo $_SERVER['SERVER_PORT'];
?>
Run http://localhost:8080/test.html
Output: 80
Run http://localhost:8080/test.php
Output: 8080

------------------------------------------------------------------------

The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
    http://bugs.php.net/40579

-- 
Edit this bug report at http://bugs.php.net/?id=40579&edit=1

Reply via email to