HI. I have upgrade ispconfig to latest version, but when join to control pannel as administrator and click on Management->Server, all Server sub menu not is diponible and i cannot see setting of server, service and status!!!!! my browser error: Url not found Url not found www.207.210.96.14. The system, in management-> service section, search for domain www.207.210.96.14 and not only ip 207.210.96.14 HELP HELP!
Have a look at this. Detailed Changelog ------------------ - Support for 64Bit Linux: ..... ..... - The server url is now set dynamically in config.inc.php.
yes i have see already my config.inc.php and...: $go_info["server"]["server_url"] = "https://207.210.96.14:81"; but this is correct?! is my ip.. what I would have to change in server variable url?! Thanks josef
i dont see.... this is my files.... have replaced sensitive data with "XXXXXX" /********************************************** * System Settings **********************************************/ $go_info["server"]["dir_trenner"] = "/"; $go_info["server"]["server_root"] = "/home/admispconfig/ispconfig"; if(isset($_SERVER['SERVER_NAME']) && isset($_SERVER['SERVER_PORT'])){ $go_info["server"]["server_url"] = 'https://'.$_SERVER['SERVER_NAME'].':'.$_SERVER['SERVER_PORT']; } else { $go_info["server"]["server_url"] = "https://xxx.xxx.xxx.:81"; }
You can try to replace these lines: Code: if(isset($_SERVER['SERVER_NAME']) && isset($_SERVER['SERVER_PORT'])){ $go_info["server"]["server_url"] = 'https://'.$_SERVER['SERVER_NAME'].':'.$_SERVER['SERVER_PORT']; } else { $go_info["server"]["server_url"] = "https://207.210.96.14:81"; } with: Code: $go_info["server"]["server_url"] = "https://207.210.96.14:81"; By the way, please do not post the same question in several forums.