리눅스관련
[fedora15] apache web server - PHP install
잡초사랑
2011. 6. 10. 06:51
특별날거 없다.. php 설치하고 테스트함 해보믄 댄다..
- install PHP
- install PHP
PHP가 설치되있는지 알아봅니다. |
[root@www ~]# rpm -qa | grep php |
아무것도 안나오면 설치되지 않은겁니다. 인제 설치합니다. |
#설치 |
[root@www ~]# yum -y install php php-mbstring php-pear |
아파치 재시작 |
[root@www ~]# /etc/rc.d/init.d/httpd restart Restarting httpd (via systemctl): Stopping httpd: [ OK ] Starting httpd: [ OK ] [ OK ] PHP테스트 페이지 맹글기 [root@www ~]# vi /var/www/html/index.php #PHP테스트 페이지
<?php
// Show all information, defaults to INFO_ALL
phpinfo();
?> |