简体   繁体   中英

Interface 'Symfony\Component\HttpKernel\HttpKernelInterface' not found

After upgrading from Symfony 2.3 to 2.8 I get the following error:

Fatal error: Interface 'Symfony\\Component\\HttpKernel\\HttpKernelInterface' not found in app/bootstrap.php.cache on line 2629

Already tried removing the vendor folder and doing a composer install.

Any ideas?

Have you tried removing cached code? It seems like you've procompiled your application into one file bootstrap.php.cache . Have you tried removing it.

Otherwise it is always a good idea to do two of the following commands:

php composer.phar dump-autoload - update autolod file
php app/console cache:clear - removes cache

I had to add the following line to web/app.php and web/app_dev.php:

$loader = require __DIR__.'/../app/autoload.php';

And also update app/console.

Found this by comparing my files with a fresh install of Symfony 2.8

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM