Instale un servidor XAMPP en la versión 7, y monté un host virtual para descargarme un proyecto de página web en la que estoy trabajando.
Después de mucho pelearme, conseguí solucionar el error 403 que no me dejaba acceder. Ahora se visualiza bien la página, pero no me está cargando ninguna imagen.
Cuando inspecciono el elemento, en la consola me aparece el siguiente mensaje:
Failed to load resource: the server responded with a status of 500 (Internal Server Error)
Pensaba que sería algun problema de rutas relativas, pero cuando accedo a la ruta de la imagen: http://xxxxxxxx.xxx/img/logos/logo.png, por ejemplo, y recargo la página, ya puedo verla.
He borrado la cache y demás, por si acaso, pero el problema sigue repitiendose. Solo pasa en este ordenador, en el antiguo tenía el proyecto y funcionaba perfectamente (y en una maquina virtual que hice para probar funciona perfecto).
Mi archivo httpd-vhosts.conf es tal que así:
Código Apache:
Ver original
# Virtual Hosts # # Required modules: mod_log_config # If you want to maintain multiple domains/hostnames on your # machine you can setup VirtualHost containers for them. Most configurations # use only name-based virtual hosts so the server doesn't need to worry about # IP addresses. This is indicated by the asterisks in the directives below. # # Please see the documentation at # <URL:http://httpd.apache.org/docs/2.4/vhosts/> # for further details before you try to setup virtual hosts. # # You may use the command line option '-S' to verify your virtual host # configuration. # # VirtualHost example: # Almost any Apache directive may go into a VirtualHost container. # The first VirtualHost section is used for all requests that do not # match a ServerName or ServerAlias in any <VirtualHost> block. # <VirtualHost *:80> DocumentRoot /opt/lampp/htdocs ServerName localhost ServerAlias www.localhost </VirtualHost> <VirtualHost *:80> DocumentRoot /home/inazio/sitiosWeb/mpreformas ServerName mpreformas.local ServerAlias www.mpreformas.local <Directory "/home/inazio/sitiosWeb/mpreformas"> DirectoryIndex index.php Options All AllowOverride All Order allow,deny Allow from all Require all granted </Directory> </VirtualHost>
Llevo varios días atascado con este problema. ¿Me podéis guiar, por favor?