3
我搜索了網絡,觀看了YouTube視頻並無濟於事。我正在尋找在phpmyadmin上的設計器選項卡,我將能夠看到表格關係,就像你在MS Access中一樣。我已經設置了我的config.inc.php,就像我在無數網站上看到的一樣,運行sql來創建phpmyadmin數據庫,而我只是沒有獲得設計器視圖的選項卡。如何在wamp上設置phpmyadmin的設計器選項卡
我已經使用config.sample.inc.php
文件,並取消註釋這些行:
/* User used to manipulate with storage */
$cfg['Servers'][$i]['controlhost'] = 'localhost';
$cfg['Servers'][$i]['controluser'] = 'root';
$cfg['Servers'][$i]['controlpass'] = 'root';
/* Storage database and tables */
$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]['table_uiprefs'] = 'pma_table_uiprefs';
$cfg['Servers'][$i]['tracking'] = 'pma_tracking';
$cfg['Servers'][$i]['designer_coords'] = 'pma_designer_coords';
$cfg['Servers'][$i]['userconfig'] = 'pma_userconfig';
$cfg['Servers'][$i]['recent'] = 'pma_recent';
$cfg['Servers'][$i]['table_uiprefs'] = 'pma_table_uiprefs';
然後保存在config.inc.php文件,登錄文件,並收到此錯誤。
「phpMyAdmin配置存儲沒有完全配置,某些擴展功能已被禁用。要了解爲什麼請點擊此處。」
點擊「這裏」帶我到這個頁面,我猜,基本上告訴我一切都被禁止
這是我後,它必須能夠完成我很清楚地失去了一些東西
出於好奇,爲什麼阿帕奇需要重新啓動?我只會在linux服務器上遇到同樣的問題。 (我必須等到系統管理員重新啓動apache) – relipse 2013-10-16 04:58:14
我不確定,但是一旦apache重新啓動,它就會工作。我只是將它用於本地開發,以使我更容易編寫大型SQL連接。一旦我把它放在服務器上,我就不需要它了。我認爲,因爲你編輯了一個配置文件,apache只會在重新啓動時重新緩存文件。這就是我所說的。我可能是錯的 – Mark 2013-10-28 06:00:09