Symfony2 updating bootstrap.php.cache

Symfony

Symfony Problem Overview


Recently I started a project in Symfony2 from the BETA version available on symfony.com

After a while, I needed to upgrade to the master branch, so I retrieved the latest from github and switched it in vendor/symfony.

However, my bootstrap.php.cache and bootstrap_cache.php.cache are not upgraded, which has generated errors.

I tried clearing the symfony cache, to no avail.

How can I update these files to correspond to my project?

Symfony Solutions


Solution 1 - Symfony

In the 2.0 release the original file is here:

./vendor/bundles/Sensio/Bundle/DistributionBundle/Resources/bin/build_bootstrap.php

Edit: in release 2.3 the file is here

vendor/sensio/distribution-bundle/Sensio/Bundle/DistributionBundle/Resources/bin/build_bootstrap.php

Solution 2 - Symfony

If you run the composer update command you will also update your project dependencies which is not the desired behaviour here. If you do that you'll have to test the new changes to see if they do affect your application somehow.

So if you just want to rebuild your bootstrap cache file then I suggest you run the post-update-cmd command.

Therefore you should use:

composer run-script post-update-cmd

which in my case executes the following scripts (see composer.json):

"scripts": {
    "post-install-cmd": [
        "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
        "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache",
        "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installAssets",
        "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::installRequirementsFile",
        "Mopa\\Bundle\\BootstrapBundle\\Composer\\ScriptHandler::postInstallSymlinkTwitterBootstrapSass"
    ]
}

Please consider that you can also create a new set of scripts in there to just rebuild the bootstrap file and clears the cache without installing the assets and so on:

"scripts": {
    "reset-bootstrap-cmd": [
        "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::buildBootstrap",
        "Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache"
    ]
}

and then... composer run-script reset-bootstrap-cmd

Solution 3 - Symfony

In the latest 2.1.0-DEV, the actual script is here:

./vendor/sensio/distribution-bundle/Sensio/Bundle/DistributionBundle/Resources/bin/build_bootstrap.php

Solution 4 - Symfony

I'm using Symfony Standard 2.0.9 (without Vendors).

To update bootstrap.php.cache, just run

php bin/vendors update

This will update all vendors (including Symfony itself) and always call that build_bootstrap.php script for you.

Solution 5 - Symfony

Have you tried running:

php bin/build_bootstrap.php

This will regenerate the bootstrap files

Solution 6 - Symfony

You might prefer to use composer install which "re-installs" the system to the state definied in the composer.lock file and generates autoloads and bootstrap.php.cache. Using composer update updates all packages and changes the state of your system.

Solution 7 - Symfony

I feel like the build_bootstrap script is always changing location :)

So, if you are working with several Symfony versions and don't know where the build_bootstrap is, this will do the trick (Linux/Mac only):

$ cd vendor/ 
$ find . -name build_bootstrap.php

Solution 8 - Symfony

i couldnt fix a problem on my bootstrap cache, nor update it . i was getting alot of this

> [Symfony\Component\Debug\Exception\ContextErrorException] Warning: Invalid argument supplied for foreach() in /home/sites/fuji/app/bootstrap.php.cache line 2870 > > > Script > Sensio\Bundle\DistributionBundle\Composer\ScriptHandler::clearCache > handling the post-update-cmd event terminated with an exception

although they were great suggestions, and i did try the rebuilding of bootstrap cache file after backing it up, and to run composer update these still gave me the same problem.

Solution for me: i shelled into the pc with the site files on it, rm -rf app/cache/* -R removed everything inside the cache directory then i was able to run both composer update, AND clear cache etc.. with no problems.

Solution 9 - Symfony

Search for where the "build_bootstrap.php" located at.

for my case in Symfony3.4

php ./vendor/sensio/distribution-bundle/Resources/bin/build_bootstrap.php

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionjihiView Question on Stackoverflow
Solution 1 - SymfonymogomanView Answer on Stackoverflow
Solution 2 - SymfonyFrancesco CasulaView Answer on Stackoverflow
Solution 3 - SymfonyGregoireView Answer on Stackoverflow
Solution 4 - SymfonysebView Answer on Stackoverflow
Solution 5 - Symfonyd.syph.3rView Answer on Stackoverflow
Solution 6 - SymfonydfriView Answer on Stackoverflow
Solution 7 - SymfonyVictor HenriquezView Answer on Stackoverflow
Solution 8 - SymfonyblambView Answer on Stackoverflow
Solution 9 - SymfonyYuseferiView Answer on Stackoverflow