I find this interesting. I also found some bugs (?) in V56_ZCON_1.1. I am using port 800 When I click the -WWW root- button on the main ZCon page the URL is messed up. I get http://:800/localhost/ instead of http://localhost:800/ In the code -zcon.phpw- I found: //-- Server root WWW $apache_port = get_apache_port(); // Get actual port if($apache_port == 80){ // Standard port no change $text='http://localhost/'; // Use as is } else{ // Non standard hence $text='http://:'.$apache_port.'/localhost/'; // hence add port <<< The //--Apanel Button works. else{ // Non standard hence $text='http://localhost:'.$apache_port.'/apanel/'; // hence add port I see the same misalignment in the //--phpMyAdmin Button else{ // Non standard hence $text='http://:'.$apache_port.'/localhost/apanel/phpMyAdmin/'; // hence add port and //-- Server root SSL else{ // Non standard hence $text='http://:'.$apache_port.'/localhost/'; // hence add port Will try to fix myself once I figure out how to "roll my own" as it were. I'm totally new to all this, just dl US5.6.2 yesterday, so it may take me a bit. -WD Win 7 Home Premium