Advertisement
Guest User

Untitled

a guest
Oct 30th, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. # Doctrine Configuration
  2. doctrine:
  3. dbal:
  4. default_connection: default
  5. connections:
  6. default:
  7. driver: "%database_driver%"
  8. host: "%database_host%"
  9. port: "%database_port%"
  10. dbname: "%database_name%"
  11. user: "%database_user%"
  12. password: "%database_password%"
  13. charset: UTF8
  14. orm:
  15. default_entity_manager: main
  16. auto_generate_proxy_classes: "%kernel.debug%"
  17. entity_managers:
  18. main:
  19. connection: default
  20. mappings:
  21. VendorMainBundle:
  22. prefix: VendorMainBundleEntity
  23. taggable:
  24. connection: default
  25. mappings:
  26. taggable:
  27. type: xml
  28. prefix: DoctrineExtensionsTaggableEntity
  29. dir: %kernel.root_dir%/../vendor/fpn/doctrine-extensions-taggable/metadata
  30.  
  31. [Exception]
  32. You do not have any mapped Doctrine ORM entities according to the current configuration. If you have entities or mapping files you should check your mapping configuration for errors.
  33.  
  34. services:
  35. taggable:
  36. class: DoctrineExtensionsTaggableTagListener
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement