Symfony2 is an open source PHP web development framework for PHP 5.3.3+ focusing on easy and fast development cycles and including state-of-the-art design patterns and programming philosophies.
0
votes
1answer
8 views
Symfony2 forms - Setting several fields using one method
Let's say that I have an entity.
This entity has two field that should be changed only through one function, because of domain logic
How could I make the form framework to set the values using one ...
0
votes
0answers
6 views
Set a list of images to an entity with VichUploaderBundle
I have an entity "Comment", and a "Comment" could have one or more images associated.
How do i achieve that.
Now i have this(for just one image):
/**
* @Assert\File(
* maxSize="1M",
* ...
0
votes
0answers
18 views
Which PHP framework I should choose to be able to encode my application with ioncube
I'm about to start working at the new project. It will be some sort of CMS. I'm going to sell it, so I need to encode it with ioncube. I decided to base the project on the Symfony2, but suddenly found ...
0
votes
0answers
26 views
Redirecting to different pages
After visiting the home url I want to redirect the user to the installation website if he hadn't done this yet. Or I want to redirect him to the home page if he had.
I have two different controllers, ...
0
votes
2answers
31 views
Symfony: tagging a command with console.command doesn't seem to work
By default Symfony tries to scan every bundle directory for a folder called 'Command' and searches for Console\Command classes in there.
But when you want to use the DIC and DI in you console ...
0
votes
2answers
28 views
Symfony2 - Using the Entities database ID for Form Collections array key
I am building a form collection and it output's the rows like this:
<input type="number" name="order[items][1][qty]">
<input type="number" name="order[items][2][qty]">
But what I want ...
0
votes
3answers
343 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
1answer
20 views
Setting up php-sdk-gae with symfony2
I'm trying to run symfony2 with a hello world sample bundle inside php-sdk-gae.
I'm following the instructions provided in https://developers.google.com/appengine/docs/php/ and I can run the demo ...
0
votes
1answer
28 views
Preventing default error logging in Silex
It seems that by default, Silex is logging all exceptions and errors. I would like to turn this off, so that the logs contain only the records that I make myself. Is there a way to do this?
1
vote
1answer
23 views
Symfony2 timestampable include update of related entity
I'm trying to create an application using Symfony2, and I've come up against something I can't figure out. I have an entity called Company and another called Address, with a Many to Many relationship ...
0
votes
2answers
22 views
Doctrine2 Symfony2 how to ignore NULL in query builder?
I have a route with may or may not contain values, and wish to query Doctrine based on that,
/**
* @Route("/{productType}/{region}/{town}/{road}", name="product_type" , defaults={"productType" = ...
0
votes
1answer
22 views
Symfony2 forcing jpg download returns corrupted file
Following some of the many posts related to the subject I finally came up with this version of the "force download" code:
public function downloadAction(Request $request){
$filename= 'test.jpg';
...
1
vote
1answer
26 views
AngularJS Create new scope in template?
using Symfony2.x, I have a twig loop going through data for some data, and I also have an ng-repeat going on for similar elements (difference being these ones get loaded in the background though), but ...
1
vote
1answer
13 views
Composer: How to setup private Symfony bundles on svn
I am using svn for hosting my projects on unfuddle.com. All of them share some of my bundles that I would like to keep private.
Example:
I created d:bundles/ImageBundle folder and copied the code I ...
0
votes
1answer
130 views
doctrine extra lazy load doesn't work as expected with count
I have an entity Shop and a related entity ShopProduct, with the following relation:
/**
* @ORM\OneToMany(targetEntity="ShopProduct", mappedBy="shopid", fetch="EXTRA_LAZY")
*/
private $products;
...
0
votes
1answer
19 views
How to pass arguments to controller from route in Symfony2
I'm working on a Symfony2 project and am trying to figure out how to pass parameters from the route configuration to the controller. I know I can configure default values in the route configuration, ...
0
votes
2answers
111 views
How to update embedded document in MongoDB with Doctrine ODM
I'm unable to find how to update embedded documents with Doctrine Mongo ODM in Symfony2. I have a class called Page with many embedded documents "Comments" and I want to use createQueryBuilder to ...
0
votes
1answer
23 views
How to debug tags and services configured in the symfony2 service container?
I am writing a service to handle AccessDeniedException and I found a way to solve it from Using Symfony2's AccessDeniedHandlerInterface
firewalls:
secured_area:
.....
...
0
votes
1answer
12 views
Assetic fallback when compass is not available with symfony2
I'm using kriswallsmith assetic bundle to serve css with compass filter, in dev environment is generated each time and in prod environment styles are served with the dumped css files with no compass ...
0
votes
0answers
8 views
Sonata Admin Change Edit link by Show link
I'm using SonataAdminBundle and I'm triying to change the edit link of and entity by the show link.
I want to do this because I need the entity couldn't be modified but I want you can show the ...
1
vote
1answer
36 views
Apache third level domain name configuration
i have specific rewrite like
RewriteEngine On
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-f
RewriteRule .* /app_dev.php
and i need domain names like hello.epsilon.localhost and ...
6
votes
4answers
2k views
Symfony2 error 500 instead of 404 at production
In my Symfony2 project I'm getting at development mode correct 404 Exception screen. But I'm getting blank screen with HTTP status code 500 instead of 404 at production mode. I'm using custom error ...
1
vote
1answer
17 views
Install Sylius - Symfony2 OpenSource Ecommerce
I am trying to install Sylius from here but i am unable to get it working.
On running the command i get process timed out...well...due to the ever slow internet we use here.
Could anyone please guide ...
0
votes
1answer
31 views
Access to the next value in a Twig loop
I have a problem to display the next line of a result in a loop using Twig :
// Arkiglass/ProduitBundle/Controller/DefaultController.php
<?php
public function produitAction()
{
$em = ...
2
votes
0answers
25 views
Randomly missing ESI content on tablet and mobile devices using Symfony2 and varnish
I have a weird issue where some content included via Edge Side Include is randomly missing. Its a menu wrapped in a header tag. Sometimes it displays in the browser sometimes its missing.
A few ...
0
votes
0answers
22 views
Symfony2, Pageranta - get all records
How can I get all of records using Pagerfanta? I have action which returns requested page (it works) but it can also return all of records (if someone want to see all results at once).
I'm using ...
0
votes
1answer
10 views
Symfony2 and Entity Field : Expected argument of type “Doctrine\ORM\QueryBuilder”, “NULL” given
I have problems with my classes Symfony2.
I have 3 classes "Niveau, Classe and Serie" that here. A class is related to a level and against a Series by Series Level and are in contact with several ...
0
votes
0answers
18 views
Session symfony 2.2 admingenerator fosuserbundle LOGS OUT
Well, since I upgraded my Symfony to 2.2 version something happened with FosUserBundle. Let me introduce you first what do I currently have. I'm using AdminGeneratorBundle connected with FosUserBundle ...
2
votes
0answers
25 views
Embedded forms of inherited doctrine's entities
I'm building a form generator using Symfony 2.2 with Doctrine. The base principle is that the user create a new form by filling its name and selecting the widgets he'd likes to have in a select menu.
...
0
votes
2answers
13 views
maintaining a composer.json for reuse between projects
At our company we aim to use Symfony2 for all our new projects. There are a couple of additional bundles that we almost always add to the projects, such as the FOSUserBundle and KnpMenuBundle. We ...
0
votes
1answer
40 views
symfony2 can't login “Bad credentials”
I am writing a website using the Symfony framework but for some reason, the login process is not working.
I always get message: Bad credentials
Here is my security.yml
# app/config/security.yml
...
0
votes
2answers
17 views
JMS Serializer doen't expose one property
I making a RESTful app with Symfony and FOSRestBundle. FOSRestBundle uses JMS Seriazlizer to serialize data to json format. I have everything working with one little issue.
This is my Entity class
...
0
votes
2answers
21 views
You can avoid this error by setting the “data_class” when use sonata_media_type
I installed Sonata Admin and after install Sonata Media
i have class admin for "colors" and set in configureFormFields
->add('image', 'sonata_media_type', array('required' => false,
...
0
votes
1answer
18 views
Symfony 2.1 - Uncaught PHP Exception Twig_Error_Runtime
I am getting this error when trying to open a route in Symfony 2.1
I realy have no idea where to check that. There is nothing on the internet.
Thank you very much for your help:
CRITICAL - ...
0
votes
1answer
23 views
How to use the cascade option in doctrine2 to have associatied entities automatically persisted?
can someone explain me this:
$user = new User();
/* why do I have to call Entity Comment while trying to insert into db? */
$myFirstComment = new Comment();
$user->addComment($myFirstComment);
...
-1
votes
1answer
32 views
how to call to a controller action from the php template in symfony2
Good morning
As iam new to symfony you have been helping a lot to me i heartfully thank you
In my sucess.html.php
I get the session variable
$var=$app->getSession()->get('id');
//Now iam ...
0
votes
2answers
30 views
I can't install Bootstrap to Symfony2
I'm trying to install bootstrap to my symfony2 project.
I basically followed steps from this: http://bootstrap.braincrafted.com/getting-started
However, when I try to run my server using: php ...
0
votes
1answer
34 views
replace web/app_dev,php is not working in symfony2
Good morning
i created a project where my url is
http:://my ip.address/jobs/web/app_dev.php/login will display my project login page
now i want to replace the url with www.jobs.com which should ...
1
vote
1answer
31 views
Symfony2 - Apply a DataTransformer to a collection in forms
I need to make a Symfony2 Form and add a data transformer to a Collection. I have a StudentType Form that has a hidden field, which will contain a unique student mail. The case use is a course that ...
-1
votes
1answer
19 views
Generate RESTful web service scaffolding in Symfony2?
I see that there is a very useful system for generating CRUD forms from your entities.
I'm working on a component of my app that will be a JSON service. Is there a similar facility for generating ...
0
votes
1answer
24 views
Return JSON based on “Accept: application/json” from a Symfony2 controller
I've got a CRUD form generated via the SensioGeneratorBundle, as described here. This works great.
However, I would like to also return JSON, rather than HTML responses, if the "Accept" HTTP header ...
0
votes
1answer
18 views
How do you define the getter to use in a CRUD form besides defining __toString()?
If you've used Symfony2's generators to create CRUD forms from database entities, you may wind with an error like this on the "create new record" screen:
StringCastException: A "__toString()" method ...
0
votes
1answer
19 views
Return JSON based on “Accept: application/json” from a Symfony2 controller without modifying each controller action
I'm working on an app that I want to offer both JSON and HTML responses. Here's an example action method:
/**
* Lists all Boards entities.
*
* @Route("/", name="boards")
* @Method("GET")
* ...
0
votes
1answer
27 views
FOSUserBundle - Change username validation
I was able to put some validation via @Assert on my custom fields, but now I am wondering how I could change the username validation for the FOSUserBundle? Since this field is generated automatically, ...
0
votes
1answer
34 views
Symfony2 Firewall not preventing access
I think I don't fully understand the concept of firewall and access control of symfony but here's my understanding.
I have FOSUserBundle installed and configured properly.
I created some roles:
...
0
votes
1answer
441 views
Symfony2 / Doctrine2 throwing index error when flushing the entity manager
Three entities are involved here: Deployment, DeploymentStep, and DeploymentStatusLog. I'll start by pasting the relevant definitions of those classes
src/My/Bundle/Entity/Deployment.php
<?php
...
0
votes
1answer
33 views
How to translate Symfony2 security context messages
I have implemented a simple login form without any bundle, but only using the default security coming with Symfony2.
When credentials are incorrect a "Bad credentials" message appears. How can I ...
0
votes
2answers
23 views
Symfony2, Doctrine2, EntityManager disable last actions
We have
foreach ($rwst as $row)
{
$loopData = XmlFunctions::getXmlAttrAsArray($row);
if (!$loopData)
{
return false;
}
$oCharacters = new XmlAccountCharacters();
...
1
vote
2answers
46 views
Symfony2 production; Apache VirtualHost not working
I'm a novice to Symfony2 and MVC frameworks but have some experience with PHP and Apache.
I developed a project on an Apache server on my workstation. I'm trying to deploy my first Symfony2 project ...
0
votes
1answer
16 views
installing aws API on symfony2
I am working on a project under symfony 2.1
We need to install and use AWS API (for using cloud with PHP/CURL).
So I follow these insctructions
I choose composer for installing the SDK ('cause symfony ...


