alissong 1 Denunciar post Postado Setembro 1, 2010 Pessoal, Estou quebrando a cabeça para configurar o apache e php manualmente. Veja o que fiz até agora: 1 - Instalei o apache versão 2.2.16 e quando digido localhost exibe: It works! 2 - Descompactei o php versão 5.2.14 win 32 na pasta c:\php3 - No conf do apache fiz isso: LoadModule rewrite_module modules/mod_rewrite.so DirectoryIndex index.html index.php ScriptAlias /php/ "c:/php/" AddType application/x-httpd-php .php # For PHP 5 Action application/x-httpd-php "/php/php-cgi.exe" Não deu certo até agora, pois apache não reconheceu o php. Alissong Compartilhar este post Link para o post Compartilhar em outros sites
rodrigo I.O 0 Denunciar post Postado Setembro 2, 2010 Então cara.. usa o xampp, pois é bem mais fácil. Ele instala php5, Mysql5 e phpMyadmin. então o link do xampp, e um tuto usando ele. Compartilhar este post Link para o post Compartilhar em outros sites
VascoDaGama 2 Denunciar post Postado Setembro 2, 2010 3 - No conf do apache fiz isso: LoadModule rewrite_module modules/mod_rewrite.so DirectoryIndex index.html index.php ScriptAlias /php/ "c:/php/" AddType application/x-httpd-php .php # For PHP 5 Action application/x-httpd-php "/php/php-cgi.exe" está errado.. está carregando como módulo e registrando como cgi ? não faz sentido. basta fazer assim LoadModule php5_module "C:/php/php5apache2_2.dll" AddType application/x-httpd-php .php # configure the path to php.ini PHPIniDir "C:/php" onde está "C:/php" troque pelo path onde está descompactado o php Compartilhar este post Link para o post Compartilhar em outros sites
alissong 1 Denunciar post Postado Setembro 2, 2010 VAscoDaGama, Muito obrigado, pois deu certo. Um abraço. Alissong Compartilhar este post Link para o post Compartilhar em outros sites