Maison > Article > développement back-end > Comment installer php avec suse en détail
Comment installer php par suse : 1. Installez Libxml via "make install" ; 2. Installez "php-5.5.14.tar.gz" 3. Copiez le fichier de configuration ; 4. Modifiez Apache2 et configurez httpd.conf. pour le rendre Supporte PHP 5. Redémarrez simplement Apache.
L'environnement d'exploitation de cet article : système linux5.9.8, version PHP5.5.14, ordinateur DELL G3
suse Comment installer php en détail ?
utilisez l'installation de php sous Linux et activez Apache pour prendre en charge php
1 Installez Libxml libxml2-2.7.6.zip
# unzip libxml2-2.7.6.zip # ./configure --prefix=/usr/local/services/libxml2 --with-zlib=/usr/local/services/zlib/ # make # make install
2 Installez php-5.5.14.tar.gz
# tar -zxvf php-5.5.14.tar.gz # ./configure --prefix=/usr/local/services/php/ --with-mysql --with-apxs2=/usr/local/services/apache2/bin/apxs --with-libxml-dir=/usr/local/services/libxml2
Instructions. : Il n'y a pas de paramètres après --with-mysql, car mysql est installé à l'aide du package rpm
3 Copiez le fichier de configuration
# cp php.ini-production /usr/local/services/php/lib/php.ini
et modifiez short_open_tag = On
4. Modifiez la configuration Apache2 httpd. conf pour le prendre en charge PHP
Insérez le contenu suivant dans AddType application/x-gzip .gz .tgz
AddType application/x-httpd-php .php AddType application/x-httpd-php-source .phps <!--[if !supportLineBreakNewLine]--> <!--[endif]-->
5 Créez un fichier de test avec l'extension PHP
<?php phpinfo(); ?>
6. Redémarrez Apache
#/usr/local/services/apache2/bin/apachectl restart
Recommandé. apprentissage : "Tutoriel vidéo PHP》
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!