安裝 Gallery2 相簿管理程式

2009-05-13 13:13:07来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

期待已久的 Gallery2 相簿管理程式終於正式在 2005\09\13 Release 出來,有別於 Gallery1.x 版,新版的 Gallery2 結合了資料庫,因此使得整體內容管理更加豐富,但相對系統資源也吃得比以 Gallery1/x 重,因此有興趣升級的朋友可裝來玩玩,小弟同樣於 FreeBSD Server 中安裝 Gallery2,不改過去的安裝方式皆採 ports 安裝,採用 ports 安裝方便的地方在於,它讓我不用到處找軟體只要下 make install 就幫裝好所有相依的套件,這也是我為什麼這麼喜歡 FreeBSD 的原因,因為 ports 實在是太方便使用了 ~~
Environment :
硬體:i386 PC Intel P3 550
記憶體網卡:512M RAM + Intel 網卡
作業系統:FreeBSD 5.4 Release
Setp 1.
安裝 Mysql40
#cd /usr/ports/database/mysql40-server
#make install
安裝 Apache20
#cd /sur/ports/www/apache20
#make install
安裝 PHP4
#cd /usr/ports/lang/php4      
#make install      #  會跳出選單只選 apache2
[X] APACHE2    Use apache 2.x instead of apache 1.3.x
[ ] DEBUG      Enable debug         
[ ] MULTIBYTE  Enable zend multibyte support               
[ ] IPV6       Enable ipv6 support                        
[ ] OPENSSL    Build static OpenSSL extension
安裝 php4 的延伸套件模組
#cd /usr/ports/lang/php4-extensions
#make config     #  會跳出所有的延伸套件供你選擇,我只挑了下列幾項:
[X] CTYPE ctype functions
[X] GD GD library support
[X] GETTEXT gettext library support
[X] ICONV iconv support
[X] IMAGICK ImageMagick support
[X] MYSQL MySQL database support
[X] OVERLOAD user-space object overloading support
[X] PCRE Perl Compatible Regular Expression support
[X] POSIX POSIX-like functions
[X] SESSION session support
[X] TOKENIZER tokenizer support
[X] XML XML support
[X] ZIP ZIP support
[X] ZLIB ZLIB support
#make install
安裝 Gallery2
#cd /usr/ports/www/gallery2
#make install clean
Setp 2.
#vi /usr/local/etc/apache2/httpd.conf      #  設定 apache2 的設定檔
AddDefaultCharset big5DefaultLanguage zh-TWDirectoryIndex index.php index.html index.html.var        ServerAdmin admin@ntut.idv.tw        DocumentRoot /usr/local/www/data-dist/gallery2        ServerName photos.ntut.idv.tw        ErrorLog /var/log/error_log        CustomLog /var/log/access_log common        AllowOverride Options FileInfo
#vi /usr/local/etc/php.ini
memory_limit = 16M      ; Maximum amount of memory a script may consume (8MB)     #  由 8M 改為 16M

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Gallery2 相簿管理程式搬遷

下一篇:PHPBB 架設安裝