auth->check_module_permissions('sites'); /* * get the id of the database (must be int!) */ if (!isset($_GET['id'])){ die ("No DB selected!"); } $databaseId = intval($_GET['id']); /* * Get the data to connect to the database */ $dbData = $app->db->queryOneRecord("SELECT server_id FROM web_database WHERE database_id = " . $databaseId); $serverId = intval($dbData['server_id']); if ($serverId == 0){ die ("No DB-Server found!"); } $serverData = $app->db->queryOneRecord( "SELECT server_name FROM server WHERE server_id = " . $serverId); /* * We only redirect to the login-form, so there is no need, to check any rights */ isset($_SERVER['HTTPS'])? $http = 'https' : $http = 'http'; header('location:' . $http . '://' . $serverData['server_name'] . '/phpmyadmin'); exit; ?>