I have installed Sonata Admin bundle and Sonata Userbundle When i go to

/admin/dashboard and click on list users i get this error

An exception has been thrown during the rendering of a template ("Route "homepage" does not exist.") in SonataUserBundle:Admin:Field/impersonating.html.twig at line 15.

What do i need to do

All other bundles Sonata page , news are working ok

有帮助吗?

解决方案

I'm not using this bundle but perhaps you have to implement your own homepage controller action with the name "homepage". Sonata probably used this route to go to your main page that you need to implement yourself !

其他提示

if you have:

# app/config/routing.yml
...
sonata_user_impersonating:
    pattern: /
    defaults: { _controller: SonataPageBundle:Page:catchAll }

just add

# app/config/config.yml
...
sonata_user:
    impersonating_route:    sonata_user_impersonating
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top