검색결과 리스트
Apache에 해당되는 글 2건
- 2012.09.10 Apache에 PHP설정
글
아파치를 설치하고 나면 PHP를 구동하기 위해서 PHP를 설치한 후 설정이 필요하다.
http://windows.php.net/download에서 thread safe버전을 다운로드 받는다.
다운로드 받은 파일을 압축을 풀어 적당한 위치에 폴더 채로 복사한다.
그리고 나서, 아파치가 설치된 폴더 안에 conf에 httpd.conf에 아래의 내용을 추가한다.
################################################
#PHP5
LoadModule php5_module "C:/Programs/php/php5apache2_2.dll"
AddType application/x-httpd-php .php .html
ServerName localhost:8080
<IfModule dir_module>
DirectoryIndex index.php index.html
</IfModule>
그리고 페이지가 없을 경우, 폴더 목록이 보이게 하는 옵션인 아래의 옵션은 주석처리한다.
#Options Indexes FollowSymLinks
마지막으로, 설정이 적용되도록 아파치를 재시작한다.
만약, PHP페이지를 열려고 할 때 아래의 에러가 발생한다면,
The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results.
mbstring.dll을 시스템폴더(system32)에 복사하고 아파치를 재시작 해준다.
'-- PHP' 카테고리의 다른 글
file_get_contents to get JSON data (0) | 2013.04.09 |
---|---|
PHP curl 정리 (0) | 2013.02.17 |
require, require_once, include, include_once (0) | 2012.07.18 |
PHP (hex2bin, bin2hex) convert ASP (0) | 2009.07.30 |
php소스를 asp로 변환할 때 주의사항 (바이트연산) (0) | 2009.07.30 |
RECENT COMMENT