Neste artigo estaremos mostrando como configurar o servidor Apache 2.0 com suporte a PHP5:
1) Compilando o Apache 2.0
cd http-2.0.52
./configure --prefix=/usr/local/apache2 --enable-so
make
make install
2) Compilando o libxml2
baixe a vers?o libxml2-2.6.0 para garantir..
./configure
make
make install
3) Compilando o php5
Para que o suporte a mysql seja adicionado ? necess?rio a instala??o do pacote libmysqlclient10-dev
./configure --with-apsx2=/usr/local/apache2/bin/apsx2 --enable-track-vars --wih-zlib --with-mysql
make
make install
Configurando Apache 2.0 e PHP5 no Debian Gnu/Linux atrav?s do fonte
Neste artigo estaremos mostrando como configurar o servidor Apache 2.0 com suporte a PHP5: 1) Compilando o Apache 2.0 cd http-2.0.52 ./configure --prefix=/usr/local/apache2 --enable-so make make install 2) Compilando o libxml2 baixe a vers?o...
André Jaccon