お名前.comでphpmyadmin FTP #2002 - Can't connect to local MySQL server through socket '/tmp/mysql.sock'のエラー対策方法
作業は簡単でPhpMyAdminのサイトからソースをダウンロードして、
設定ファイルconfig.inc.phpをPhpMyAdminのトップディレクトリに以下のように配置するだけ。
<?php
$cfg['blowfish_secret'] = "ba17c1ec07d65003";
$i = 0;
$i++;
$cfg['Servers'][$i]['auth_type'] = "cookie";
$cfg['Servers'][$i]['host'] = "{DBホスト名}"; // ここにWindows Azureのポータルで取得した接続情報を記述
$cfg['Servers'][$i]['connect_type'] = "tcp";
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['extension'] = "mysqli";
$cfg['Servers'][$i]['AllowNoPassword'] = false;
?>