Symfony is a full stack MVC framework for PHP 5.

learn more… | top users | synonyms

64
votes
22answers
9k views

PHP Framework Decision - Analysis paralysis!

OK, sorry in advance for the length of this question! I've spent ages reading about the pros and cons of all the major PHP Frameworks (i.e. Zend, CakePHP, Symfony, CodeIgniter, etc., etc.). I've also ...
31
votes
7answers
12k views

PHP ORMs: Doctrine vs. Propel

I'm starting a new project with symfony which is readily integrated with Doctrine and Propel, but I of course need to make a choice.... I was wondering if more experienced people out there have ...
29
votes
3answers
889 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
1answer
990 views

Different inheritance types in the same schema

I'm using Doctrine 1.2 on a symfony project, and I'm considering mixing concrete and column aggregation inheritance types in my schema: column aggregation lets me query in a parent table and get both ...
22
votes
2answers
5k 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 ...
21
votes
8answers
16k views

symfony vs cakephp

What is conceptually the difference between symfony and cakephp?
20
votes
10answers
4k views

Why use Symfony not Drupal

I've been using Drupal for some time and have been a bit frustrated with how it takes a lot more work to do things the Drupal way than if I were writing custom code from scratch. Sometimes I spend the ...
17
votes
8answers
12k views

Zend vs Symfony development time

Is it faster to develop using the Zend Framework or Symfony?
16
votes
2answers
6k views

Symfony 2.0 step by step tutorial required

I need tutorial about symfony 2.0.Any links or suggestion would be appreciated.Note: I just have a little knowledge about Jobeet tutorial and dont have a full fledged project developed on symfony...
15
votes
5answers
352 views

What is the safest way of passing arguments from server-side PHP to client-size JavaScript

In my application I rely heavily on JavaScript to enhance the user interface, but all of the data comes from a database and is processed by PHP. By default I use 'echo' statements to substitute the ...
13
votes
10answers
675 views

Should someone with no PHP experience use a framework like CakePHP or Symfony?

I have a simple site to develop and would like to learn PHP as I go. I want the site to be secure, scalable, and easy to maintain. Should I learn a framework and PHP simultaneously? If I build off ...
12
votes
5answers
2k views

Are Symfony and CakePHP too slow to be usable?

Until now, I have always said that CakePHP is too bloated and slow. I don't really know that, I just saw "some" benchmarks. What I really want to know, is that if those two frameworks (Symfony and ...
12
votes
5answers
10k views

Using Raw SQL with Doctrine

I have some extremely complex queries that I need to use to generate a report in my application. I'm using symfony as my framework and doctrine as my ORM. My question is this: What is the best way ...
10
votes
2answers
407 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
2answers
1k views

symfony 1.4 propel:build-all not working on Mysql 5.5

i am using Symfony 1.4.8 and Mysql 5.5 i got this error when i run symfony propel:build-all You have an error in your SQL syntax; check the manual that corresponds to your MySQL server ...
10
votes
3answers
5k views

How do I retain the Original Filename After upload in Symfony

I am using Symfony 1.4. Users from the backend application can upload files and publish them to the frontend. Using sfWidgetFormInputFile and sfValidatorFile, I would like to keep the original ...
10
votes
15answers
8k views

What IDE has the strongest support for Symfony framework?

I'm looking for an IDE with use with the Symfony Framework. I have a bit of experience using the NetBeans 6.5 IDE but it does not always seem to complete the class methods, plus it doesn't seem to ...
9
votes
3answers
651 views

Symfony2 standalone form component - setting up a form

I'm trying to implement Symfony2 form builder component as a standalone. The documentation doesn't really talk about this though, just in relation to using the whole framework. The standalone is on ...
9
votes
2answers
288 views

Is ORM all or nothing?

If I use an ORM let's say with Zend or Symfony. Is it an all or nothing deal? I'd like to use the ORM, but also want to optimize performance in some cases and write the query myself to get to the ...
9
votes
5answers
4k views

How to create a custom yaml config file in Symfony

What I want to do is quite simple: store data in a custom config file that I want to read later on. I created my file something.yml that I put in the global config directory. It looks like that: ...
8
votes
2answers
269 views

Sending POST Request to Secured Action

I have an action that takes POST data secured by sfGuard. This means that if the user is not logged in, the POST data will be sent to the log in form. Ordinarily, this is not a problem, the user ...
8
votes
5answers
9k 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 ...
8
votes
2answers
2k views

Symfony2 entityManager in model

I'm going to use entity_manager in my model. But entity_manager is only available in controller: throw $em = $this->get('doctrine.orm.entity_manager'). So, I have to define model methods with $em ...
8
votes
5answers
1k views

How to use less memory while running a task in Symfony 1.4?

I'm using Symfony 1.4 and Doctrine. So far I had no problem running tasks with Symfony. But now that I have to import a pretty big amount of data and save them in the database, I get the infamous ...
8
votes
3answers
2k views

Functional testing form with CSRF enabled in Symfony

What is the best way of creating functional tests to test forms with CSRF protection enabled in Symfony? Currently I have to add the following code before each form submittion: $form = new ...
8
votes
4answers
6k views

