Quote:
|
Originally Posted by falko
Please open /home/admispconfig/ispconfig/lib/config.inc.php. You should find something like this:
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://blabla:81";
}
Replace it with this:
Code:
if(isset($_SERVER['HTTP_HOST']) && isset($_SERVER['SERVER_PORT'])){
$go_info["server"]["server_url"] = 'https://'.$_SERVER['HTTP_HOST'].':'.$_SERVER['SERVER_PORT'];
} else {
$go_info["server"]["server_url"] = "https://blabla:81";
}
|
Hi,
Making these changes does not solve the problem. May be it even get worse. I had a similar problem on a windows 3k server where i installed php, mysql and phpmyadmin on IIS. When I changed the the url ponting to phpmyadmin to "" from "localhost", it does solved a similar problem.
Is there a way I can try this on Debian? as I please need to connect to ISPConfig outside the network..
Thanks for your help