O arquivo PHP obtém o download em vez de ser executado quando navegado em qualquer navegador

2

Eu tenho um arquivo phpinfo.php que estou tentando executar navegando nele usando o navegador, mas o navegador faz o download do arquivo em vez de executá-lo.

phpinfo.php

<?php
   phpinfo();
?>

Eu segui as seguintes esta postagem, adicionadas as seguintes linhas para o meu /etc/apache2/httpd.conf e reiniciei o apache, mas invain. O phpinfo.php ainda é baixado.

AddType application/x-httpd-php .php> .phtml
AddType application/x-httpd-php-source .phps

Eu adicionei essas linhas ao arquivo correto?

Em um fórum do openSuSE, foi mencionado o seguinte. Eu também segui isso, mas ainda não obtive sucesso. O mesmo problema está persistindo.

In case the browser wants to save your php files instead of displaying the content, you should enable php support in the /etc/apache2/mod_userdir.conf file. Add the following line to it, just after the line and restart the server.

Include /etc/apache2/conf.d/php5.conf

    
por Undefined 03.07.2011 / 13:44

1 resposta

2

Adicionando o php5 ao APACHE_MODULES em / etc / sysconfig / apache2 e reiniciando o apache resolveu o problema.

    
por 04.07.2011 / 08:21

Tags