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.
0
votes
2answers
122 views
Symfony Roles as Entities Form issue
I have a custom handler for roles like as entity and many to many relationship like so:
<?php
namespace Digital\UserBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use ...
0
votes
1answer
73 views
Manage and include Handlebars.js files with symfony 2.1 and Assetic
I want to exclude my handlebars.js template from my twig files.
So I created a new directory in the public folder named hbs where I placed all my handlebar templates. How do I tell assetic to render ...
2
votes
2answers
65 views
how to add the same content in all twig templates in symfony2 [duplicate]
I have a vertical menu in the main template in my website where I put the same content in all the website pages and all the other templates extends the main template. My question is; How can we ...
0
votes
1answer
69 views
Configuring symfony for using eaccelerator
Is there any configuration for improving performance of symfony2 by eaccelerator?
And so is there any configuration for using eaccelerator to take advantage of doctrine "Query Cache,Result ...
1
vote
0answers
47 views
Delete cached file for a specific URI
When I use HTTP cache for a custom page, Symfony2 creates a file for it under the cache folder and it's possible to set timeout for this cache. But when I update some of my database information that ...
0
votes
2answers
299 views
Update a entity/database record using form builder in Symfony 2
I have selected an entity/record from the database and pass it to my form. The form loads correctly, but when I hit save it adds a new record instead of updating the existing one.
PlanController.php
...
1
vote
3answers
90 views
add more conditions for query builder in ManyToMany
i have relationships (ManyToMany) in symfony2:
Item <-> Category
Database:
Item:
ID NAME
Category
ID NAME SLUG
Item Category:
id item_id category_id
I'm trying to find all the items that are ...
0
votes
1answer
282 views
Doctrine fixtures not working after updating to Symfony 2.1.8
After updating a project from Symfony 2.0.22 to 2.1.8 I get this error when executing doctrine:fixtures:load via Terminal
Fatal error: Class 'Doctrine\Common\DataFixtures\Loader' not found in ...
1
vote
2answers
46 views
Default language set by default french
I do have the following entry in config.yml
framework:
translator: { fallback: de }
When I go to my index page. Chrome always tells me that the website is in french and want to translate. How ...
2
votes
1answer
79 views
Fatal error: Class 'Doctrine\Bundle\MongoDBBundle\DoctrineMongoDBBundle' not found
I'm trying to install mongodb since 3 days but each time, I had a different error message until I fix some of them and I could install mongodb for my Symfony 2.1.4 installation. So now I have this ...
0
votes
1answer
105 views
System profiler get me user logged in but not authenticated
I thought I was finally able to properly manage the login with Symfony 2. But when I get redirected to another page after login, the System Profiler gives me back that the user is logged in but not ...
0
votes
1answer
75 views
query with dateformate in where clause in symfony2
when I run a query with date in where clause, following error is showed...
[Syntax Error] line 0, col 129: Error: Expected known function, got 'DATE_FORMAT'
the query is given below
$query = ...
1
vote
2answers
101 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 ...
0
votes
1answer
91 views
Event Form Symfony2.1
I'm trying to use the listener of the form (try with pre_set_data and pre_bind), but I get this error
The required option "class" is missing.
public function bindData(DataEvent $event) {
$data ...
0
votes
1answer
63 views
Using Doctrine, how do you access Entity methods from a EntityRepository?
In the Symfony "Book", they talk about Entities with references to other entities. Like, in my case, if I have a "Post" Entity with many "Comment" Entities referencing it, I can load the Post by its ...
1
vote
3answers
49 views
Custom choiceType field
Please, help me!
I'm trying to make a form for a product with colors. Colors are objects in database.
$builder
->add('product')
->add('colors', 'choice',
array(
// ...
0
votes
1answer
66 views
Doctrine query syntax error
I have a value in database like stackover/'!@#/\;"""'.;\';'./ with all special char.
Now my problem is that how can I build a query like:
$linkName= // getting from db
$sql_sm="SELECT d FROM ...
0
votes
1answer
75 views
Symfony 2 + deploy : bootstrap.php.cache(861) error = Kernel->buildContainer()
I have just deployed my symfony 2.1.8 app into the server, by I have this error
0 app/bootstrap.php.cache(861): Symfony\Component\HttpKernel\Kernel->buildContainer()
1 ...
0
votes
1answer
138 views
how to get currency symbol in twig, symfony2?
I am currently able to get currency symbol in symfony2 controller
$formatter = new \NumberFormatter($this->getRequest()->getLocale(),\NumberFormatter::CURRENCY);
$symbol = ...
0
votes
2answers
173 views
Symfony2 Entity form type with a specific query_buider
Context
In my case, I've some orders with "discount vouchers" (discount). A discount can be use on under different conditions. For instance, discounts have an expired date, can be used by a limited ...
1
vote
1answer
198 views
Symfony functional tests give infinity loops after upgrading to 2.2
I've encountered problem after upgrading my Symfony from 2.1 to 2.2.
When runing all functional tests at once (notice this isn't happening when single tests are being run, no matter which) I get an ...
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
...
0
votes
1answer
106 views
Symfony 2.1 : Test the prod mod => exception using the app.php controller calling ApcClassLoader->__construct
Before deploying my symfony 2.1 version into my prod serveur, I wanted to test the behaviour of the prod env.
So I have done a php app/console cache:clear --env=prod --no-debug, after a php ...
0
votes
1answer
196 views
Cannot install package using composer in NetBeans
I'm using symfony2.1 on XAMPP, with NetBeans 7.3 as the IDE. And I want to install friendofsymfony/rest-bundle package by adding these line on require section
"friendsofsymfony/rest-bundle": ...
0
votes
2answers
169 views
Symfony Session - How to add a custom field to the session table
I'm currently using Symfony 2.1.8 and the built-in PdoSessionHandler.
I want to add a user_id field in the session table to identify to which (logged-in) user the session belongs. The idea is that I ...
1
vote
1answer
62 views
Login with certificate in symfony 2.1
I know that it's possible in Symfony 2.1 to provide a login through a certificate. But I can't find an implementation example.
does anybody know how to configure a certificate based login in Symfony ...
0
votes
2answers
170 views
Upgrading from symfony 2.1.7 to symfony 2.1.8
I ran composer update command and it updated from symfony 2.1.7 to symfony 2.1.8. This is where my problem started. Now when I try to run any symfony console command, I get error as below:
Fatal ...
1
vote
0answers
98 views
can't access session data after redirect
I use FOSUserBundle to register new users.
User answers few questions which are saved to the session. If the answers are correct the user is redirected to register action. After register the user is ...
1
vote
1answer
189 views
Twig syntax error when enabling ESI in symfony 2.1.8
Ive attempted to add an ESI render with {'standalone': true} to one of my twig templates and am getting the TWIG syntax error of:
Unexpected token "punctuation" of value "," ("end of statement block" ...
1
vote
1answer
127 views
Gregwar Captcha error in symfony 2.1.7
I installed the GregwarCaptcha bundle and add the following code in controller
$form = $this->createFormBuilder()
->add('captcha', 'captcha', array(
...
0
votes
1answer
86 views
set() is deprecated since version 2.1 Access the public property 'vars' instead
I have been looking for other users with this symfony 2.1.8 to 2.2.0 upgrade depreciation warning:
set() is deprecated since version 2.1 Access the public property 'vars' instead
I have not been ...
1
vote
1answer
39 views
fr3d LdapBundle - preventing login
I am using LDAP to authenticate my users (with fallback to FOS User Bundle). Everything works fine, I can log in.
This has, however created a "new" problem. I wish to control who can log into the ...
0
votes
1answer
104 views
Symfony 2: AvalancheImagineBundle - Unable to find controller “imagine.controller:filter”
I get this error using AvalancheImagine bundle for generating thumbnails:
Unable to find controller "imagine.controller:filter".
500 Internal Server Error - InvalidArgumentException
The bundle is ...
1
vote
1answer
197 views
Symfony 2.0 => Symfony 2.1: Twig_Error_Runtime - Notice: Array to string conversion in Translator.php line 130
I have an error while upgrading my symfony application from version 2.0.19 to 2.1.8.
I have just submit a Contact person form and I have this error:
Twig_Error_Runtime: An exception has been thrown ...
0
votes
1answer
66 views
Form themeing show pictures
I went to this tutorial. I got the example to work. But I don't get it because I can't customize it for my case.
I want to display a picture for each of my facebook friend and pass the adress of the ...
1
vote
1answer
181 views
Auto-Login via URL with symfony2
I'm trying to do an auto login with symfony2 and a special kind of url. Just like described here.
But when I use the symfony2 debug toolbar, I notice that it says: "Not authenticated". But I have a ...
-1
votes
2answers
70 views
Is it possible to decrease number of files in Symfony 2?
I just started my new projects in symfony 2 and I'm wondering more than 6000 files in the Symfony directory.
is it ok?
is it possible to decrease number of files?
0
votes
0answers
38 views
Is it possible to use a custom User Provider to sign a comment when using FOSCommentBundle?
I am using a custom UserProvider for the authentication in my Symfony2.1 application. I would like to use FOSCommentBundle to implement comments. But when it comes to sign the comment by the comment's ...
1
vote
1answer
156 views
'MongoCursor' not found in Doctrine/Bundle/MongoDBBundle/DependencyInjection/Configuration.php
I am writing some unit tests for some services I have on my Symfony2 project. I need to access the services via the service container and I am using this approach:
class DummyTest extends ...
0
votes
1answer
153 views
Symfony2 simple many-to-many issue
I have a simple question,
I have two tables in relation many to many, Post and Category,
in an intact form PostType a collection of form CategoryType, but here the problems begin ..
I followed the ...
0
votes
3answers
354 views
Undefined method registerNamespaces() symfony2
I'm following this FOSTwitterBundle documentation:
https://github.com/FriendsOfSymfony/FOSTwitterBundle
I did it all step by step, but when I access my site, i get this error:
Fatal error: Call to ...
1
vote
0answers
113 views
Symfony2 authenticating users through a webservice
I'm currently dealing with Symfony2's Security component.
I try to authenticate users against a webservice. To authenticate a user, I have to provide to the webservice a username and a password.
I ...
3
votes
2answers
185 views
How to force password change using FOSUserBundle?
I'm attempting to implement a security feature in a Symfony 2.1 project where the admin can create a user with an initial password, and then when the user logs in the first time the change-password ...
0
votes
1answer
161 views
Symfony 2 & Remember me function
Having a strange problem that others don't seem to have.
I can't get the "remember me" function working on my Symfony 2.1 app.
I've tried local and deployed on a server, I've tried with and without ...
0
votes
0answers
38 views
removing children with self-refrence
I have a self-referencing One-to-Many association on an entity (Category) mapped by parent and inversed by children.
what I want is : when some one wants to delete a category check that if the ...
1
vote
1answer
137 views
symfony 2.1 application not work on free openshift
I've deployed my Symfony 2.1 application on openshift and it doesn't work.
Calling app.php server return 200 OK and a white page (in my local server work well).
Log:
=> ...
0
votes
1answer
71 views
FOSUserBundle override template not working on EC2
Something very strange happening. I'm developing on OSX (php 5.4.11 and the OSX built-in web server (not the PHP one). I've deploy my code on AWS EC2, fix the permissions with setfacl and run the site ...
1
vote
0answers
136 views
Doctrine in Symfony 2.1 : Fields, Columns and Indexes on multiple columns
I'm quite new with symfony2 and doctrine and I've recently encounter an issue with indexes that I'm not able to fix.
Here is my experience.yml:
Test\PersoBundle\Entity\Experience:
type: entity
...
0
votes
1answer
103 views
doctrine2 findby two columns OR condition
My action:
$matches_request = $em->getRepository('Bundle:ChanceMatch')->findByRequestUser(1);
$matches_reply = $em->getRepository('Bundle:ChanceMatch')->findByReplyUser(1);
Is it ...
0
votes
1answer
82 views
Symfony 2.1 permissions, unit test, session
I am creating application based on Symfony 2.1. I write code locally, upload it on server and then run unit tests. When every test pass I run Jenkins job to check code style and etc.
Recently I ...




