系統需求
- 伺服器: Apache (需要支援 mod_rewrite) 、Nginx
- PHP 5.5+
- MySQL 5.5+
線上安裝
- 下載安裝包,解壓,上傳檔案到伺服器
- 訪問域名根目錄
- 填寫網址資訊:如網站名稱、管理員資訊、資料庫資訊,點選“Install Flarum”按鈕
命令列安裝
- 下載安裝包,解壓,上傳檔案到伺服器
- 進入根目錄,執行 php flarum/flarum install.
- 填寫網址資訊:如網站名稱、管理員資訊、資料庫資訊
URL重寫
在安裝和執行Flarum之前,您需要設定URL重寫規則。 Flarum附帶了一個Apache的.htAccess檔案,此檔案包含了需要用到的規則。 如果您使用的是其他web伺服器,您需要在配置檔案中新增以下規則:
Nginx
location / { try_files $uri $uri/ /index.php?$query_string;}location /api { try_files $uri $uri/ /api.php?$query_string;}location /admin { try_files $uri $uri/ /admin.php?$query_string;}location /flarum { deny all; return 404;}location ~ .php$ { fastcgi_split_path_info ^(.+.php)(/.+)$; fastcgi_pass unix:/var/run/php5-fpm.sock; fastcgi_index index.php; include fastcgi_params;}
目前還沒有配置SMTP的圖形化介面 (#258),但您可以手動修改資料庫的config表:
mail_driver: smtpmail_host: ...mail_port: ...mail_username: ...mail_password: ...mail_encryption: ...
匯入資料
最終我們希望可以將其他論壇的資料匯入到 Flarum中,這樣你就可以放心地遷移到Flarum軟體。 然而,在這個階段還為時過早,我們需要先發布穩定版!
關於Flarum
Flarum 是一個基於 Laravel 框架的輕論壇,基於 PHP 構建,介面使用 Mithril 構建,由 Toby 開發並維護。