+ Responder ao Tópico



  1. #1
    copynow
    Visitante

    Padrão php3 não le no meu apache

    estou com o slack10 aki o apache ta ok mas ele não esta rodando php3, oq eu q ta pegando???

    ja fiz isso e não resolveu nda

    DirectoryIndex index.html index.php index.php3 index.phtml

  2. #2
    felco
    Visitante

    Padrão php3 não le no meu apache

    Vc tem que instalar o php eh alem disso deve compilar o suporte a modules no apache eh carregar o modulo do php no apache e alem disso vc tem que saber fazer tudo isso
    procura no google por isso:
    Apache+PHP+MySQL
    Tem tutorial, passo-a-passo alot na net sobre esse assunto aqui na under mesmo tem varios artigos sobre isso da uma pesquisada

  3. #3

    Padrão php3 não le no meu apache

    bom eu recomendaria vc a usar um php >= 4.x.x mas se msm assim vc quizer usar o 3....adapta o conteudo dessa pagina:

    http://www.php.net/manual/pt_BR/install.apache.php

    ou dessa se seu apache for o 2:

    http://www.php.net/manual/pt_BR/install.apache2.php

  4. #4
    jungleboy
    Visitante

    Padrão PHP no Apache

    Fora instalar os pacotes faz-se necessário a presença de algumas linhas no httpd.conf

    São elas:
    LoadModule php4_module libexec/apache/libphp4.so
    AddModule mod_php4.c
    <IfModule mod_php3.c>
    <IfModule mod_php4.c>
    DirectoryIndex index.php index.php3 index.html index.htm
    <IfModule !mod_php4.c>
    DirectoryIndex index.php3 index.html index.php index.htm
    <IfModule !mod_php3.c>
    <IfModule mod_php4.c>
    DirectoryIndex index.php index.html index.htm
    <IfModule !mod_php4.c>
    DirectoryIndex index.html index.php index.htm
    <IfModule mod_php3.c>
    AddType application/x-httpd-php3 .php3
    AddType application/x-httpd-php3-source .php3s
    <IfModule mod_php4.c>
    AddType application/x-httpd-php .php
    AddType application/x-httpd-php-source .phps
    # php_value output_handler = On
    php_value output_buffering Off

    Espalhadas em locais diferentes, estas são todas as entradas para o php funcionar de maneira básica.

    Boa sorte.
    Feliz Natal.