Eu tenho um servidor RHEL 6.7 em execução: Apache: 2.2.15 PHP 5.3.3 getenforce = > Deficientes
Como está, está funcionando bem. O webmaster do servidor me diz que o PHP-5.3 não funcionará mais com a API do Facebook e que eu preciso atualizar para o 5.4 ou posterior. Ao tentar fazer isso, eu segui as etapas do link A única mudança real que fiz foi fazer: 'rhn-channel --add --channel = rhel-x86_64-server-6-rhscl-1' já que o artigo é um pouco datado. Além disso, segui os passos de perto. Eu até consegui o
"[warn] module php5_module is already loaded, skipping"
Para resolvê-lo, eu fiz 'mv /etc/httpd/conf.d/php.conf /etc/httpd/conf.d/php.conf.php5.3' para evitar que ele fosse executado quando o Apache fosse iniciado. Eu reiniciei o apache. Isto é o que eu recebo nos logs de erro.
[Wed Nov 11 11:41:59 2015] [notice] caught SIGTERM, shutting down
[Wed Nov 11 11:41:59 2015] [notice] suEXEC mechanism enabled (wrapper:
/usr/sbin/suexec)
[Wed Nov 11 11:41:59 2015] [notice] Digest: generating secret for digest authentication ...
[Wed Nov 11 11:41:59 2015] [notice] Digest: done
[Wed Nov 11 11:41:59 2015] [notice] Apache/2.2.15 (Unix) PHP/5.4.40 mod_ssl/2.2.15 OpenSSL/1.0.1e-fips configured -- resuming normal operations
'httpd -M | grep php 'mostra:
Syntax OK
php5_module (shared)
Tudo que eu obtenho é uma página em branco quando tento carregar a página da web em vez de executar index.php como antes. Eu acho que estou sentindo falta de algo simples. Abaixo está meu /etc/httpd/conf.d/php54-php.conf atual
Alguém tem alguma idéia de como eu posso fazê-lo executar index.php corretamente? Muito obrigado pelo seu tempo.
Mike
Meu comentário é precedido por 3 #. Como ###
#
# PHP is an HTML-embedded scripting language which attempts to make it
# easy for developers to write dynamically generated webpages.
#
<IfModule prefork.c>
LoadModule php5_module modules/libphp54-php5.so
</IfModule>
#
# Cause the PHP interpreter to handle files with a .php extension.
#
<FilesMatch \.php$>
### Shows a blank page instead of running the PHP code.
SetHandler application/x-httpd-php
### Shows the PHP source code instead of running it
#SetHandler application/x-httpd-php5
</FilesMatch>
#
# Allow php to handle Multiviews
#
#
AddHandler php5-script .php AddType text/html .php
### Seems to have no effect
#AddType application/x-httpd-php .php
### Seems to have no effect
#AddType application/x-httpd-php-source .phps
#
# Add index.php to the list of files that will be served as directory
# indexes.
#
DirectoryIndex index.php
#
# Uncomment the following lines to allow PHP to pretty-print .phps
# files as PHP source code:
#
#<FilesMatch \.phps$>
# SetHandler application/x-httpd-php-source
#</FilesMatch>
#
# Apache specific PHP configuration options
# those can be override in each configured vhost
#
php_value session.save_handler "files"
php_value session.save_path "/opt/rh/php54/root/var/lib/php/session"
Tags php5