>  기사  >  백엔드 개발  >  PHP gd 라이브러리 및 PHP 의사 정적 설치

PHP gd 라이브러리 및 PHP 의사 정적 설치

WBOY
WBOY원래의
2016-07-25 08:55:16944검색
  1. # tar zxvf httpd-2.2.6.tar.gz
  2. # cd httpd-2.2.6
  3. # ./configure --prefix=/usr /local/apache2 --enable-so --enable-track-vars --enable-proxy --enable-vhost-alias --enable-cache --enable-disk-cache --enable-mem-cache --enable -rewrite --enable-mods-shared=all
  4. # make
  5. # make install
复代码

3,JPEG包

  1. # tar zxvf jpegsrc.v6b.tar.gz
  2. # cd jpeg-6b/
  3. # mkdir /usr/local/jpeg
  4. # mkdir /usr/local/jpeg/bin
  5. # mkdir /usr/local/jpeg/lib
  6. # mkdir /usr/local/jpeg/include
  7. # mkdir /usr/local/jpeg/man
  8. # mkdir /usr/local/jpeg/man/man1
  9. # ./configure --prefix=/usr/local/jpeg
  10. # make
  11. # make install
  12. # make install- lib
复代码

4,TTF包

  1. # tar zxvf freetype-2.1.10.tar.gz
  2. # cd freetype-2.1.10
  3. # ./configure --prefix =/usr/local/freetype
  4. # make
  5. # make install
复代码

5,zlib包

  1. # tar zxvf zlib-1.2.3.tar.gz
  2. # cd zlib-1.2.3
  3. # ./configure
  4. # make
  5. # make install
复代码

6,libpng包

  1. # tar zxvf libpng-1.2.12.tar.gz
  2. # cd libpng-1.2.12
  3. # ./configure
  4. # make
  5. # make install
复代码

7,php gd库

  1. # tar zxvf gd-2.0.33.tar.gz
  2. # cd gd-2.0.33
  3. # ./configure
  4. # make
  5. # make install
  6. # cp gd.h /usr/local/lib/
复system代码

8,XML库(libxml)

  1. # tar jxvf libxml2-2.6.23.tar.bz2
  2. # cd libxml2-2.6.23
  3. # ./configure
  4. # make
  5. # make install
复代码

9,php

  1. # tar zxvf php-5.2.5.tar.gz
  2. # cd php-5.2.5
  3. # ./configure --prefix =/usr/local/php --with-apxs2=/usr/local/apache2/bin/apxs --with-gd --with-jpeg-dir=/usr/local/jpeg --with-ttf --with -freetype-dir=/usr/local/freetype --with-zlib --with-png --with-mysql=/usr/local/mysql/ --with-mbstring --enable-mbstring=all --enable- mbstr-enc-trans --enable-mbregex --enable-track-vars
  4. # make
  5. # make install
  6. # cp php.ini-dist /usr/local/php/lib/php.ini
复代代码

httpd.conf

  1. AddType 애플리케이션/x-httpd-php .php .phtml
复system代码

10, 젠드

  1. # tar zxvf ZendOptimizer-3.3.3-linux-glibc23-i386.tar.gz
  2. # cd ZendOptimizer-3.3.3-linux-glibc23 -i386
  3. # ./install.sh
复代码

四,创建测试页

  1. phpinfo();
  2. ?>
复主代码

页면搜索gd,显示如下则表示成功:

  1. RewriteEngine On
  2. RewriteRule ^/a([0-9] ).html$ /a$1 .php [L]
复代码

测试是否成功: 다운로드에는 a1.php a2.php a3.php가 있습니다. 当输入a1.html a2.html a3.html时,访问的是以上php文件

지금은 html格式에 있습니다.

六,--enable-rewrite 防盗链

  1. <디렉토리 "e:/Work/upload">
  2. RewriteEngine on
  3. RewriteCond %{HTTP_REFERER} !^http:// www.123.com/.*$ [NC]
  4. RewriteRule .*/.(ppt|zip|rar|doc|wps)$ http://www.123.com/404.html [L]
复代码

七,关于shtml apache는 SSI를 거부하고 httpd.conf를 사용하지 않습니다. # vim /usr/local/apache2/conf/httpd.conf 把这两行前면적#去掉

  1. AddType text/html .shtml
  2. AddOutputFilter에는 .shtml이 포함됩니다
复主代码

그런 다음 "Options Indexes FollowSymLinks"를 검색하세요. 검색된 줄 뒤에 "Includes"를 추가하세요. 즉, 이 줄을 다음과 같이 변경합니다. 옵션 색인 FollowSymLinks 포함

테스트하려면 다음 내용으로 test.shtml 파일을 만듭니다.



성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.