Tagged Questions
0
votes
1answer
23 views
StofDoctrineExtensionsBundle not found in AppKernel
I'm using Symfony2 v2.1.9 and I'm facing a problem while installing StofDoctrineExtensionBundle
PHP Fatal error: Class 'Stof\DoctrineExtensionsBundle\StofDoctrineExtensionsBundle' not found in ...
0
votes
3answers
24 views
composer.json fails to resolve installable set of package
i can't install stof/doctrine-extensions-bundle with my composer.i 'm using Symfony2.1.9 version.a lot of problems are shown.the first one is:the requested package stof/doctrine-extensions-bundle ...
2
votes
2answers
23 views
Symfony2: How can I change the value of a variable of a parent render?
I hope someone can help me with this topic.
I have two controller in a Symfony 2 structure, the second one override the first.
Here the code of the parent controller:
<?php
namespace ...
1
vote
1answer
23 views
How to append the value to the url in symfony2
I have a users list page where admin can delete a user.i have a controller when user click on delete button the respective id is passed through the url and my url looks deleteuser?id=2
like this.Now ...
0
votes
0answers
25 views
Symfony2 user no active message at login
My User entity extends the AdvancedUserInterface so I have the option to disable a user for the login.
Now when I login with an inactive user, I don't get any message. If I login with an active user ...
0
votes
0answers
19 views
Symfony2 Jobeet tutorial day 3 error invalid mapping
When I generate bundle entities with code
php app/console doctrine:generate:entities EnsJobeetBundle
I'm getting this error
[Doctrine\Common\Persistence\Mapping\MappingException]
Invalid ...
0
votes
0answers
11 views
symfony basic http authentication: credentials rejected
I'm using Symfony 2.1 and I'm trying to set up a secured area. I used the exact same security.yml as found in the documentation at ...
0
votes
0answers
23 views
How to extend the Symfony2 Debug Toolbar with custom data?
I want to extend the Symfony2 Debug Toolbar with my own custom data.
I have a service where I want to log specific method calls and then display them in the web debug toolbar.
I read the cookbook ...
0
votes
0answers
11 views
Access routing options in kernel listener
I build a kernel listener some time ago, to redirect a user to a certain language.
There are several pages, that do not have a translation and where the user should not be redirected. As i use ...
0
votes
0answers
22 views
Symfony2 rewrite rules .htaccess for images
I try using .htaccess in my project it's loading the css and js files in dev ent but the url's to images in css not. This is my. In prod env the css/js/img files aren't loading htaccess code.
...
0
votes
0answers
48 views
SonataAdminBundle without intl extension
I'm having problems with SonataAdminBundle when editing or creating:
The Symfony\Component\Locale\Stub\StubNumberFormatter::getSymbol() is
not implemented. Please install the 'intl' extension ...
-1
votes
0answers
40 views
How to use adminGenerator bundle?
Hi i'm new to symfony and i'm using symfony 2.1.7, i followed the installation's steps from here ...
0
votes
1answer
36 views
Upload Image file using Symfony2 without guessers?
I am using Symfony2 framework for one of my project. In this one, I want to upload an image. This is really easy to do so while following the Symfony2's cookbook. It works very well on my local ...
0
votes
0answers
26 views
Symfony2 Entity was not found - FIle Upload in a relationship
I have a Entity that have a ManyToOne with a File Entity.
My problem is when I try to delete.
This is how I create:
/**
* Creates a new Catalogo entity.
*
* @Route("/create", ...
0
votes
1answer
31 views
Notice: Undefined index Repository Symfony2
I hope to get Id from table User using repository in my action :
$user = $this->getDoctrine()->getRepository('AppMyBundle:User')
->findByUsername($token['name']);
$id = $user['id']; ...
0
votes
3answers
60 views
Retrieve the Data in Tree structure in php
Currently i am working on creating apis in symfony2.2 framework.
I have to retrieve a bunch of questions and answers from the database.
Q1
...
0
votes
1answer
26 views
Why merged entities are updated on insert?
When inserting an entity, let say article:
Article::id
Article::text
Article::author -> User
The article has an author (ManyToOne)
User::id
User::name
User::created
if I fetch the user in the ...
0
votes
1answer
12 views
In symfony2 is there a single variable or methode like 'hasError' to check if a form returns any errors?
In Symfony you can link validation to both a field or an input so errors are the returned in form.vars.error and form.fielName.vars.errors
In a template I had to do all these checks just to fuigure ...
0
votes
1answer
27 views
Symfony2 - Authentication login… service
I had this application (running already on prod) for a while. The thing is that as a new project for this application I need to add a couple of rest services for authenticated users.
Currently the ...
0
votes
0answers
9 views
Save data in database using FOSTwitterBundle
I spend almost two days to just install correctly this bundle,now the authenfication works but I can't save information of User logged in database, can someone tell me how i debug method of ...
0
votes
1answer
24 views
FOSTwitterBundle error
I installed FOSTwitterBundle using this tutorial here ,but I have an issue about how to save informations in my database of every user logged using his twitter account ?
Edit :
now I have this error ...
0
votes
0answers
27 views
symfony2 field collection of files removing previous files
I have a form that has a field collection to attach one or more photos to post.
In the register form everything seems fine, but when i add more photos in the update form the framework replaces the ...
1
vote
1answer
45 views
Dynamic filter with liipImagineBundle
I'm using liipImagineBundle and am trying to apply a filter directly into a controller.
In the doc I found two sections in which explains how to use liipImagineBundle from the controller. This one ...
-1
votes
1answer
30 views
DQL Doctrine query translation
I have my scores table where I have multiple scores for 1 user. What I am trying to do is to select all highest scores for each user.
I am trying to do the fallowing in Doctrine DQL:
SELECT ...
0
votes
1answer
45 views
How to functional test against web services requiring POST data in symfony2?
I have designed a symfony web application that provides restful web services. I would like to write a battery of functional tests that would test these web services that return JSON data.
I am ...
0
votes
1answer
28 views
How can you extend a Symfony2 service defined with the JMS Di Extra @Service annotation?
Say I have a FormType in a re-usable bundle like so:
/**
* @Service("acme_core_purchase.form.add_to_basket")
* @FormType
*/
class AddToBasketType extends AbstractType
{}
In my controller I ...
0
votes
1answer
69 views
Doctrine query building select MAX
I would like to select everything + MAX value and receive only rows having max values.
$query = $this->createQueryBuilder('s');
$query->where('s.challenge = ...
3
votes
2answers
74 views
Symfony2 passing associative array as argument in service definition issue
I am trying to pass an associative array as argument to a service definition (Solarium, to be precise). However, I get the following error:
"Catchable Fatal Error: Argument 1 passed to ...
0
votes
0answers
35 views
Nested concrete and prototype nodes in Symfony configuration
Using Symfony 2.1+ I'm trying to define a configuration tree that has a section of nested known and unknown keys. In the example below the unknown? blocks can have any parameters they want (and i ...
0
votes
2answers
52 views
Doctrine Timestampable extension not persisting
I have Doctrine timestampable set for my symfony doctrine and other entities are handling this as they should but one is not not setting any date at all.
use Doctrine\ORM\Mapping as ORM;
use ...
0
votes
1answer
61 views
How to access multiple environments in Symfony without editing htaccess?
Symfony seems to provide an easy way to have different development setups and comes in with production and development environment templates by default - ones that can be accessed by accessing app.php ...
1
vote
0answers
47 views
Create internal messaging system, I start from scratch or I rely on a bundle?
I have to implement a feature in my application page in the frontend of the site where users can submit requests, with different data name, phone number, email, description request ..
and this ...
3
votes
1answer
101 views
app/console assets:install to S3 using stream wrapper errors
I have a stream wrapper configured to work with amazon s3 using the Gaufrette bundle to manage the filesystem. I can successfully dump assets using assetic and my current configuration is as follows:
...
1
vote
1answer
49 views
Symfony2: creating a new SecurityIdentity
I'm using ACL in Symfony 2.1, and I need to create a new SecurityIdentity, so that my ACL can be set in function of some sort of groups.
Picture the following situation: there are groups with users ...
2
votes
3answers
133 views
Stopping Symfony 2 configuration processor from adding an empty array?
With the following configuration tree:
$rootNode
->fixXmlConfig('parameter')
->children()
->arrayNode('parameters')
->useAttributeAsKey('name')
...
0
votes
1answer
23 views
Swift Emailer rare behaviour
I have an application developed in Symfony 2. I have a contact form in a bundle that send me a email. It works with this code.
$message = \Swift_Message::newInstance()
->setSubject('Nueva consulta ...
1
vote
0answers
36 views
preRemove never gets called as a doctrine event listener
I have an event subscriber, however the preRemove function is never getting called, but other event's are called. Is there anything that I did wrong?
class DocumentSubscriber implements ...
0
votes
2answers
44 views
accessing a service from an entity
I have the following code that I put inside an entity class:
$filesystem = $this->container->get('knp_gaufrette.filesystem_map')->get('amazon');
$filesystem->write($this->file , ...
0
votes
1answer
67 views
Create form/s depending child entities in symfony 2.1
I am newbie in Symfony. Now I am creating forms for one entity but I need to create any forms to edit child entities.
For example, If I have contact entity and phone_numbers as a child entity in this ...
0
votes
1answer
84 views
Doctrine2 not update DateTime
EDIT2
Thanks to @Ocramius I resolve the issue!
doctrine2-orm-does-not-save-changes-to-a-datetime-field
I think I have found a bug which I can not find solution ..
I try to update the datetime ...
0
votes
1answer
51 views
multiple form in symfony2
I have a form for adding comments, and i want to know how can i multiply this form on the same page.
I tried this code but it does not work :
{% for statut in statuts %}
<div>
{{ ...
0
votes
1answer
34 views
Default attributes from custom field type does not show up in HTML
I'm trying to implement an Facebook style autocomplete field using a custom form type. The JavaScript widget depends on a class name so I added it to the attr key in the custom form type class as I ...
0
votes
1answer
57 views
What symphony2 bundle is better for Neo4j integration?
https://github.com/klaussilveira/neo4j-ogm-bundle
https://github.com/jadell/neo4jphp
I am looking for more stable/ more active and wanted to see if you any one had experience with either one of ...
2
votes
1answer
65 views
Showing required roles in a Symfony 2.1 403 forbidden page
I have a Symfony 2.1 application that has various access controlled areas. My set up includes an administrative area for users to manage their accounts, another area for company admin users to manage ...
-3
votes
1answer
59 views
How to create basic symfony signup and login form [closed]
How to create basic symfony signup and login form.
I have UserBundle and added user table with required fields and created Entity/User.php
Please solve following problems:
how to encrypt password ...
0
votes
0answers
22 views
when i will importing kitpages cms shop db using “php app/console kitCmsDemo:importDatabase”
I have install Kitpages CMS shop bundle, when i will importing database from terminal using "" command, given following error :
[ErrorException]: ...
9
votes
2answers
166 views
Making configuration node support both string and array in Symfony 2 configuration?
Can my configuration node source support both string and array values?
Sourcing from string:
# Valid configuration 1
my_bundle:
source: %kernel.root_dir%/../Resources/config/source.json
...
0
votes
0answers
98 views
PHP and Symfony object to array conversion by type cast
I'm using symfony2 and createForm to get the http post data. After witch I do:
$Data = (array) $form->getData();
And I get:
array (size=1)
'�Far\MT\AccountBundle\Entity\Movement�toAccount' ...
0
votes
0answers
60 views
Object is saved without calling persist on it - postBind event
In my application, I allow users to create what can be called "extra fields" for some entities. In order to make them appear when the form is rendered, I created a form subscriber and in the ...
0
votes
1answer
333 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 ...
