I\'m using FOSUserBundle for Symfony2, and I need to be able to register a user without validating if the email is Unique, I just need a valid email so many users can have the same email ( I know this
When attempting to run findAcl() on an entity with an existing entry in the acl_classes table generated by init:acl I get an AclNotFoundException.
I am using symfony2.I am trying to override the default div style form blocks in twig. First, does any have or know of an available implementation of the fieldset and li开发者_开发问答st (ul -> li)
symfony1.x followed a good standart that the whole framework lies somewhere outside and 开发者_运维问答is available to any project. Today I started to read symfony2 documentation and actually download
I\'m trying to add some help messages after each field in form in symfony2. I have read about one solution in official docs : http://symfony.com/doc/current/cookbook/form/form_customization.html#addi
I am building an administration panel for a website and I would like to change the view called when a 404 exception occurs but only for the admin application. (path: /admin/*)
I found the way to test an action in symfony2, for example this way: public function testShow() { $client = $this->createClient();
Does anyone know if there is an easy way, aside from writing a custom script to decode a JSON object into a PHP entity?
Here is the situation - I need to persist an object between pages.On the first page I create the object, and create a form for it.On the second page, I persist the object.The user then has an option
I\'m doing a simple checkout in a small eshop and I\'d like to give the user the option of a final review. So the flow is Basket -> Buyer information -> Order review -> Order confirmation.