No connection could be made because the target machine actively refused it

前端 未结 9 588
情深已故
情深已故 2020-11-30 11:34

When I was trying to connect my phpmyadmin on my XAMPP, it gave an error:

#2002 - No connection could be made because the target m         


        
9条回答
  •  爱一瞬间的悲伤
    2020-11-30 11:47

    Please try changing connect_type in your config.inc.php from 'tcp' to 'http'. This file exists in the phpMyAdmin top level directory.

    Existing line looks like this:

    $cfg['Servers'][$i]['connect_type'] = 'tcp';
    

    New line should be looking like this:

    $cfg['Servers'][$i]['connect_type'] = 'http';
    

提交回复
热议问题