[설치] 조금 불친절한 APM 설치 - PHP
3.1 다운로드 경로
http://www.php.net/downloads.php
3.2 설치 파일 다운로드
* PHP Home > Downloads > Windows Binaries > PHP installer 선택
* kr.php.net 선택
3.3 설치
PHP 설치 – 설치 정보 확인
PHP 설치 – 사용권 동의
PHP 설치 – 설치 경로 지정
PHP 설치 – WebServer 지정(apache 서버 선택)
PHP 설치 – WebServer 설치 경로 지정
PHP 설치 – (PHP > Script Excutable > Register *.php file to open automatically with PHP , PHP > Extencion > MySql) 선택
PHP 설치 – 설치 준비 완료
PHP 설치 – 설치 진행 중
PHP 설치 – 설치 완료
4. PHP – Apache 연동
4.1 DLL 시스템 등록
PHP 설치 폴더의 php5apache2_2.dll 과 phpp5tx.dll을 System32 폴더에 복사
4.2 Apache httpd 설정 변경
* C:\Program Files\Apache Software Foundation\Apache2.2\conf내의 httpd.conf 수정
파일의 끝에 아래 구문 수정 or 추가
#BEGIN PHP INSTALLER EDITS - REMOVE ONLY ON UNINSTALL
#PHPIniDir "C:/Program Files/PHP/"
LoadModule php5_module "C:/Program Files/PHP/php5apache2_2.dll"
AddType application/x-httpd-php .php .html .htm .phtml .inc
AddType application/x-httpd-php-source .phps
#END PHP INSTALLER EDITS - REMOVE ONLY ON UNINSTALL