Mainos / Advertisement:

Ero sivun ”Php5/en” versioiden välillä

Kohteesta Taisto
Siirry navigaatioon Siirry hakuun
(Ak: Uusi sivu: More instructions for CentOS https://www.digitalocean.com/community/tutorials/how-to-install-linux-apache-mysql-php-lamp-stack-on-centos-6)
(Ak: Uusi sivu: == Configuration ==)
Rivi 29: Rivi 29:
 
More instructions for CentOS https://www.digitalocean.com/community/tutorials/how-to-install-linux-apache-mysql-php-lamp-stack-on-centos-6
 
More instructions for CentOS https://www.digitalocean.com/community/tutorials/how-to-install-linux-apache-mysql-php-lamp-stack-on-centos-6
  
== Konfigurointi ==
+
== Configuration ==
  
 
PHP5 konfigurointitiedosto on polussa (Apache):
 
PHP5 konfigurointitiedosto on polussa (Apache):

Versio 17. elokuuta 2015 kello 08.41

Muut kielet:
English • ‎suomi

PHP5 (PHP: Hypertext Preprocessor) is a server-side programming language. It can also be used for general programming, though.

Installation

Debian / Ubuntu

Install PHP5 to Apache:

 aptitude install php5

Install PHP5 Nginx:

  apt-get install php5-fpm

Red Hat / CentOS / Fedora

Install PHP CentOS

yum install php

Restart apache2

 /etc/init.d/httpd restart


More instructions for CentOS https://www.digitalocean.com/community/tutorials/how-to-install-linux-apache-mysql-php-lamp-stack-on-centos-6

Configuration

PHP5 konfigurointitiedosto on polussa (Apache):

 /etc/php5/php.ini

PHP5 konfigurointitiedosto on polussa (Nginx):

  nano /etc/php5/fpm/php.ini


PHP5 toimivuus voi testata luomalla /var/www/index.php tiedosto ja laittamalla sinne seuraava koodipätkä:

 <?php
 echo "PHP5 toimii"
 ?>

Tämän jälkeen muodosta yhteys palvelimeen ja mene osoitteeseen palvelimen_ip-osoite/index.php (esim. 10.10.10.10/index.php). Jos teksti "PHP5 toimii" näkyy, sivusto toimii.

Lisätietoa PHP ohjelmoinnista php.net ja tutoriaaleja w3schools.com

Mainos / Advertisement: