2014-01-17 16 views
0

我剛剛更新到phpMyAdmin 4.1.4,現在它給我這個:的phpmyadmin 4.1.4問題與羣組

$cfg['Servers'][$i]['users'] ... not OK [ Documentation ] 
$cfg['Servers'][$i]['usergroups'] ... not OK [ Documentation ] 
Configurable menus: Disabled 

$cfg['Servers'][$i]['navigationhiding'] ... not OK [ Documentation ] 
Hide/show navigation items: Disabled 

我是新來這和我的印象是,我只是那些行添加到下我的config.in.php文件的結尾。我的文件現在看起來像這樣:

$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]['tracking'] = 'pma_tracking'; 

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

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

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

$cfg['Servers'][$i]['users'] = 'pma__users'; 

$cfg['Servers'][$i]['usergroups'] = 'pma__usergroups'; 

$cfg['Servers'][$i]['navigationhiding'] = 'pma__navigationhiding'; 

但是我仍然遇到和以前一樣的問題。此外,在左側的數據庫列表中,沒有包含phpmyadmin下的這些名稱的表。我需要爲他們創建表嗎?如果是這樣,我怎麼知道在桌子上放什麼?

回答

0

您只需在examples/create_tables.sql(即在主phpMyAdmin安裝的示例文件夾內)中運行該腳本即可創建缺失的表。

它應該忽略已經創建的表。您需要在配置文件中使用與腳本中使用的表名相同的表名,但看起來您使用的默認設置應該可以正常工作,因此無需在其中更改任何內容。

您可以使用phpMyAdmin中的Import選項卡運行該腳本。點擊phpMyAdmin數據庫(可能是「pmadb」),然後查找「導入」選項卡。 (如果您的本地計算機不是運行phpMyAdmin的計算機,則必須先在本地傳輸文件,使用UploadDir功能並將文件複製到UploadDir,或使用命令行工具)。

+0

因此,在那裏添加werent的表,但它將它放在phpmyadmin db下的子目錄「pma」下。所以我有主分貝下的所有表格,但所有的表格都加上了我在新的「pma」子目錄下需要的三個表格。我還有同樣的問題。顯然phpmyadmin只是今天再次更新,所以即時通訊將嘗試一下,看看會發生什麼... – user3204742

+0

沒有想到它現在的工作。謝謝您的幫助! – user3204742