# =============================================
# 簡易安裝教學
# =============================================
1. 環境
安裝 Poti-board 的必備環境
1.1 空間選擇
需要有運行http服務 (ex. IIS, Apache) , 支援 PHP 語言 (Hypertext Preprocessor), 並可以FTP上傳檔案的網頁空間
您可以選擇自行架設主機或租用附費空間
1.2 環境檢查
檢查網頁空間是否可以執行 Poto-board
檢查方式:
1.3 線上繪圖留言版需要哪些檔案
- 主程式
Poto-Board
下載位址 PHPスクリプト
- 風格樣版
下載位址 PHPスクリプト
- 繪版程式
- PaintBBS (一般版)
- Shi-Painter (強化版)
- Shi-Painter Pro
- PCHViewer (繪圖過程播放)
下載位址 しぃ堂 Shi-dow
2. 安裝線上繪圖版
2.1 解壓縮檔案
將下載的 potiboard1.32_050602.zip, poti_monow050602.zip 解壓縮到同一資料夾中 (ex. paintbbs), 並建立三個目錄 src, thumb, tmp
而pbbs222_8.zip, sptr_all1114.zip, pchview_123.zip 只需要其中的.jar檔案即可
2.2 檔案權限設定
利用FTP將剛剛的繪版資料夾上傳至web server, 上傳完成後依序設定檔案與目錄的屬性(chmod)
代碼:
【directory構造】( ) 内為檔案權限値
./-- 繪版根目錄 (777)
|config.php (644)
|htmltemplate.inc (644)
|potiboard.php (644)
|thumbnail_gd.php (644)
|thumbnail_re.php (644)
|loadcookie.js (644)
|
|※ 使用 repng2jpeg 時,需?#93;定此項目
|repng2jpeg (755) Binary
|
|※ 樣版
|template_ini.php (644)
|mx_catalog.html (644)
|mx_main.html (644)
|mx_other.html (644)
|mx_paint.html (644)
|siihelp.php (644)
|
+--./src/ (777) directory
+--./thumb/ (777) directory
※ 使用會版功能時
./-- 繪版根目錄
|picpost.php (644)
|palette.txt (644)
|
+--./tmp/ (777) directory
|
=== 使用繪版功能時 ====
|
|PaintBBS.jar (644) binary ※ 使用 PaintBBS 時
|spainter_all.jar (644) binary ※ 使用 Shi-Painter 時
|PCHViewer.jar (644) binary ※ 繪圖過?#123;\播放?#123;\式
2.2 設定繪版
編輯繪版資料夾中的設定檔config.php
這個步驟是繪版正常運作的關鍵, 以下列出幾個比較重要的設定
代碼:
// 言語?#93;定
define(LANG, 'zh-TW');
// Text Code 輸出指定 1:EUC-JP, 2:Shift_JIS, 3:ISO-2022-JP(JIS), 4:UTF-8
// 請選擇 UTF-8, 支援多國語言
define(CHARSET_OUT, '4');
// 特殊標籤使用 �}啟:1 關閉:0
define(USE_POTITAG, '1');
// 使用者刪除權限 (0:不可 1:可刪除tree, 2:可刪除tree與圖檔, 3:可刪除tree,log,圖檔)
// ※ tree決定留言的順序, 當使用者刪除紀錄在tree中留言編號後, 該則留言會被從留言板中移除, 而留下的log檔可經由管理者刪除
define(USER_DEL, '1');
// 選擇文字顏色功能 (�}啟:1, 關閉:0)
define(USE_FONTCOLOR, '1');
// 是否�}啟在回覆中繪(貼)圖的功能 ( �}啟:1, 關閉:0)
define(RES_UPLOAD, '1');
// 回覆留言中(繪)貼圖的圖片大小限制
define(MAX_RESW, '150'); // 寬
define(MAX_RESH, '150'); // 高
待續 ...(2004-08-08 23:11)