Hola, cuando accedo a http://localhost/bolt/index.php
se presenta el siguiente error:
Fatal error: Uncaught exception 'RuntimeException' with message 'Configuration autodetection failed because the autoloader could not be located.' in C:\wamp\www\bolt\app\bootstrap.php on line 53
He modificado el archivo .htaccess
como lo indica la ayuda de Bolt CMS y nada.
Respuestas
Acabo de reinstalar Bolt para comprobar si en las últimas versiones se había producido algún cambio, pero no he conseguido reproducir el error. Estos son los comandos que he ejecutado:
$ mkdir bolt $ cd bolt/ $ curl -O http://bolt.cm/distribution/bolt_latest.tgz $ tar -xzf bolt_latest.tgz $ chmod -R 777 files/ app/database/ app/cache/ app/config/ theme/
Después, para arrancar la aplicación en vez de crear un virtual host he utilizado directamente el servidor interno de PHP:
$ php -S localhost:8000 -t . index.php 2>> bolt.log
Si entras en http://localhost:8000
se muestra la pantalla para crear el primer usuario y después ya puedes acceder al backend y también se muestra el sitio web público sin problemas.
¿Podrías hacer la prueba de ejecutar este comando $ php -S localhost:8000 -t . index.php 2>> bolt.log
para ver si se produce el mismo error? Si el error se mantiene, ¿podrías por favor copiar el contenido de la línea 53 de tu archivo C:\wamp\www\bolt\app\bootstrap.php
? Gracias.
@javiereguiluz