Hello World from OSS Silicon Valley


HowToUse/PHP/5.3


_ Prerequisite

  • Cent OS installation (You can refer [[Overall/CentOS/]])

_ Install&Setup

Step.1
Check if the Apache Web Server is installed.
# yum list installed | grep httpd

If it is not installed, execute the following command.

# yum install httpd
Step.2
Check if PHP is installed.
# yum list installed | grep php

If it is not installed, execute the following command.

# yum install php-*5.3*
Step.3
Open PHP configuration.
# vi /etc/php.ini

If you can't find php.ini in etc directory, you can search with the following command.

# php -i
Step.4
Edit as below.
default=path = "UTF-8"
mbstring.language = English
mbstring.internal_encoding = UTF-8
mbstring.http_input = auto
mbstring.http_output = pass
mbstring.encoding_translation = off
Step.5
Restart Web server.
# /etc/rc.d/init.d/httpd restart
Step.6
Create the following file to get information about installed php.
# vi /var/www/html/phpinfo.php
<?php
phpinfo();
?>
Step.7
Access to http://localhost/phpinfo.php and check the information of installed php.
install_fig1.png

_ HowToUse

Step.1
xxx

_ Author

S.Yatsuzuka