網站環境:
Linux CentOS
php5.2.10
apache 2.2.11
Zend Opt3.3.3
#原因:
checkcode.php產生的是.jpg格式的文件,但phpinfo()沒有顯示支援jpg格式。
解決方法:
1、下載jpegsrc.v6b.tar.gz和freetype-2.3.7.tar.gz檔案
#2、安裝:
Checking jpeg library [root@www download]# rpm -qa | grep jpeg libjpeg-devel-6b-43.fc10.i386 libjpeg-6b-43.fc10.i386 Install jpeg library [root@www download]# tar -zxvf jpegsrc.v6b.tar.gz [root@www download]# cd jpeg-6b [root@www jpeg-6b]# ./configure --prefix=/usr/local/jpeg --with-freetype=/usr/local/freetype --enable-shared --enable-static [root@www jpeg-6b]# make [root@www jpeg-6b]# make intall Checking freetype library [root@www download]# rpm -qa | grep freetype freetype-2.3.7-1.fc10.i386 freetype-devel-2.3.7-1.fc10.i386 Install freetype library [root@www download]# tar -zxvf freetype-2.3.7.tar.gz [root@www download]# cd freetype-2.3.7 [root@www freetype-2.3.7]# ./configure --prefix=/usr/local/freetype --enable-shared --enable-static [root@www freetype-2.3.7]# make [root@www freetype-2.3.7]# make intall
3、現在開始安裝php-5.2.10。
先進入php原始碼目錄.
#make #make install #cp php.ini-recommended /usr/local/php/etc/php.ini #echo AddType application/x-httpd-php .php>>/usr/local/apache2/conf/httpd.conf
最後根據make install 傳回的安裝完成的資訊。
You may want to add: /usr/local/php/lib/php to your php.ini include_path
把路徑加入php.ini檔案裡的include_path裡面去,保存。
至此,PHP安裝完畢。
4、查看phpinfo()文件,回傳結果已經顯示gd支援jpeg格式了。
5、現在再安裝PHPCMS2008 SP2,進入後台登入介面。一切正常。
推薦教學:linux教學
#以上是linux環境下phpcms後台驗證碼不顯示的詳細內容。更多資訊請關注PHP中文網其他相關文章!