Tagged Questions

Symfony is a PHP web development framework developed and maintained by Sensio Labs. This tag is specific for the 2.0 version of Symfony, available on the new Symfony website. See the Symfony tag for Symfony (versions 1.x and 2.x) in general.

learn more… | top users | synonyms (1)

30
votes
3answers
997 views

Facebook + UserBundle authentication with symfony2

I'm trying to authenticate my users via facebook or userbundle on symfony2 Here's what I did so far (and it works, although not as I want): firewalls: main: pattern: .* ...
25
votes
3answers
6k views

How do I read configuration settings from Symfony2 config.yml?

I have added a setting to my config.yml file as such: app.config: contact_email: somebody@gmail.com ... For the life of me, I can't figure out how to read it into a variable. I tried ...
19
votes
1answer
3k views

How can I access a service outside of a controller with Symfony2?

I'm building a site that relies quite heavily on a third party API so I thought it would make sense to package up the API wrapper as a service, however I'm starting to find instances where it would be ...
17
votes
1answer
520 views

How to set up Doctrine2 fixtures when testing with PHPUnit?

I'm trying to get started with Symfony2 and have been trying to set up automated testing for the model layer of my application. The Symfony2 book talks about unit testing for controllers but I can't ...
15
votes
1answer
331 views

How to properly set up Varnish for Symfony2 sites?

I have a website (with ESI) that uses Symfony2 reverse proxy for caching. Average response is around 100ms. I tried to install Varnish on server to try it out. I followed guide from Symfony cookbook ...
12
votes
1answer
355 views

Symfony2 + Doctrine2 is not caching results of joined entities

I am using Symfony 2.0.10 with Doctrine 2.1 and have rather simple query (see below), where I want to cache results with APC (version 3.1.7, enabled 1GB of memory for it) via useResultCache(true, 600) ...
12
votes
1answer
444 views

Symfony2: How to find the users that have permissions for a certain domain object?

In our application based on Symfony2 we would like to create a list of which of the users in the system that has permissions for a given domain object. We are using ACL and our immediate instinct was ...
12
votes
1answer
2k views

Symfony 2 or Lithium?

The answer may be based on 4 aspects: 1.- simplicity: we all hate write tons of code for simple tasks like in java, this is the reason why we use php, importing design patterns from java/university ...
11
votes
2answers
462 views

What is the Symfony2 equivalent of components in Symfony1?

In my Symfony2 application, I want to have a widget displayed on various pages. This can't just be defined by its template, it need to call the DB and go through the controller. In Symfony1, I would ...
10
votes
3answers
809 views

Automatic post-registration user authentication

We're building a business app from the ground up in Symfony 2, and I've run into a bit of a snag with the user registration flow: after the user creates an account, they should be automatically logged ...
9
votes
2answers
265 views

How to share a Symfony2 model with several projects

We are creating a SaaS that monitors certain assets. This means it takes in data, saves it, and displays it in a webinterface. For this, we have a few components that we created with/are moving to ...
9
votes
8answers
1k views

Symfony 2 or Symfony 1.4?

I am starting a new Symfony project that will be very important to my company. My experience is only with Symfony 1.4. and I have 3 months to complete the project. The project should be around for ...
9
votes
1answer
722 views

How to make “remember me” work if session expires when browser is closed?

I set sessions to expire when browser closes in main config.yml: framework: session: default_locale: %locale% lifetime: 0 auto_start: true Then I set "remember ...
9
votes
1answer
755 views

Managing common javascript dependencies in Symfony 2

I would like to know what is the standard best practice for dealing with common JavaScript (and even CSS) dependencies across several Symfony 2 bundles. According to the Book on the official Symfony ...
9
votes
3answers
6k views

Doctrine based authentication mechanism in Symfony2 project

I am working on a small Doctrine2-backed project using Symfony2 for the first time. Currently I'm struggling with the security component of symfony2, to be exact with the authentication mechanism ...
8
votes
0answers
314 views

Lazy Loading with Doctrine2 and Symfony2 using DQL

I have a tree structure with a parent field. Currently I am trying to get all parent nodes to display the path to the current node. Basically I am doing a while-loop to process all nodes. $current = ...
8
votes
1answer
213 views

