21. zendOptimizer 설치
tar xzvf ZendOptimizer-2.5.3-linux-glibc21-i386.tar.gz &&
cd ZendOptimizer-2.5.3-linux-glibc21-i386 &&
./install.sh
설치 스크립트 실행~
설치화면에서 php.ini 의 위치를 물어볼 경우 /usr/local/apache/conf 를 쓴다.
22. pdflib 설치
http://www.pdflib.com/products/pdflib/download/index.html
tar xvzf PDFlib-5.0.3-Linux.tar.gz
cd PDFlib-5.0.3-Linux
cd bind
cd php
cd php-4.2.1cd php-4.2.1 // php 4.2.0 이하 버전 사용자는 php-4.1.0을 사용한다.
mkdir /usr/local/apache/php_module // php 동적 모듈이 들어갈 디렉토리 생성
cp libpdf_php.so /usr/local/apache/php_module
여기서부터가 중요하다. 필자의 경우 php_module 이라는 곳에 동적 모듈이 들어가게 세팅해놨는데, 이는
php.ini 파일 안에서 설정하면 된다.
shell>vi /usr/local/apache/conf/php.ini
extension_dir="/usr/local/apache/php_module" // 자신이 원하는 디렉토리로 설정하면 된다.
extension=libpdf_php.so // 복사했던 모듈을 추가 시키는 부분
이상의 설정이 잘못되면 pdf 라이브러리를 사용할 수 없게 된다. 확인은 압축푼 디렉토리의 bind/php 안
의 hello.php등으로 하면 된다. 아니면 아래 소스를 복사하여 /usr/local/apache/htdocs/hello.php 를 생
성한후 웹에서 확인해보기 바란다. 이때 Adobe Acrobat Reader 등 pdf 뷰어가 있어야 된다. 이상없이
pdf 파일이 화면에 출력되면 제대로 설치 된 것이다.
<pdf 예제 확인 소스>
<?php
# $Id: hello.php,v 1.9.2.2 2003/12/17 15:38:01 tm Exp $
/* create a new PDFlib object */
$p = PDF_new();
/* open new PDF file; insert a file name to create the PDF on disk */
if (PDF_open_file($p, "") == 0) {
die("Error: " . PDF_get_errmsg($p));
}
/* This line is required to avoid problems on Japanese systems */
PDF_set_parameter($p, "hypertextencoding", "winansi");
PDF_set_info($p, "Creator", "hello.php");
PDF_set_info($p, "Author", "Rainer Schaaf");
PDF_set_info($p, "Title", "Hello world (PHP)!");
PDF_begin_page($p, 595, 842); /* start a new page */
$font = PDF_load_font($p, "Helvetica-Bold", "winansi", "");
PDF_setfont($p, $font, 24.0);
PDF_set_text_pos($p, 50, 700);
PDF_show($p, "Hello world!");
PDF_continue_text($p, "(says PHP)");
PDF_end_page($p); /* close page */
PDF_close($p); /* close PDF document */
$buf = PDF_get_buffer($p);
$len = strlen($buf);
header("Content-type: application/pdf");
header("Content-Length: $len");
header("Content-Disposition: inline; filename=hello.pdf");
print $buf;
PDF_delete($p); /* delete the PDFlib object */
?>
여기까지 끄~~읏^^
부분 1부터 부분 7까지 연결해서 사용하시면 원스톱으로 리눅스 서버가 세팅됩니다^^
대신 설치할 소스의 버젼과 그 위치를 명확하게 하셔야 에러없이 진행됩니다.(이것만 주의하심 되요)<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:32:05 Linux에서 이동 됨]</div>
tar xzvf ZendOptimizer-2.5.3-linux-glibc21-i386.tar.gz &&
cd ZendOptimizer-2.5.3-linux-glibc21-i386 &&
./install.sh
설치 스크립트 실행~
설치화면에서 php.ini 의 위치를 물어볼 경우 /usr/local/apache/conf 를 쓴다.
22. pdflib 설치
http://www.pdflib.com/products/pdflib/download/index.html
tar xvzf PDFlib-5.0.3-Linux.tar.gz
cd PDFlib-5.0.3-Linux
cd bind
cd php
cd php-4.2.1cd php-4.2.1 // php 4.2.0 이하 버전 사용자는 php-4.1.0을 사용한다.
mkdir /usr/local/apache/php_module // php 동적 모듈이 들어갈 디렉토리 생성
cp libpdf_php.so /usr/local/apache/php_module
여기서부터가 중요하다. 필자의 경우 php_module 이라는 곳에 동적 모듈이 들어가게 세팅해놨는데, 이는
php.ini 파일 안에서 설정하면 된다.
shell>vi /usr/local/apache/conf/php.ini
extension_dir="/usr/local/apache/php_module" // 자신이 원하는 디렉토리로 설정하면 된다.
extension=libpdf_php.so // 복사했던 모듈을 추가 시키는 부분
이상의 설정이 잘못되면 pdf 라이브러리를 사용할 수 없게 된다. 확인은 압축푼 디렉토리의 bind/php 안
의 hello.php등으로 하면 된다. 아니면 아래 소스를 복사하여 /usr/local/apache/htdocs/hello.php 를 생
성한후 웹에서 확인해보기 바란다. 이때 Adobe Acrobat Reader 등 pdf 뷰어가 있어야 된다. 이상없이
pdf 파일이 화면에 출력되면 제대로 설치 된 것이다.
<pdf 예제 확인 소스>
<?php
# $Id: hello.php,v 1.9.2.2 2003/12/17 15:38:01 tm Exp $
/* create a new PDFlib object */
$p = PDF_new();
/* open new PDF file; insert a file name to create the PDF on disk */
if (PDF_open_file($p, "") == 0) {
die("Error: " . PDF_get_errmsg($p));
}
/* This line is required to avoid problems on Japanese systems */
PDF_set_parameter($p, "hypertextencoding", "winansi");
PDF_set_info($p, "Creator", "hello.php");
PDF_set_info($p, "Author", "Rainer Schaaf");
PDF_set_info($p, "Title", "Hello world (PHP)!");
PDF_begin_page($p, 595, 842); /* start a new page */
$font = PDF_load_font($p, "Helvetica-Bold", "winansi", "");
PDF_setfont($p, $font, 24.0);
PDF_set_text_pos($p, 50, 700);
PDF_show($p, "Hello world!");
PDF_continue_text($p, "(says PHP)");
PDF_end_page($p); /* close page */
PDF_close($p); /* close PDF document */
$buf = PDF_get_buffer($p);
$len = strlen($buf);
header("Content-type: application/pdf");
header("Content-Length: $len");
header("Content-Disposition: inline; filename=hello.pdf");
print $buf;
PDF_delete($p); /* delete the PDFlib object */
?>
여기까지 끄~~읏^^
부분 1부터 부분 7까지 연결해서 사용하시면 원스톱으로 리눅스 서버가 세팅됩니다^^
대신 설치할 소스의 버젼과 그 위치를 명확하게 하셔야 에러없이 진행됩니다.(이것만 주의하심 되요)<div class='small'>[이 게시물은 관리자님에 의해 2011-10-31 17:32:05 Linux에서 이동 됨]</div>
댓글 2개
19년 전
몇년전에 리눅스 사용할때는 그래도 좀 알았는데...
요즘에는 서버 설정하기도 어렵군요.
좋은 팁 감사합니다.
요즘에는 서버 설정하기도 어렵군요.
좋은 팁 감사합니다.
19년 전
저도 매번 같은 일을 반복하는 것이 짜증나서요^^
아예 모든 과정을 스크립트로 짜서 한방에 해결한다는...
도움이 되셨다니 기분이 좋네요.^^
아예 모든 과정을 스크립트로 짜서 한방에 해결한다는...
도움이 되셨다니 기분이 좋네요.^^
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 130 | 20년 전 | 4006 | ||
| 129 | 20년 전 | 2945 | ||
| 128 | 20년 전 | 3681 | ||
| 127 | 20년 전 | 3519 | ||
| 126 | 20년 전 | 3773 | ||
| 125 | 20년 전 | 8594 | ||
| 124 | 20년 전 | 2604 | ||
| 123 | 20년 전 | 3755 | ||
| 122 | 20년 전 | 3211 | ||
| 121 | 20년 전 | 2612 | ||
| 120 | 20년 전 | 2675 | ||
| 119 | 20년 전 | 2589 | ||
| 118 | 20년 전 | 2864 | ||
| 117 |
|
20년 전 | 3062 | |
| 116 | 20년 전 | 5319 | ||
| 115 | 20년 전 | 3929 | ||
| 114 | 20년 전 | 4975 | ||
| 113 | 20년 전 | 6216 | ||
| 112 | 20년 전 | 7326 | ||
| 111 | 20년 전 | 18436 | ||
| 110 | 20년 전 | 6878 | ||
| 109 | 20년 전 | 2888 | ||
| 108 | 20년 전 | 4143 | ||
| 107 |
prosper
|
20년 전 | 2502 | |
| 106 |
prosper
|
20년 전 | 4322 | |
| 105 |
아우겐나이스
|
20년 전 | 2915 | |
| 104 | 20년 전 | 2261 | ||
| 103 | 20년 전 | 2480 | ||
| 102 | 20년 전 | 2264 | ||
| 101 | 20년 전 | 2579 | ||
| 100 | 20년 전 | 1754 | ||
| 99 | 20년 전 | 1573 | ||
| 98 | 20년 전 | 1618 | ||
| 97 | 20년 전 | 2131 | ||
| 96 | 20년 전 | 1882 | ||
| 95 | 20년 전 | 2381 | ||
| 94 | 20년 전 | 3567 | ||
| 93 | 20년 전 | 1568 | ||
| 92 | 20년 전 | 1760 | ||
| 91 | 20년 전 | 3183 | ||
| 90 | 21년 전 | 2344 | ||
| 89 | 21년 전 | 3177 | ||
| 88 | 21년 전 | 2872 | ||
| 87 | 21년 전 | 3299 | ||
| 86 | 21년 전 | 5137 | ||
| 85 | 21년 전 | 2524 | ||
| 84 | 21년 전 | 4827 | ||
| 83 | 21년 전 | 2509 | ||
| 82 | 21년 전 | 3124 | ||
| 81 | 21년 전 | 7632 | ||
| 80 | 21년 전 | 3831 | ||
| 79 | 21년 전 | 3214 | ||
| 78 | 21년 전 | 4700 | ||
| 77 | 21년 전 | 2906 | ||
| 76 | 21년 전 | 6226 | ||
| 75 | 21년 전 | 4473 | ||
| 74 | 21년 전 | 5785 | ||
| 73 | 21년 전 | 3631 | ||
| 72 | 21년 전 | 5973 | ||
| 71 | 21년 전 | 3121 | ||
| 70 | 21년 전 | 2846 | ||
| 69 | 21년 전 | 2645 | ||
| 68 | 21년 전 | 2451 | ||
| 67 | 21년 전 | 2659 | ||
| 66 | 21년 전 | 2677 | ||
| 65 | 21년 전 | 3792 | ||
| 64 | 21년 전 | 2830 | ||
| 63 | 21년 전 | 2458 | ||
| 62 | 21년 전 | 2270 | ||
| 61 | 21년 전 | 3081 | ||
| 60 | 21년 전 | 3134 | ||
| 59 | 21년 전 | 2523 | ||
| 58 | 21년 전 | 2594 | ||
| 57 | 21년 전 | 2973 | ||
| 56 | 21년 전 | 2331 | ||
| 55 | 21년 전 | 2763 | ||
| 54 | 21년 전 | 2133 | ||
| 53 | 21년 전 | 2357 | ||
| 52 | 21년 전 | 2701 | ||
| 51 |
prosper
|
21년 전 | 2351 | |
| 50 |
prosper
|
21년 전 | 2173 | |
| 49 | 21년 전 | 2181 | ||
| 48 | 21년 전 | 2344 | ||
| 47 | 21년 전 | 1935 | ||
| 46 | 21년 전 | 1932 | ||
| 45 | 21년 전 | 2137 | ||
| 44 | 21년 전 | 2365 | ||
| 43 | 21년 전 | 4585 | ||
| 42 |
prosper
|
21년 전 | 2716 | |
| 41 |
prosper
|
21년 전 | 2116 | |
| 40 | 21년 전 | 2181 | ||
| 39 | 21년 전 | 2153 | ||
| 38 | 21년 전 | 2423 | ||
| 37 | 21년 전 | 2570 | ||
| 36 | 21년 전 | 1780 | ||
| 35 | 21년 전 | 4075 | ||
| 34 | 21년 전 | 3853 | ||
| 33 | 21년 전 | 2991 | ||
| 32 |
prosper
|
21년 전 | 2907 | |
| 31 | 21년 전 | 5289 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기