☆php 설치.
# php-5.2.17
# ./configure–prefix=/usr/local/php –with-apxs2=/usr/local/apache/bin/apxs –enable-mod-charset –with-config-file-path=/usr/local/apache/conf –enable-safe-mode –enable-sigchild –enable-magic-quotes –with-libxml-dir –with-openssl –with-zlib –with-zlib-dir –with-bz2 –enable-calendar –with-curl –enable-dba –with-gdbm –enable-exif –enable-ftp –with-gd –with-jpeg-dir –with-png-dir –with-ttf –with-freetype-dir –enable-gd-native-ttf –with-gettext –with-imap –with-imap-ssl –with-kerberos –enable-mbstring –with-mhash –with-mcrypt –with-mysql=/usr/local/mysql –enable-sockets –with-regex=php –enable-sysvmsg –enable-sysvsem –enable-sysvshm –enable-wddx –enable-zend-multibyte
# make && make install
☆ php 설정
cp /APM/php-5.2.17/php.ini-dist(php가 있는 경로) /usr/local/apache/conf/
# cd /usr/local/apache/conf
# mv php.ini-dist php.ini
# vi php.ini
419째 줄의
register_globals=On 으로 수정하고 저장한다
# /usr/local/apache/htdocs 디렉토리에
vim test.php 편집기 생성 후
<?php phpinfo();?>
입력 후 저장
확인은 httpd.conf 에서 편집한 servername 입력한 ip 또는 도메인
ex) 115.68.63.115/test.php
로 확인한다.
하지만 나중에 phpmyadmin 과 제로보드 설치를 할대 index.php 가 없어서 고생하기 때문에 테스트 할때 빼고는
index.php 로 만들어 주자
출력 화면이 안되고 “index of/” 경로를 출력 해주면 index.php<- 요게 없어서 그렇다.
0 개의 댓글