Symfony2 Language for TLD

I'm new in Symfony2 and I'm looking for choose the language with the TLD of my hostname. (in a proper way) I already find some way to change the language with a form: ...
8
votes
3answers
2k views

How to var_dump variables in twig templates?

View layer pattern where you only present what you have been given is fine and all, but how do you know what is available? Is there a "list all defined variables" functionality in TWIG? Is there a way ...
8
votes
2answers
279 views

Redirect from embedded controller

I use embedded controller to render form that's used on multiple pages: Twig {% render 'Bundle:Controller:someForm' %} Controller public function someFormAction() { // Some logic ... ...
8
votes
3answers
890 views

Is it possible to create custom form field attributes in Symfony 2?

In Symfony2 form component is it possible to create custom attributes? The reason why I ask is because I'm working on a certain edge case where read_only will not be sufficient. Here is the ...
8
votes
1answer
487 views

Symfony2: how to get all entities of one type which are marked with “EDIT” ACL permission?

The title already says it: can someone tell me how to get all entities of one type which are marked with "EDIT" ACL permission? I would like to build a query with the Doctrine EntityManager.
8
votes
3answers
2k views

Symfony2 Routing - route subdomains

Is there a way to set up hostname based routing in Symfony2? I didn't find anything about this topic in the official documentation. http://symfony.com/doc/2.0/book/routing.html I want to route the ...
8
votes
5answers
10k views

How to create entity with Symfony2

My general question is how to create entities and repositories with symfony2? How to create entity/repository with a schema.yml with doctrine orm? Where i must save schema.yml file? What are the ...
7
votes
2answers
601 views

Symfony2 Doctrine query

Hi stackoverflow friends I'm new in symfony2 , I don't know how to write a below query in symfony2 using createQuery() select * from Post inner join Category on Post.category_id=Category.id inner ...
7
votes
3answers
221 views

Effort required to go from Symfony 1.4 to Symfony 2.0

I have a website written in Symfony 1.4. It was my first symfony website and the learning curve was a bit steep for me. It is a fairly complicated website, and I don't want to 'fix it' if its not ...
7
votes
1answer
1k views

DoctrineMongoDBBundle getting a fatal error in Symfony2

I'm following the directions here: http://symfony.com/doc/2.0/bundles/DoctrineMongoDBBundle/index.html I have installed deps: #deps [doctrine-mongodb] git=http://github.com/doctrine/mongodb.git ...
7
votes
2answers
256 views

Could not load type “XYZ” error when overriding FOSUserBundle form types

I am attempting to override the RegistrationFormType in the Symfony2 FOSUserBundle. I am following the documentation and believe i've covered everything. I've created a bundle to contain my overrides ...
7
votes
3answers
337 views

Best Practices for developing a multi-tenant application with Symfony2 and Doctrine2

I am working on an application that needs to support the multi-tenant model. I am using the symfony2 php framework and doctrine2. I'm not sure the best way to go about architecting this ...
7
votes
4answers
596 views

sfguard bundle for symfony2

There is a bundle for (Propel) for symfony2,is there sfguard bundle for symfony2
7
votes
5answers
4k views

Symfony2 - Assetic - load images in CSS

I have a CoreBundle that contains main css files and images. Now I have a problem when i load an image from css; the image isn't shown. background-image:url(../images/file.png) (With a full path ...
7
votes
4answers
2k views

Symfony2 : How to get form validation errors after binding the request to the form

Here's my saveAction code (where the form passes the data to) public function saveAction() { $user = OBUser(); $form = $this->createForm(new OBUserType(), $user); if ...
7
votes
1answer
3k views

Access POST values in Symfony2 request object

OK, this is a newbie question, but I can't find the answer anywhere. In a controller in Symfony2, I want to access the POST value from one of my forms. In the controller I have: public function ...
7
votes
2answers
2k views

symfony2 - how to switch from “dev” to “prod”?

I downloaded symfony2 and I am able to run it starting from app_dev.php. But when I start from app.php, then I get an error page 404. app.php though is of course there and it gets executed. The ...
7
votes
3answers
764 views

symfony2 how to structure a project?

