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.
54
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 ...
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 ...
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 ....... ...
7
votes
1answer
1k 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 ...
5
votes
4answers
2k 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:
...
3
votes
3answers
3k views
Changing locale with symfony 2.1
Having some issue changing the locale on a symfony 2.1 website.
I can't find a way to be able to change the lang without using the _locale on every routes. I know this is against the fundamental ...
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 ...
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
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 ...
3
votes
1answer
538 views
Symfony2 validation doesn't work when Entity Relationships/Associations
Forgive my English.
controller
public function indexAction(Request $request)
{
$user = $this->container->get('security.context')->getToken()->getUser();
$owner = ...
2
votes
1answer
636 views
Unable to find the controller for path “/login_check”
I have having trouble getting user authentication working on symfony. I have the login_path working properly, but check_path is malfunctioning. The path that I have specified gives the famous Unable ...
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 ...
2
votes
1answer
959 views
Symfony 2.1, composer and git repositories
With Symfony 2.0.x I store all my client side dependencies (jQuery, etc) in the deps file so I can easily update them all at once with vendor/install, with the switch to composer in 2.1 this is not ...
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 ...
2
votes
1answer
69 views
Custom Authentication which doesn't need UserProvider
I looked for a solution on the web for my configuration but I can't find something which satisfies my needs.
So far, I have been working on this for 3 full days, and I can't make it works properly, I ...
1
vote
3answers
1k views
Symfony forms. File upload
Trying to manage file upload with Entity, but i get this error:
Fatal error: Call to a member function move() on a non-object in /home/projectpath/src/BS/MyBundle/Entity/Items.php on line 327 Call ...
4
votes
1answer
192 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
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 ...
3
votes
1answer
434 views
Symfony 2.1 Security Cross Subdomain
Running Symfony 2.1 on an application and we have different sandboxes of the code. Eg.
aequasi.someurl.com
dev.someurl.com
hotcarl.someurl.com
I cant seem to figure out why, but when im logged ...
2
votes
1answer
490 views
Updating (from the inverse side) bidirectional many-to-many relationships in Doctrine 2?
Customer is the inverse side of "keywords/customers" relationship with Keyword:
/**
* @ORM\ManyToMany(targetEntity="Keyword", mappedBy="customers",
* cascade={"persist", "remove"}
* )
*/
...
2
votes
1answer
753 views
How to use ChoiceList in Symfony 2.1?
I have a file containing a list of the US states.
Alabama
Alaska
etc ..
In symfony 2.0 I used ChoiceListInterface.php to use it in my form. I simply wrote this :
<?php
namespace MyBundle\Form;
...
2
votes
2answers
725 views
JMSSerializerBundle. no control over third party meta data
I have two entities I wish to serialize with the JMSSerializerBundle. The Music Entity has a mapping-file with exclusion_policy: NONE.
The Music entity has a field of the entity User from ...
2
votes
1answer
583 views
How can I add a violation to a collection?
My form looks like this:
public function buildForm(FormBuilderInterface $builder, array $options)
{
$factory = $builder->getFormFactory();
$builder->add('name');
...
1
vote
2answers
94 views
Symfony2 get validation constraints on an entity
Im working on a method to get all validation constraints of an entity (what i am trying to achieve is to return this data in JSON and apply the same constraints on client side using JQuery Validation ...
1
vote
1answer
467 views
Role Interface and Manage Roles
I have simple UserInterface entity:
function getRoles()
{
return $this->roles->toArray();
}
and with many to many relation with Role Entity interface
/**
* ...
0
votes
2answers
138 views
Recursive roles with custom user provider entity
I've got a custom user provider entity which permits me to connect the users. This custom user provider entity implements UserInterface in accordance to this interface I've got a "getRoles()" function ...
0
votes
3answers
168 views
Having a custom repository with DBAL connection in Symfony 2 / Doctrine 2?
I'm trying to inject default DBAL connection into a custom repository associated with a entity so I can do some raw sql query.
In services.mxl
<service id="acme.repository.document" ...
0
votes
1answer
735 views
Symfony2 auto-login after registration
I already searched this topic, but it didn't help me.
How to authenticate user after registration?
Where is my error?
security.yml
security:
providers:
#chain_provider is used here to ...
0
votes
3answers
717 views
How to inject non-default entity managers?
In Symfony2 you can work with multiple entity managers and use something like the code below:
$em = $this->get('doctrine')->getManager();
$em = ...
0
votes
1answer
1k views
Symfony/Doctrine: “Catchable Fatal Error: Object of class <type> could not be converted to string” when persisting
A symfony2 application has a Job entity that has as a property of type WebSite.
A simplified representation of this without other properties or methods:
/**
* @ORM\Entity
* @ORM\Table(name="Job")
...
3
votes
0answers
81 views
How to administratively invalidate a session that used “Remember Me” option?
I'm using Symfony 2.1.6 and PdoSessionStorage. I'm trying to add the same functionality that Facebook has to my application where you can show a user all the active sessions they have with the website ...
3
votes
0answers
340 views
Error after Upgrading FOS UserBundle from 1.2 to 2.0 in Symfony 2.1
I have a project in Symfony 2.1, with PropelBundle, and FOS UserBundle. I upgraded FOS UserBundle with Composer from 1.2 to the latest version (2.0) and followed the instruction to delete the ...
3
votes
2answers
2k views
Symfony2.1 - The option “em” does not exist when using DataTransformer
I am using this cookbook recipe to add a data transformer in Symfon 2.1, but I am getting the following error, The option "em" does not exist. Known options are: "attr", "block_name",....
Is this ...
2
votes
2answers
102 views
Symfony2 and Doctrine: how to fetch two different object for the same id?
I have this scenario:
Object A have some reference to other objects B,C,D
Object B have some reference to other objects A,F,G
Object C have some reference to other objects A,...
And so on.
In my ...
2
votes
1answer
608 views
Symfony 2.1 Extending Core Classes
I am trying to override the core Symfony components with my own. The method I am using is:
"autoload": {
"psr-0": {
"": "src/",
"Symfony": ...
1
vote
2answers
565 views
Installing and running LiipImagineBundle in symfony 2.1
Here are the steps I followed:
Added following in my composer.json:
"require": {
"imagine/Imagine": ">=0.2.8",
"liip/imagine-bundle": "*@dev",
....
}
Ran following command ...
1
vote
1answer
549 views
Symfony2.1 using form with method GET
I need help on using Symfony2.1 forms with method=GET and a clean URL space.
I am creating a "filter" which I'd like to set in the URL so that people can bookmark their links.
So, very simply the ...
1
vote
1answer
1k views
Symfony2 A session had already been started - ignoring session_start()
I can't use Symfony2 session in my local server. I'm getting a "Notice: A session had already been started - ignoring session_start()" error.
Same script works fine in my production server.
I'm ...
1
vote
2answers
1k views
Symfony 2 upgrade to 2.1: LogicException: Container extension “security” is not registered
Just upgrading to Symfony 2.1. Been following the guides:
https://github.com/symfony/symfony-standard/blob/master/UPGRADE.md
https://github.com/symfony/symfony/blob/master/UPGRADE-2.1.md
...
1
vote
2answers
2k views
Impossible to generate the table “user”
When I install FOSUserBundle (official documentation), I try to generate my table fos_user using this command:
php app/console doctrine:schema:update --force
But console returns the following ...
1
vote
2answers
1k views
Symfony2 - Entire child entity in form and Twig template
In a Sonata admin form, I'd like to display all images related to the current object. Don't need to edit them.
I managed to get this working with an entity field type and its property option to select ...
1
vote
2answers
580 views
validation on unbound form field
I have a form with an extra unbound field added using 'property_path' => false.
I would like to have a simple validation on this field and I've found many answers that suggest to use something like
...
0
votes
1answer
56 views
How to display data for particular username from database?
On my index page are displayed different users. What i want to achieve is when someone click on the username to be redirected on other page where are displayed informations for the user.
Here is part ...
0
votes
0answers
88 views
How to retrieve a streamed response (e.g. download a file) with Symfony test client
I am writing functional tests with Symfony2.
I have a controller that calls a getImage() function which streams an image file as follows:
public function getImage($filePath)
$response = new ...
0
votes
2answers
165 views
With Symfony2 why are ESI tags inside cached responses ignored?
I have an ecommerce application that I'm try to set up for caching - initially via the Symfony2 Reverse Proxy, but then ultimately via Varnish in production. I'm using Symfony 2.1.8 on Apache2.
My ...
0
votes
0answers
66 views
Add relationship One-to-Many Or Many-to-one in Model in Symfony 2.1
How to add relationship One-to-Many Or Many-to-one in Model? OR should we do it in Entity? Is it possible?
Lets say relationship or foreign key constraint between share and sharePhoto(One-to-Many OR ...
0
votes
1answer
134 views
Default Symfony User Entity with Form Class
I wish to create A Form class for my Login form that uses the Default Symfony User class.
I folowed the book here: http://symfony.com/doc/current/book/security.html#using-a-traditional-login-form
...
0
votes
1answer
306 views
Convert fos user bundle service into yml
I have a FosUserBundle service I need to convert to yml format. How can I do this is there a dumper convertor or anything?
How this would look in yml?
<service ...
0
votes
1answer
49 views
How to (http?) cache a forwarded request/response?
I have this controller method that needs to call many other methods (sometimes in other controllers) with $response = $this->forward() to generate a bigger response.
How would you go about caching ...
0
votes
2answers
87 views
Symfony CreateProccess Error
I started using Symfony today and I wanted to use the CLI. So I have installed PHPstorm. Followed all instructions. Added an up to date php 5.4
Now when I try to run:
> $ php app/console ...


