PHP is a general-purpose scripting language suited for Web development. The PHP script can be embedded into HTML. This section explains how to install and configure PHP5 in Ubuntu System with Apache2 and MySQL.
This section assumes you have installed and configured Apache 2 Web Server and MySQL Database Server. You can refer to Apache 2 section and MySQL sections in this document to install and configure Apache 2 and MySQL respectively.
PHP5 доступен в Ubuntu Linux.
Для установки PHP5 наберите в командной строке следующее:
sudo apt-get install php5-common php5 libapache2-mod-php5
Вы можете запускать скрипты PHP5 из командной строки. Для этого вам необходимо установить пакет php5-cgi. Для его установки наберите в командной строке следующее: screen>sudo apt-get install php5-cgi
To use MySQL with PHP5 you should install php5-mysql package. To install php5-mysql you can enter the following command in the terminal prompt:
sudo apt-get install php5-mysql
Similarly, to use PostgreSQL with PHP5 you should install php5-pgsql package. To install php5-pgsql you can enter the following command in the terminal prompt
sudo apt-get install php5-pgsql
Once you install PHP5, you can run PHP5 scripts from your web browser. If you have installed php5-cgi package, you can run PHP5 scripts from your command prompt.
By default, the Apache 2 Web server is configured to run PHP5 scripts. In other words, the PHP5 module is enabled in Apache2 Web server automatically when you install the module. Please verify if the files /etc/apache2/mods-enabled/php5.conf
and /etc/apache2/mods-enabled/php5.load
exist. If they do not exists, you can enable the module using a2enmod command.
Once you install PHP5 related packages and enabled PHP5 Apache 2 module, you should restart Apache2 Web server to run PHP5 scripts. You can run the following command at a terminal prompt to restart your web server:
sudo /etc/init.d/apache2 restart
Для проверки успешности установки, вы можете выполнить следующий PHP5 phpinfo скрипт:
<?php print_r (phpinfo()); ?>
Вы можете сохранить содержимое в файле phpinfo.php
и поместить его в каталог DocumentRoot веб-сервера Apache2. Указав в браузере адрес http://hostname/phpinfo.php
, вы увидите значения различных конфигурационных параметров PHP5.