How do I generate Symfony fixtures YML from exising database data?

I was wondering if anyone knew how to generate a fixture.yml from data that is already existing in the database? As you can use the build-schema to generate a schema, is there a way to do that for ...
7
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 ...
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
6answers
967 views

Cannot redefine class on 'require_once'

UPDATE: I've abandoned CodeIgniter, and the desire to build a web interface around my database application from PHP, as there was no way of getting rid of this bug... The Exception I get this ...
7
votes
1answer
616 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
836 views

Symfony Friendly Shopping Cart

What options exist for a simple shopping cart system on Symfony? I'm looking for something that will: Provide an interface for tracking items to purchase. Provide shopping cart actions and templates ...
7
votes
6answers
4k views

Can I use Facebook's hiphop with frameworks like Zend Framework, cakephp, symfony

Yesterday Facebook launched HipHop, a sourcecode-converter from php to c++. The set of php functions and constructions is more limited than in standard php. Are the current popular php frameworks ...
7
votes
1answer
5k views

How to implement a helper in Symfony 1.4?

I'd like to create my own helper but can't find any help on Google for Symfony 1.4/Doctrine. I guess it has something to do with creating a myClassHelper.class.php in lib/helpers/ or something, but I ...
7
votes
6answers
448 views

Seriously speeding up PHP?

I've been writing PHP for years, and have used every framework under the sun, but one thing has always bugged me... and that's that the whole bloody thing has to be interpreted and executed every time ...
7
votes
8answers
917 views

PHP Web development IDE

I am coming from a C++ background and am used to testing code by setting breakpoints, viewing variables in the debugger etc. I am now doing web development (using the symfony framework). what I ...
7
votes
6answers
754 views

What framework(s) would you suggest for a strong, extensible dev platform?

First, let me apologize for Yet Another Framework Question. But I think this is different enough from the usual "What framework should I choose?" to warrant it. Here's my situation: For the past year ...
7
votes
5answers
3k views

Symfony (PHP framework) and MongoDB ( or any json-based database)

I was wondering if its possible to use a json-based schema-free, document-based database like Mongodb or Couchdb on a symfony project like its used for ruby-on-rails websites? And if yes, how can it ...
6
votes
5answers
131 views

Symfony and mechanize

I am trying to access to a local website designed with the Symfony framework. It works perfectly with the web browser and with CURL but when I use Mechanize I always got the 401 unauthorized answer ...
6
votes
3answers
122 views

Symfony 2 without SSH access

I have a developed a small web-app in Symfony 2 and Doctrine 2. Can i deploy it to a web-host that doesn't give SSH access? I ask this because i see there are a lot of task that must be done from ...
6
votes
3answers
187 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 ...
6
votes
1answer
482 views

Symfony2 ACL and pager/multiple entities filtering

I've seen examples of ACL to deal with one entity but none to deal with fetching multiple items - such as a list of posts that belong to an author. One (bad) suggestion was to fetch all the items and ...
6
votes
3answers
2k views

Symfony2 updating bootstrap.php.cache

Recently I started a project in Symfony2 from the BETA version available on symfony.com After a while, I needed to upgrade to the master branch, so I retrieved the latest from github and switched it ...
6
votes
2answers
4k views

How to deal with Form Collection on Symfony2 Beta?

I have an entity User and an entity Address. There is a relation One-to-Many between User and Address : class User { /** * @orm:OneToMany(targetEntity="Address") */ ...
6
votes
2answers
259 views

Anchor in URL when using Symfony's redirect function

I'm using $this->redirect('route', array('id' => $id)); but I need to be able to put "#" anchor at the end but I can't find a way of doing that. Any ideas? The code ...
6
votes
1answer
200 views

Symfony: multiple applications in one test

I am writings functional tests for my projects' backend application modules. To test some features, I need to simulate user actions from frontend application. So, I created 2 sfTestFunctional ...
6
votes
3answers
155 views

Validation as property of the form

In the CakePHP framework, validation rules ar a property of the model. That is, it does not matter where the data comes from: when you want to write it in a model, it will have to pass the validation. ...
6
votes
2answers
1k views

Preventing Doctrine's query cache in Symfony

In my Symfony/Doctrine app, I have a query that orders by RANDOM(). I call this same method several times, but it looks like the query's result is being cached. Here's my relevant code: $query = ...
6
votes
2answers
159 views

Open Discussion - Symfony - what do you do to start your projects quicker?

When you start a new project (whether it's personal or professional) what do you have at hand to quickly start developing the project? For example, when I start a new project at work, I have the ...
6
votes
8answers
387 views

Is there a “right” way to use php?

I have been learning php, by just plugging away at it. I was hoping someone could point me in the right direction in regards to security, flow and general best practices? Thanks. edit-- I suppose ...
6
votes
2answers
3k views

return json to ajax in symfony?

in symfony i call an action and i want this to return json to jquery frontend. the jobeet tutorial teaches how to return a partial but i want to return json, not a partial. thanks.

1 2 3 4 5 70