Troubleshooting “require_once(../bootstrap.php.cache): failed to open stream: No such file or directory”
Just go to your project and generate it with composer like php /path/to/composer/composer.phar install
Just go to your project and generate it with composer like php /path/to/composer/composer.phar install
Have you flushed your changes to the $audit object? $audit = $dm->getRepository(“WGenSimschoolsBundle:Audit”)->findOneById(“xxxx”); //do something somewhere to change the object $dm->flush(); Every time you do a findBy(…) or findOneBy(…) it actually fetches a new document from the DB. (you should see the query in the Symfony profiler) With a find() instead, it will fetch the document … Read more