brucevb Posted November 3, 2006 Share Posted November 3, 2006 Hello,I have php running fine on IIS on port 80 but when I switch to another port say 8044 I get a page cannot be displayed error. Can php run on a different port besides port 80 on IIS or is there another configuration setting somewhere?Thanks in advance! Link to comment https://forums.phpfreaks.com/topic/26076-php-on-iis-and-port-address-80/ Share on other sites More sharing options...
wildteen88 Posted November 4, 2006 Share Posted November 4, 2006 You will need to configure your web server, in your case IIS, to run on port 8044 instead of 80 (which is the standard port for HTTP Servers to run on). PHP runs through the web server. Link to comment https://forums.phpfreaks.com/topic/26076-php-on-iis-and-port-address-80/#findComment-119569 Share on other sites More sharing options...
brucevb Posted November 6, 2006 Author Share Posted November 6, 2006 Hey thanks for replying,Right but when I switch IIS to port 8044 is gives a page not found error. Does PHP support other ports beside 80 on IIS? When I do something simple like below it works fine on port 80 but not on 8044 or anything else. ?? <?phpphpinfo();?> Link to comment https://forums.phpfreaks.com/topic/26076-php-on-iis-and-port-address-80/#findComment-120631 Share on other sites More sharing options...
trq Posted November 7, 2006 Share Posted November 7, 2006 [quote]Does PHP support other ports beside 80 on IIS?[/quote]PHP doesn't care (or even know) what port your server is using. Are you restarting IIS after you make these changes? Link to comment https://forums.phpfreaks.com/topic/26076-php-on-iis-and-port-address-80/#findComment-120678 Share on other sites More sharing options...
brucevb Posted November 9, 2006 Author Share Posted November 9, 2006 Thats what I though as well, just wanted to confirm. It must be something else I am missing. Thanks !! Link to comment https://forums.phpfreaks.com/topic/26076-php-on-iis-and-port-address-80/#findComment-122235 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.