1 頁 (共 1 頁)

[問題] phpMyAdmin 2.6.0-rc1 PMA Database 問題

發表於 : 2005-07-18 19:46
ChihKang
各位大大您好:

我的 phpMyAdmin 2.6.0-rc1 出現以下錯誤訊息應該如何修改,

請教教小弟,還有檔案要如何匯入 phpMyAdmin 2.6.0-rc1 ,

因為我的登入後頁面只有看到匯出沒有看到匯入,

先謝謝您、辛苦了、小弟會感恩不盡。

錯誤
關聯資料表的附加功能未能啟動, 請按此 查出問題原因

PMA Database ... 未能確定[ 說明文件 ]
一般關聯功能 未啟動

發表於 : 2006-06-16 18:01
flylinux
1.先建立一個名為phpmyadmin的資料庫
2.然後把目錄下scripts/create_tables.sql匯入到這個資料庫 mysqldir/bin/mysql -u root -p /phpadmin_dir/scripts/create_tables.sql
3.打開 config.inc.php 配置文件.

$cfg['Servers'][$i]['pmadb'] = ''; // 'phpmyadmin' - see scripts/create_tables.sql
$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]['pmadb'] = 'phpmyadmin'; // 'phpmyadmin' - see scripts/create_tables.sql
$cfg['Servers'][$i]['bookmarktable'] = 'pma_bookmark'; // 'pma_bookmark'
$cfg['Servers'][$i]['relation'] = 'pma_relation'; // 'pma_relation'
$cfg['Servers'][$i]['table_info'] = 'pma_table_info'; // 'pma_table_info'
$cfg['Servers'][$i]['table_coords'] = 'pma_table_coords'; // 'pma_table_coords'
$cfg['Servers'][$i]['pdf_pages'] = 'pma_pdf_pages'; // 'pma_pdf_pages'
$cfg['Servers'][$i]['column_info'] = 'pma_column_info'; // 'pma_column_info'
$cfg['Servers'][$i]['history'] = 'pma_history'; // 'pma_history'

將黑色的設定改成紅色的設定,這樣重新整理就好了。

發表於 : 2006-06-16 18:47
chiouss
都過了一年,我相信他應該知道要怎麼設定了...