PHP
PHP
is a widely-used general-purpose scripting language that is especially
suited for Web development and can be embedded into HTML. For more
information on PHP, visit their website at www.php.net.
Version
This documentation was written for PHP 5.1.6 but may be usefull with other versions.How to install PHP
- Run the yum install command
yum install php
How to configure PHP
- Increase PHP script memory limit
In the /etc/php.ini file replace memory_limit = 16M with memory_limit = 128M - Increase PHP script max execution time
In the /etc/php.ini file replace max_execution_time = 30 with max_execution_time = 120 - Increase PHP script max upload size
In the /etc/php.ini file replace max_upload_size = 2M with max_upload_size = 50M
In the /etc/php.ini file replace post_max_size = 8M with post_max_size = 50M - Create the /usr/share/phpinfo folder
mkdir /usr/share/phpinfo - Create the /usr/share/phpinfo/index.php file with the following text:
phpinfo();
?> - Change permissions on the index.php file
chmod 0755 /usr/share/phpinfo/index.php - Create the /etc/httpd/conf.d/phpinfo.conf file with the following text:
# phpinfo - PHP utility function for displaying php configuration
#
# Allows only localhost by default
Alias /phpinfo /usr/share/phpinfo
order deny,allow
deny from all
allow from 127.0.0.1
- Restart Apache Server
service httpd restart
No comments:
Post a Comment