2-1
完成資料庫部份設定
一、匯出資料表
- 點擊左邊「匯出」,將檔案存成 sql/mysql.sql 檔。
- sql是一個純文字檔,日後可以用來匯入以便快速建立資料庫結構,其中的註解建議都刪除。
二、修改 xoops_version.php 的設定
- 編輯 xoops_version.php,將資料庫設定部份註解取消,並填入正確內容
//---模組資料表架構---//
$modversion['sqlfile']['mysql'] = 'sql/mysql.sql';
$modversion['tables'][] = 'actions';
$modversion['tables'][] = 'signups';
-
$modversion['sqlfile']['mysql'] 是安裝時會用到
-
$modversion['tables']則是反安裝時會用到