I would like to ask, what is the best way to structure a project with a frontend and a backend in symfony2? In other versions of symfony this was easy, because you created two applications, frontend ...
7
votes
5answers
945 views

Assetic + YUI Compressor in symfony 2: is this a bug?

I have tested the YUI compressor in the command line (on windows) and it seems to work just fine. But the .css created by assetic is not compressed, and comes with this message on the top (inside the ...
7
votes
2answers
2k views

Symfony 2 : multiple and dynamic database connection

I am quite new to SF2 and I was wondering how I could manage connections to severals databases into ONE bundle. For the moment I have this solution - which works fine - but I don't know if it is the ...
7
votes
1answer
323 views

Is it possible, using PHPUnit mock objects, to expect a call to a magic __call() method?

I've got a mock object in a test. The real object, PageRepository, implements a magic method using __call(), so if you call $pageRepository->findOneByXXXX($value_of_field_XXXX), it will search the ...
7
votes
5answers
183 views

Aggressive caching of generated contents while maintaining auth info

I'm using a Symfony 2 to generate my pages from data in a MySQL database. For most content, users have to be authenticated but the content itself does not change often and does not need to be ...
7
votes
1answer
884 views

Deploying / Continuous integration of a Symfony 2 application with Jenkins/Hudson

I've developed an application which uses the Symfony 2 framework. The application code resides in a Bundle, and on my local machine I just downloaded the Symfony2 Standard Distribution and added the ...
7
votes
1answer
638 views

Is it possible to use dual authentication with symfony2?

Is it possible to use dual authentication with symfony2? Users should be able to authenticate themselves with facebook and my own system. I've read the documentation, and I know that there is the ...
7
votes
1answer
1k views

Symfony2: what Symfony git repository can I use to start a project?

Can you give me some informations on how to create a new Symfony2 project please ? I started to get the symfony/symfony-sandbox from github as a tar-ball. Then I removed its old src/vendor content. ...
6
votes
1answer
90 views

CSRF token invalid in load balanced symfony2 application

I have inherited a symfony2 project which in the live environment runs in over 2 load balanced servers. The session is stored in the mysql database that the application uses for this reason. The ...
6
votes
1answer
149 views

Symfony2: use object to set route parameters

I have a route with 2 parameters: BBBundle_blog_show: pattern: /{id}/{slug} defaults: { _controller: BloggerBlogBundle:Blog:show } requirements: _method: GET id: \d+ ...
6
votes
1answer
1k views

Symfony2 - convert datetime to string in a twig template

One of my fields in one of my entities is a "datetime" variable. How can I convert this field into a string to render in a browser? Here is a code snippet: {% for game in games %} ...
6
votes
3answers
430 views

Symfony2 & Doctrine - Get number of rows returned from datasource

I have the following code in my Symfony2 Repository Class... $query = $this->createQueryBuilder('foo') ->where('foo.bar = :id') ->setParameter('id', $myID) ...
6
votes
2answers
403 views

Injecting dependency into entity repository

Is there a simple way to inject a dependency into every repository instance in Doctrine2 ? I have tried listening to the loadClassMetadata event and using setter injection on the repository but this ...
6
votes
3answers
125 views

How to go into maintainance mode to safely update a production application, in Symfony 2?

I need to update source files (pull and update from the repository) in my production server, run migrations, and regenerate cached assets. Is there any mechanism in Symfony 2 to do this safely? Like ...
6
votes
1answer
196 views

symfony 2 equivalent for url_for() function in symfony 1

In Symfony 1 we can access an action in template page as for example url_for('modulename/actionname') without writing anything in routing.yml. how is this possible in Symfony2?,that is if i have to ...
6
votes
2answers
194 views

Does loading a lot of bundles affects the overall performance of a Symfony2 application?

I've been wondering how loading a lot of bundles in the appkernel (let's say 300+) and their routing information impacts the overall application performance? Look at it as a matter of conditional ...
6
votes
1answer
618 views

Unable to create table in MySQL using Doctrine and Symfony2

I am working with Symfony2 and Doctrine ORM using MySql . After creating an Entity, I am not able to create the table. It throws an exception. anu@anu-bridge:/var/www/Symfony$ php app/console ...

1 2 3 4 5 39