I am trying to set up Symfony with the SonataUserBundle. User registration and login works fine. When I try to call up the /profile
view, however I get the following error:
Attempted to call method "setCurrentUri" on class "Knp\Menu\MenuItem" in F:\<my project path>\vendor\sonata-project\user-bundle\Block\ProfileMenuBlockService.php line 91. Did you mean to call: "setCurrent"?
The last notice in the "event list" before the error is
INFO - [cms::renderBlock] block.id=53, block.type=sonata.user.block.menu
Has anyone encountered this error before and can provide information on how to resolve it?
TIA Matt
What versions of
KnpMenu
andSonataBlockBundle
are you using? Please check yourcomposer.json
to be sure.The
setCurrentUri
method has been deprecated as ofKnpMenu
v. 2.0, and thecomposer.json
ofSonataBlockBundle
does not requireKnpMenu
anywhere but indev
install. So, this leads to a possibility that you could have required a fresher version ofknplabs/knp-menu-bundle
that is not yet supported by Sonata bundle.Try requiring
knplabs/knp-menu-bundle
in1.1.x
: