You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After doing a fresh install I get this error on PHP 5.5.3 server
FatalErrorException: Error: Call to undefined method
Doctrine\ORM\Configuration::isSecondLevelCacheEnabled()
in /Users/xxx/WWW/album/vendor/doctrine/doctrine-bundle/Doctrine/Bundle/DoctrineBundle/DataCollector/DoctrineDataCollector.php line 82
The text was updated successfully, but these errors were encountered:
Seems like your "fresh" install is so fresh that it ignored composer.lock file, as the mentioned issue is created by Doctrine Bundle & have already defined few issues: doctrine/DoctrineBundle#252.
Stof : "Try to use "doctrine/doctrine-bundle": "dev-master" explicitly
this is because of the new dependency to doctrine/doctrine-cache-bundle in master, which is not stable yet. Add a requirement on doctrine/doctrine-cache-bundle: @dev in your composer.json to whitelist its dev versions" doctrine/DoctrineBundle#276
After doing a fresh install I get this error on PHP 5.5.3 server
The text was updated successfully, but these errors were encountered: