安裝Gallery1.5.10網路相簿
Environment
Hardware:VIA EPIA SP13000, 1GB RAM
OS Version:FreeBSD 7.2 Release
先安裝Gallery會用到的ImageMagick
port
# cd /usr/ports/graphics/ImageMagick
# make config
# make install clean
從官網下載Source編譯
Download and unpack the distribution
# tar zxvf ImageMagick-6.5.7-5.tar.gz
configure and compile ImageMagick
# cd ./ImageMagick
# ./configure
(需要好一陣子,休息一下) # make install
(需要好一陣子,休息一下)Gallery官網下載gallery主程式
解壓縮檔案 更名
# tar zxvf gallery-1.5.10.tar.gz
# mv gallery-1.5.10 ./gallery
複製到apache網頁目錄# mv gallery /DocumentRoot
# cd /DocumentRoot
# touch .htaccess ; chmod 666 .htaccess
# touch config.php ; chmod 666 config.php
(i.架設新相簿)在網頁目錄下建立albums
# cd ..
# mkdir albums ; chmod 755 albums
(ii.舊相簿還原)複製備份資料夾放到網頁目錄
# cp albums /DocumentRoot
正體中文化
下載並移動到locale資料夾
# mv ./zh_TW.utf8 /DocumentRoot
# mv ./zh_TW /DocumentRoot
開啟http://ip/gallery/setup/
按步驟下去設定就OK了
修改完後,系統建議執行secure.sh將安全性調高
# ./secure.sh
如果要重新修改設定,先執行configure.sh後開啟瀏覽器設定/gallery/setup
# ./configure.sh
Note:
Imagemagick path: /usr/local/bin
這次安裝Gallery上傳照片有時會出現error,error message如下
查詢後問題為php.ini 參數 upload_max_filesize預設是2MB
所以上傳檔案超過2MB會出現問題!! 修改後已解決bug
# ./secure.sh
如果要重新修改設定,先執行configure.sh後開啟瀏覽器設定/gallery/setup
# ./configure.sh
Note:
Imagemagick path: /usr/local/bin
這次安裝Gallery上傳照片有時會出現error,error message如下
Upload error: Upload failed:
Item looks like an image, but has no dimensions? Please verify it's not a broken image.
Item looks like an image, but has no dimensions? Please verify it's not a broken image.
查詢後問題為php.ini 參數 upload_max_filesize預設是2MB
所以上傳檔案超過2MB會出現問題!! 修改後已解決bug