程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MYSQL入門知識 >> 解決phpMyAdmin 高級功能未全部設置,部分功能不可用以及短語密

解決phpMyAdmin 高級功能未全部設置,部分功能不可用以及短語密

編輯:MYSQL入門知識
 

1、解決登錄phpmyadmin提示未知的語言:zh.問題

先登錄進去phpmyadmin,點擊左側phpmyadmin數據庫表 然後點擊導入,

將phpmyadmin安裝目錄下的examples/create_tables.sql導入這個數據庫 ,到此為止 此問題解決

2、解決phpMyAdmin 高級功能未全部設置

修改phpmyadmin目錄下的libraries目錄中的config.default.php文件,內容如下
 

 

 

$cfg['Servers'][$i]['controluser'] = 'pma'; //更具自己的設定修改成自己的用戶名

 

 

$cfg['Servers'][$i]['controlpass'] = 'pmapass';//更具自己的設定修改成自己的密碼

 

 

$cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';

 

 

$cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark';

 

 

$cfg['Servers'][$i]['relation'] = 'pma_relation';

 

 

$cfg['Servers'][$i]['table_info'] = 'pma_table_info';

 

 

$cfg['Servers'][$i]['table_coords'] = 'pma_table_coords';

 

 

$cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages';

 

 

$cfg['Servers'][$i]['column_info'] = 'pma_column_info';

 

 

$cfg['Servers'][$i]['history'] = 'pma_history';

 

 

$cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';

 

 

$cfg['Servers'][$i]['recent'] = 'pma_recent';

 

 

$cfg['Servers'][$i]['table_uiprefs'] = 'pma_table_uiprefs';

 

 

$cfg['Servers'][$i]['tracking'] = 'pma_tracking';

 

 

$cfg['Servers'][$i]['userconfig'] = 'pma_userconfig';


到此為止 此問題解決

3、短語密碼的提示的解決

還是繼續第二部的文件,把

 

 


$cfg['blowfish_secret'] = '';


修改成

 

 


$cfg['blowfish_secret'] = '123456';


修改成任意字符

到此為止 此問題解決

4、解決功能沒法用

此方法是將php.ini文件中的;extension=php_mcrypt.dll前邊的一個;去掉

然後重啟服務
 

 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved