|
首先:
壓所整個論壇空間檔案 以及 匯出資料庫
接下來:
接著至新空間將論壇檔案全部匯入
資料庫匯入
創建新資料庫名與資料庫用戶名
需修改部分請注意以下三處:
修改處(一):
位置:uc_server/data
檔案名稱:config.inc.php
修改內容:
define('UC_DBNAME', '新資料庫名');
define('UC_DBUSER', '新資料庫用戶名稱');
define('UC_DBPW', '新資料庫用戶密碼');
修改完後 上傳 並覆蓋舊檔案
修改處(二):
位置:config
檔案名稱:config_global.php
修改內容:
$_config['db']['1']['dbname'] = '新資料庫名';
$_config['db']['1']['dbuser'] = '新資料庫用戶名稱';
$_config['db']['1']['dbpw'] = '新資料庫用戶密碼';
修改完後 上傳 並覆蓋舊檔案
修改處(三):
位置:config
檔案名稱:config_ucenter.php
修改內容:
define('UC_DBNAME', '新資料庫名');
define('UC_DBUSER', '新資料庫用戶名稱');
define('UC_DBPW', '新資料庫用戶密碼');
define('UC_DBTABLEPRE', '`新資料庫名`.此處無需要修改_');
define('UC_API', 'http://論壇首頁網址/uc_server'); *注意*論壇首頁尾部"forum.php"勿加入
修改完後 上傳 並覆蓋舊檔案
|
|