0
我在我的電腦上安裝了wamp服務器。我已經使用用戶:'root
'和空白密碼,直到昨天。但今天突然發現我無法登錄到我的phpmyadmin。我在C:\wamp64\apps\phpmyadmin4.5.2
目錄下檢查了我的config.inc.php。我已經添加下面的代碼:本地主機上無法登錄到我的phpmyadmin
/* Servers configuration */
$i = 0;
$cfg['blowfish_secret'] = 'a8b7c6d'; //What you want
/* Server: localhost [1] */
$i++;
$cfg['Servers'][$i]['verbose'] = 'Local Databases';
$cfg['Servers'][$i]['host'] = '127.0.0.1';
$cfg['Servers'][$i]['extension'] = 'mysqli';
$cfg['Servers'][$i]['auth_type'] = 'cookie';
$cfg['Servers'][$i]['user'] = '';
$cfg['Servers'][$i]['password'] = '';
// Hidden databases in PhpMyAdmin left panel
// $cfg['Servers'][$i]['hide_db'] = '(information_schema|mysql|performance_schema|sys)';
// Allow connection without password
$cfg['Servers'][$i]['AllowNoPassword'] = true;
// Suppress Warning about pmadb tables
$cfg['PmaNoRelation_DisableWarning'] = true;
// To have PRIMARY & INDEX in table structure export
$cfg['Export']['sql_drop_table'] = true;
$cfg['Export']['sql_if_not_exists'] = true;
$cfg['MySQLManualBase'] = 'http://dev.mysql.com/doc/refman/5.7/en/';
/* End of servers configuration */
我編輯的文件與['user'] ='root'
和['password']=''
但沒有運氣。可以請任何人幫助我嗎?我不知道有什麼問題。我有很多文件託管在我的本地主機。這將是一個很大的幫助。提前
首先你需要檢查當前使用'phpinfo()'運行的php版本,然後檢查那裏的配置文件路徑。更改文件,然後保存,然後重新啓動服務器(您正在使用的xampp/wamp/lamp/mamp whatevrer)。重新啓動很重要 –
我檢查過了。我正在使用PHP版本7和php.ini的配置路徑是C:\ Windows ..現在我該怎麼辦? – Gamer
改變任何你想改變和保存,然後重新啓動你的服務器 –