您在這裡

drupal 6.19 設上的問題

lovevalen's 的頭像
lovevalen 在 2010-10-03 (周日) 14:18 發表

Drupal 6.19
Drupal 核心更新狀態 最新的
GD Image Filtering Low Quality / Poor Performance
The installed version of PHP GD does not support image filtering(desaturate, blur, negate, etc). It was probably compiled using the official GD libraries from http://www.libgd.org instead of the GD library bundled with PHP. You should recompile PHP --with-gd using the bundled GD library. See http://www.php.net/manual/en/image.setup.php. An implementation of imagefilter in PHP will be used in the interim.
GD Image Rotation Low Quality / Poor Performance
The installed version of PHP GD does not support image rotations. It was probably compiled using the official GD libraries from http://www.libgd.org instead of the GD library bundled with PHP. You should recompile PHP --with-gd using the bundled GD library. See: http://www.php.net/manual/en/image.setup.php. An implementation of imagerotate in PHP will used in the interim.
GD 程式庫 2.0 or higher
GD 程式庫 2.0 or higher
Image import Import directory has not been configured.
The import directory must be configured and exist in order for the Image import module to function.
Image module directories Exists (sites/default/files/images).
ImageMagick advanced options ImageMagick image toolkit is not properly installed
The modules/image/image.imagemagick.inc file must be copied to includes in order for the ImageMagick image toolkit to function.
MySQL 資料庫 5.0.51a
PHP 5.2.6-1+lenny8
PHP register globals 停用
PHP 記憶體限制 128M
Unicode 程式庫 PHP Mbstring Extension
cron維護作業 上一次執行是在 3 小時 54 分鐘 以前
你可以手動執行 cron。
圖片工具 The gd toolkit is installed.
存取 update.php 已保護
更新通知 啟用
模組和版型更新狀態 最新的
檔案系統 可寫入(公開的 下載模式)
網站伺服器 lighttpd/1.4.26
設定檔案 已保護
資料庫更新 最新的

請問
Image import Import directory has not been configured.
The import directory must be configured and exist in order for the Image import module to function.
Image module directories Exists (sites/default/files/images).
ImageMagick advanced options ImageMagick image toolkit is not properly installed
The modules/image/image.imagemagick.inc file must be copied to includes in order for the ImageMagick image toolkit to function.
..............................................................................................................................................................................................
要如何解決呢..

我自己在Debian架設的記錄,給你參考一下吧

Drupal 的 Reports Status 會一直出現php-gd功能支援不完全
解決的方式就是自己重編,編譯的方式如下,需要花費不少時間喔

~# apt-get install build-essential debhelper fakeroot
~# cd /usr/src
~# apt-get source php5
~# apt-get build-dep php5
~# cd php5-5.2.6.dfsg.1/

~# nano debian/rules
--with-gd=shared,/usr --enable-gd-native-ttf \
to
--with-gd=shared --enable-gd-native-ttf\

~# dpkg-buildpackage -rfakeroot
~# cd ..
dpkg -i php5-gd_5.2.6.dfsg.1-1+lenny8_amd64.deb

不過安裝完php5-gd_5.2.6.dfsg.1-1+lenny8_amd64.deb後
在系統昇級時會更新到php5-gd,所以可以直接取用gd.so
~# cd /usr/src
~# ar xv php5-gd_5.2.6.dfsg.1-1+lenny8_amd64.deb
~# tar zxvf data.tar.gz
~# cp usr/lib/php5/20060613/gd.so /usr/lib/php5/20060613/
~# /etc/init.d/apache2 restart

cogito ergo sum 我思故我在