PHP 5 설치 및 아파치 연동
PHPPHP5 설치 in Centos 7
> yum install httpd
> yum install php php-devel php-pear php-mysql php-mbstring php-gd php-imap php-odbc php-xmlrpc php-xml
> cd /etc
> cp -p php.ini php.ini_orgn
> vi php.ini
short_open_tag = On
allow_call_time_pass_reference = On ( 없음 )
error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_USER_DEPRECATED
display_errors = On
display_startup_errors = On
register_globals = On ( 없음 )
register_long_arrays = Off ( 없음 )
magic_quotes_gpc = On ( 없음 )
magic_quotes_runtime = Off ( 없음 )
date.timezone = "Asia/Seoul"
> vi /etc/httpd/conf/httpd.conf ( 아마도 httpd/conf.modules.d/*.conf 문장이 로드하게 되어 있는 듯 )
> vi /etc/httpd/conf.modules.d/00-base.conf
PHP5 설치 in Windows
1. http://www.php.net/downloads.php 에서 다운
2. Zip 파일을 C:\php 에 압축 해제.
'PHP' 카테고리의 다른 글
Youtube Upload (0) | 2018.11.18 |
---|