ftimme
2012-05-10 4c28d9c34f5f3e5ccbbed6dbb0ba08bc5235b53b
interface/web/sites/database_phpmyadmin.php
@@ -53,12 +53,26 @@
$serverData = $app->db->queryOneRecord(
    "SELECT server_name FROM server WHERE server_id = " .
    $serverId);
$app->uses('getconf');
$global_config = $app->getconf->get_global_config('sites');
$web_config = $app->getconf->get_server_config($serverId,'web');
/*
 * We only redirect to the login-form, so there is no need, to check any rights
 */
isset($_SERVER['HTTPS'])? $http = 'https' : $http = 'http';
($_SERVER["SERVER_PORT"] != '80' and $http == 'https')? $serverPort = ':'.$_SERVER["SERVER_PORT"] : $serverPort = '';
header('location:'.$http.'://'.$serverData['server_name'].$serverPort.'/phpmyadmin');
if($global_config['phpmyadmin_url'] != '') {
   $phpmyadmin_url = $global_config['phpmyadmin_url'];
   $phpmyadmin_url = str_replace('[SERVERNAME]',$serverData['server_name'],$phpmyadmin_url);
   header('Location:'.$phpmyadmin_url);
} else {
   isset($_SERVER['HTTPS'])? $http = 'https' : $http = 'http';
   if($web_config['server_type'] == 'nginx') {
      header('location:' . $http . '://' . $serverData['server_name'] . ':8081/phpmyadmin');
   } else {
      header('location:' . $http . '://' . $serverData['server_name'] . '/phpmyadmin');
   }
}
exit;
?>