This is the Symfony 2.1.x specific tag. Use it in addition to the symfony2 tag if your question is specific to Symfony 2.1.x — not just 2.x.

learn more… | top users | synonyms

55
votes
4answers
9k views

Should everything really be a bundle in Symfony 2?

I'm aware of questions like this, where people tend to discuss the general Symfony 2 concept of bundle. The thing is, in a specific application, like, for instance, a twitter-like application, should ...
45
votes
1answer
772 views

How to create a good hypermedia format using JMSSerializerBundle?

Lets say I want to create an XML-response that will looks something like the following: <?xml version="1.0" encoding="utf‐8"?> <product xmlns="urn:com.acme.prods" ...
15
votes
5answers
1k views

Authentication in functional tests in Symfony 2.1

I am currently in the process of migrating a 2.0.* project to the current 2.1 beta of Symfony. In my functional tests i currently have this code to create a client with authentication: $client = // ...
9
votes
2answers
166 views

Making configuration node support both string and array in Symfony 2 configuration?

Can my configuration node source support both string and array values? Sourcing from string: # Valid configuration 1 my_bundle: source: %kernel.root_dir%/../Resources/config/source.json ...
9
votes
0answers
332 views

Why is the page execution time so much slower in Symfony 2.1 than 2.0 [closed]

I've updated from 2.0 to 2.1 When testing using the app_dev.php with the profiler on the same page I get two very diverse results: Symfony 2.0 execution time: 799ms memory used: 6144 kb Symfony ...
8
votes
2answers
2k views

MySQL Illegal mix of collations

After viewing my prod logs, I have some error mentionning : [2012-08-31 15:56:43] request.CRITICAL: Doctrine\DBAL\DBALException: An exception occurred while executing 'SELECT t0.username ....... ...
8
votes
2answers
2k views

Set Flash in Symfony 2.1

I have been adapting our code in preparation of moving our code to the new 2.1 Symfony codebase. In 2.0.* we could set Flash messages by simply calling the session service in our controller using the ...
8
votes
2answers
1k views

Cascade Validation not working on third layer of a form

