Tagged Questions
1
vote
1answer
41 views
Symfony 2: Displaying tables?
I'd like to display some rows of data from a database table. I'm keen to get some advice on how to best achieve this.
Let me explain how I do it now and why this question has been raised: I ...
0
votes
1answer
302 views
Upgrading Symfony 2.1 to 2.2: fragment sub-framework and locale handling broken
I've just upgraded from Symfony 2.1 to 2.2. I followed the instructions given here:
http://symfony.com/blog/symfony-2-2-0
https://github.com/symfony/symfony/blob/2.2/UPGRADE-2.2.md
All my code was ...
1
vote
1answer
105 views
How to properly integrate a 3rd party library in a Symfony2 project
I am working on a Symfony 2.2 Project in which I need to upload video to Vimeo. I am using advanced Vimeo API via the Vimeo.php (official library of Vimeo)
I managed to add a namespace to the library ...
0
votes
1answer
63 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
1answer
187 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 ...
0
votes
2answers
120 views
symfony+Mapping error
I am implementing the FOSUser module in my symfony i have created and configure all file as the tutorial.here is my config.yml file for mapping.
namespace Acme\UserBundle\Entity;
use ...
0
votes
2answers
65 views
Custom entity generation error in symfony2
hi i am creating a custom entity class without using command prompt.
so that i have created one table name " profile "
with the following fields.
id: type = integer,Pk,
name: type = ...
0
votes
1answer
63 views
Why autoloader error comes in symfony2
can any one please let me know why the autoloader error is comes in symfony2.
what is parmenanat solution of it. i have download the symfony2 version with vendor and all the things is working properly ...
4
votes
2answers
83 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 ...
1
vote
0answers
55 views
Complex data structure using only the Form component
I'm developing a e-commerce system with customizable products. Each product may have some options that, for its part, may have one or many values selected by consumer. I can't use the variant approach ...