Ver Mensaje Individual
  #1 (permalink)  
Antiguo 03/05/2011, 23:14
PostNet
 
Fecha de Ingreso: noviembre-2007
Mensajes: 6
Antigüedad: 17 años
Puntos: 0
Configurar PHP5 con Virtual hosts en Apache 2.2

Hola
Podria alguien indicarme si esta configuracion de Apache esta correcta para poder ejecutar paginas .php ? La pregunta es debido a que cuando ejecuto archivos .php, simplemente no despliega nada el browser.
Gracias

http.conf:
------------
LoadModule php5_module libexec/apache22/libphp5.so

<IfModule dir_module>
DirectoryIndex index.html index.php
</IfModule>

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

VIrtual host
---------------

<VirtualHost My-IP:80>

DocumentRoot /usr/local/www/mysite.info/www
ServerName www.mysite.info
ServerAlias mysite.info
DirectoryIndex index.html index.htm index.php

ErrorLog /var/www/mysite.info/www/error_log
CustomLog /var/www/mysite.info/www/access_log combined

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


<Directory "/usr/local/www/mysite.info/www">
#Options Indexes FollowSymLinks
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>