I have a form with 3 layers: First Layer is the container for the games: class GameListType extends AbstractType { public function buildForm(FormBuilderInterface $builder, array $options) { ...
8
votes
2answers
528 views

Symfony2 asset resources from static domain or subdomain

I am trying to optimize my project to avoid send cookies with the static resources (i.e: images, scripts, stylesheets, etc). My approach is to create a static.my-domain.com domain to serve from there ...
8
votes
1answer
2k views

Best Symfony 2 (2.1+) forum bundle

I'm looking for Symfony2 forum bundle, which is: working not dead supports sf 2.1 Anyone knows of such a thing?
8
votes
1answer
171 views

share authentification between domain and subdomain in symfony 2.1

In an application I implemented an javascript chat with long polling. Since there is just one Ajax Request per domain allowed I wanted to move the poll request to a subdomain. So I have two domains: ...
7
votes
1answer
2k views

Too much data with var_dump in symfony2 doctrine2

I have around 40 entities and many bidirectional relationships. Whenever i use var_dump($user) or any entity my browser gets loaded with too much data of arrays and variables then it just crashed. i ...
7
votes
1answer
324 views

Symfony assetic:dump runtime exception

I'm stepping into deploying my Symfony app using Capifony. When Capifony executes assetic:dump I get a runtime Exception. [RuntimeException] Unable to write file ...
6
votes
3answers
3k views

Where to register autoload when the vendor is not managed with composer in Symfony 2.1?

I'm using symfony 2.1 and I want to add a library to vendors. The library do not exists in packagist. I can't manage it with composer. When I install bundles or others vendors through composer, it ...
6
votes
1answer
2k views

Error creating Symfony2 project from composer

I try to create a Symfony2 project with composer on Ubuntu with command: php composer.phar create-project symfony/framework-standard-edition projectpath And I get this error Installing ...
6
votes
2answers
6k views

Using entity field type in symfony2.1 form

Using Symfony 2.1.3-dev and Doctrine 2.3 I am attempting to build a form which provide multiple options for a user to filter a returned set of data (Entity\EngineCodes). The form is composed of 1 ...
6
votes
1answer
1k views

How to inject a repository into a service in Symfony2?

I need to inject two objects into ImageService. One of them is an instance of Repository/ImageRepository, which I get like this: $image_repository = $container->get('doctrine.odm.mongodb') ...
6
votes
1answer
2k views

RegistrationFormType::buildForm() not compatible

I just upgrade my Symfony 2.0.12 project to 2.1. I also installed FosUserBundle, but when I run command php composer.phar update then composer output an error: Loading composer repositories with ...
6
votes
1answer
2k views

Symfony 2 - How to delete a bundle?

So my question is how to delete bundle I created? You create bundles with this console command: php app/console generate:bundle --namespace=Test/BlogBundle --format=yml And thats awsome but what ...
6
votes
2answers
717 views

Symfony2 Route global {_locale} requirements

I have in my routing.yml specified the parameter _locale requirements in every single route and I think that must be something to simplify this situation. routing.yml ProjectBaseBundle_index: ...
6
votes
1answer
160 views

Symfony 2.1 REST API login to everywhere

I am working on a REST API using Symfony 2.1. My code works now perfectly, but there is problem that I can login in /api/ but this login can work only under /api/*. But I need to have access to whole ...
5
votes
2answers
777 views

Composer - Downloading git repos that don't have composer.json

I'm trying to use composer in Symfony 2.1 to pull down vendors from github libraries that are not composer aware and probably never will be. For examples: Old Deps file: [jQuery] ...
5
votes
1answer
174 views

Login programmatically and stay logged in

I'm trying to implement single sign on access to a website using Symfony2. The authentication itself seems to work fine, but only for the initial page. On the next page that is loaded the user is not ...
5
votes
4answers
3k views

Symfony2.1: Unable to find the controller for path “/login_check”

I used the "Using a traditional login form" tutorial from symfony.com to authentificate my users. With a simple http auth it works great. After the login was submitted I get this Exception: ...
5
votes
2answers
1k views

Why Symfony File Validator is not working

I want to use file validator to restrict mime types for file input. Unfortunately this constraint is never used and all files were accepted. namespace WNC\SoldierBundle\Entity; use ...
5
votes
2answers
386 views

Validation constraints do not trigger for registration form

I have a Doctrine user entity that I am trying to add form validators to for the registration form but they do not fire for the registration form under any condition. My user entity: namespace ...
5
votes
2answers
354 views

Deploying Symfony2 Application to AWS Elastic Beanstalk - Post Deployment Cache Clearing

When deploying a Symfony2 app to Elastic Beanstalk I need to perform a manual cache clear in order for the app to begin functioning. So, I added a container command to clear the prod cache during ...
5
votes
0answers
352 views

Symfony2 global and optional locale detection from route

It's a known problem but no solution meets precisely my case. It took me a whole afternoon of searches (no kiding), but i still can't solve it. Here's what i want to achieve, followed by a compilation ...
5
votes
1answer
120 views

How to pass a dynamic number of input values to a controller in Symfony2.1

Suppose to have a controller in Symfony2.1 that receives a list of numerical values, e.g. public function showAction($el1, $el2, $el3){...} where I assume that the i-th $eli is a numerical id. ...
4
votes
3answers
6k views

Steps to upgrade in Symfony 2.1 using composer

I just testing new features on symfony 2.1-BETA3. Few hours ago BETA4 has been released but I don't know how to update BETA3 to BETA4 using composer. In 2.0.x release notes Fabien said: If you ...
4
votes
2answers
2k views

Autoloading a class in Symfony 2.1

I'm porting a Symfony 1.2 project to Symfony 2.x. I'm currently running the latest 2.1.0-dev release. From my old project I have a class called Tools which has some simple functions for things like ...
4
votes
2answers
726 views

Is it a good idea to hook up composer to manage web assets in symfony2?

As you know, in Symfony2.1 php bundles and packages are managed by composer, but would be maybe a good idea to hook up the managing of web assets as well? I would really love to update Twitter ...
4
votes
2answers
611 views

How to upgrade fully developed project in Symfony 2.0.16 to Symfony 2.1.0?

I have developed a project in symfony2.0.16. Now I would like to upgrade to sysmfony2.1.0. As I read from https://github.com/symfony/symfony/blob/master/UPGRADE-2.1.md, lots of things has been ...
4
votes
2answers
86 views

symfony2 form is not displaying

I am learning symfony2 and i have created one form in controller which is as bellow. the controller file as DefaultController.php namespace Banner\TestBundle\Controller; use ...
4
votes
1answer
3k views

Set locale in Symfony 2.1

I am trying to have a language switcher on my symfony 2.1 website. I followed the official documentation, set the translation files but setting the locale with $request->setLocale('en_US'); doesn't ...
4
votes
1answer
652 views

Handle errors in Ajax within Symfony2 controller

I am trying to handle errors in Ajax. For this, I am simply trying to reproduce this SO question in Symfony. $.ajaxSetup({ error: function(xhr){ alert('Request Status: ' + xhr.status + ...
4
votes
1answer
6k views

symfony2.1 bundle version confusion, for symfony and sonata admin / knp menu bundle

I want to use symfony2.1 for a new project. I try to install symfony2 with composer. But there were multiple errors/problems and so I have also questions for each problem in bold font style. Sometimes ...
4
votes
2answers
4k views

How to install your own bundle with Composer in Symfony 2.1?

I've just moved to Symfony 2.1, and I can't understand, how can I install my own bundles with Composer? It was very easy in 2.0.x in deps: [MyOwnBundle] ...
4
votes
2answers
2k views

Symfony2.1 mapping error: class_parents()

I have a problem trying to get data from a table (via entity) using Doctrine2 in a Symfony2.1 project. Here is the controller where I get the error: /** * Country list */ public function ...
4
votes
2answers
1k views

Symfony2 is_granted('IS_AUTHENTICATED_FULLY') during 404 error page display, causing ResourceNotFoundException

I have setup custom error pages to display for certain HTTP errors in the folder: app/Resources/TwigBundle/views/Exception/ The 403 page (error403.html.twig) works and displays as expected. The ...
4
votes
3answers
2k views

Symfony 2 | Form exception when modifying an object that has a file(picture) field

I'm using Symfony2. I have an entity Post that has a title and a picture field. My problem : Everything is fine when I create a post, I have my picture etc. But when I want to modify it, I have a ...
4
votes
5answers
501 views

Symfony2 form validation ignores empty value

FormType: class BranchFormType extends AbstractType { public function buildForm(FormBuilderInterface $builder, array $options) { $builder->add('name'); } public function ...
4
votes
1answer
482 views

Symfony2 + Composer (multiple domains)

We are currently migrating our project to symfony2. The website uses multiple domains: domain.com - main website help.domain.com - faq profile.domain.com - for user CP and so on To make it work ...
4
votes
2answers
192 views

Twig_Error_Runtime exception with “url” function

after updating twig to > than 1.7 code <a href="{{ url('article', { 'articleId':article.id }) }}"> causes: Twig_Error_Runtime: An exception has been thrown during the compilation of a ...
4
votes
1answer
197 views

Google maps infowindow not showing on click in Symfony2 with VichGeographicalBundle

I have successfully set up VichGeographicalBundle to display a bunch of places in a Google Map. Everything works ok, except the infowindows that do not show on click. ...
4
votes
1answer
376 views

Doctrine and Symfony: magic methods and caching

I'm currently implementing the doctrine result cache so I've set result_cache_driver: apc into my configuration. Then I've correctly got query cache working inside the Repository, using for ...
4
votes
3answers
159 views

Getting the ACLs for another user than the current logged one in Symfony2?

I'm building a web application using Symfony2. I've been implementing the ACL modules and it worked perfectly, but stumbled on an issue when trying to make a pannel to manage rights. So I got as user ...
4
votes
1answer
657 views

Cannot get Symfony2 Eclipse plugin working

I normally use PHPStorm for development, however I have noticed http://symfony.dubture.com/ plugin for eclipse that looks like it would make symfony2 development much more easy. So I wanted to give it ...
4
votes
1answer
506 views

sonata admin bundle: strange with labels

I've installed the latest Sonata admin bundle on symfony 2.1 and got the following problem: config.yml: services: app.geo.admin.city: class: App\GeoBundle\Admin\CityAdmin tags: ...
4
votes
4answers
2k views

Symfony 2: 404 Not Found Error when tryes to open /app_dev.php

I am getting this error message when try to open /app_dev.php An error occurred while loading the web debug toolbar (404: Not Found). Do you want to open the profiler? When I click ok, I am ...

1 2 3 4 5 20