/path/to/xampp/PhpMyAdmin/config.inc.php dosyası açalım.
Aşağıdaki kod blogunun dosyanın alt kısmına yapıştırdıktan sonra verbose, host, port, user ve password bilgilerinizi düzenleyebilirsiniz.

$i++
$cfg['Servers'][$i]['verbose'] = 'Remote Server 1';// Change this to whatever you like.
$cfg['Servers'][$i]['host'] = '127.0.0.1';
$cfg['Servers'][$i]['port'] = '3307';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['compress'] = FALSE;
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['user'] = '';
$cfg['Servers'][$i]['password'] = '';

Kaynakça: https://stackoverflow.com/questions/16801573/how-to-access-remote-server-with-local-phpmyadmin-client

Local PhpMyadmin’de Uzak Veritabanına Bağlantı

Bir cevap yazın

E-posta hesabınız yayımlanmayacak.