Ver Mensaje Individual
  #5 (permalink)  
Antiguo 31/07/2008, 05:47
Avatar de imagen021
imagen021
 
Fecha de Ingreso: julio-2008
Ubicación: A Coruña
Mensajes: 74
Antigüedad: 15 años, 9 meses
Puntos: 1
Respuesta: Instalación PHP 5.2.6 junto con Apache 2.2.9

Si Apache y php están instalados y tu php no funciona es porque el archivo .conf de apache tiene mal la ruta de la carpeta donde se "suben" los archivos.

Comprueba esta línea...
#
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "C:/AppServ/www" <--- ACA DEBE IR TU RUTA A HTDOCS

Y esta otra:
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
# Do not add a slash at the end of the directory path. If you point
# ServerRoot at a non-local disk, be sure to point the LockFile directive
# at a local disk. If you wish to share the same ServerRoot for multiple
# httpd daemons, you will need to change at least LockFile and PidFile.
#
ServerRoot "C:/AppServ/Apache2.2" <--- La ruta de donde están físicamente los archivos de Apache en tu PC

Saludos!!