0
votes
1answer
22 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
26 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
25 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 ...
0
votes
1answer
36 views

Doctrine2 :one-to-many relation;

i have 2 entity with one-to-many relation : Article & ArticleCategory class Article { /** * @var integer * * @ORM\Column(name="rate", type="integer",options={"default" : 0}) */ private $rate ...
-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
0answers
54 views

Doctrine distinct createQueryBuilder

I am trying to select MAX scores objects for unique user(s). So user should be distinct and i should receive max score for a user (order), and I need to get other object values like dataAdded for ...
0
votes
1answer
26 views

Symfony2 + doctrine2 table relation design

I'm using Symfony2 with doctrine2 and I need to design table relation with yml file. The tables are: users, account and roles where users can be members of many accounts and have there different role. ...
0
votes
1answer
68 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 = ...
2
votes
0answers
42 views

Doctrine multiple OneToMany/ManyToOne bidirectional Integrity constraint violation

In latest Doctrine on Symfony2 trying to work out multiple bidirectional relationship between two objects. Person owner object has one postal Address and then multiple secondary Addresses in a ...
0
votes
2answers
48 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 ...
3
votes
2answers
94 views

Doctrine 2.3 - text field is not saved because of special characters

I've spent hours to debug an algo and noticed it was coming from Doctrine (v2.3.3). I'm using libpuzzle to calculate a hash of an image and store this hash in the database. The hash returned has ...
0
votes
1answer
80 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
0answers
58 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 ...
1
vote
0answers
138 views

Symfony 2.1 error: import @ORM\Table in repository

I am upgrading an application from Symfony 2.0 to Symfony 2.1, I followed this upgrade file and all works fine except that after a cache:clear I get an error when using some repositories. Here is the ...
1
vote
1answer
53 views

Error when generating a doctrine 2 entity

I have already created entities initiall on my projects creationy and now have a table i would like to automap a single entity for. i ran: php app/console doctrine:mapping:convert xml ...
0
votes
0answers
27 views

update records in DB with minmum time in Symfony 2.1

I have scenario where I have to update multiple records for small changes in one record to maintain order. say,I have table: table1 Id item rank badge ------------------ 1 1 1 1 2 2 2 ...
1
vote
2answers
41 views

Querying for dates in doctrine

I have a table called active_plans in which there are two columns: activated_date and last_billed_at. Basically, I want to create a query that looks at these two columns like this: select all from ...
0
votes
1answer
40 views

Select all records on entity with associated key

I have two Entities, Plan and PricingTier. The Plan maps to my plans table and has a column called pricing_tier_id. This maps to the PricingTiers table via its id column. The Entities have a ...
0
votes
1answer
177 views

Symfony2.1 entity field type multiple expanded not saving

I'm having some trouble with bi-directional relations (one-to-many) when using the entity field type in Symfony 2.1. When creating the child (Product) and selecting the parent (Category), everything ...
1
vote
3answers
79 views

add more conditions for query builder in ManyToMany

i have relationships (ManyToMany) in symfony2: Item <-> Category Database: Item: ID NAME Category ID NAME SLUG Item Category: id item_id category_id I'm trying to find all the items that are ...
0
votes
1answer
252 views

Doctrine fixtures not working after updating to Symfony 2.1.8

After updating a project from Symfony 2.0.22 to 2.1.8 I get this error when executing doctrine:fixtures:load via Terminal Fatal error: Class 'Doctrine\Common\DataFixtures\Loader' not found in ...
0
votes
1answer
65 views

Doctrine query syntax error

I have a value in database like stackover/'!@#/\;"""'.;\';'./ with all special char. Now my problem is that how can I build a query like: $linkName= // getting from db $sql_sm="SELECT d FROM ...
0
votes
1answer
98 views

doctrine2 findby two columns OR condition

My action: $matches_request = $em->getRepository('Bundle:ChanceMatch')->findByRequestUser(1); $matches_reply = $em->getRepository('Bundle:ChanceMatch')->findByReplyUser(1); Is it ...
0
votes
1answer
57 views

Creating a new entity, and updating another at once

I've searched a lot about this, and seriously asking is my last resource, doctrine is kicking me hard. I have an entity named "Contract" and another "Request", a Contract may have several Requests, ...
1
vote
1answer
129 views

Symfony2 ManyToMany multiple field form collection

Is there a way to save correctly in a relationship ManyToMany field entities in a form that is "multiple" and is part of a collection? I looked everywhere but could not find a shred of example to make ...
1
vote
1answer
100 views

Doctrine - Break query cache when entity is modified (second-level cache)

I'm using doctrine 2 without caching anything at the moment. I'd like to enable some caching system within Doctrine but it looks like you have to manage it manually everywhere: $memcache = new ...
1
vote
1answer
171 views

symfony2 : unable to save parent id in embedded object

I'm trying tu use my first embedded form (SF2.1 + Doctrine2) the entities : <?php namespace Chris\BabelBundle\Entity; use Doctrine\ORM\Mapping as ORM; use Symfony\Component\Validator\Constraints ...
1
vote
1answer
90 views

Convert Doctrine Query to QueryBuilder object for add conditions

I have a Doctrine Query object returned by a service. Then I need to add some "wheres, order by and Limit" parts. Is posible convert a QUery Object to QueryBuilder Object? How I do it?
0
votes
2answers
480 views

Symfony2 Select one column in doctrine

I'm trying to refine the query trying to select fewer possible values ​​.. For example I have an entity "Anagrafic" that contains your name, address, city, etc., and a form where I want to change only ...
0
votes
2answers
398 views

Symfony2 Expected argument of type “object or array”, “string” given

I'm trying desperately to save the form with entity City OneToMany Anagrafic. I entered the "property_path" CityType the form and I returned error, Expected argument of type “object or array”, ...
0
votes
1answer
32 views

How do I separate the results

I have the following query on Doctrine QueryBuilder: $qb = $this->createQueryBuilder('e') ->select('e.id, e.name, e.body, e.teaser, e.slug, e.dateBegin, e.dateEnd, e.dateTbd, v.name ...
0
votes
1answer
56 views

Symfony2 app not works after cache clear

I'm deploying a Symfony2 app in CentOS server with Cpanel. First time that I execute the app runs well, but the problem comes When I do cache clear, then app not works more, and put this error. ...
0
votes
1answer
422 views

symfony2 is not a valid entity or mapped super class

I have a symfony2 app, in my local pc with ubuntu and works well, but in server with CentOS and Cpanel not works, I obtained this error: Class "Propa\PageBundle\Entity\Page" is not a valid entity ...
0
votes
0answers
42 views

Symfony2 : calling many external scripts to update entities

I am using symfony2.1, with doctrine2 and some bundles (SonataAdmin for backend) I have a php function that i call in the SonataAdminBundle on all my entities. This function call a java program to ...
0
votes
0answers
67 views

Add relationship One-to-Many Or Many-to-one in Model in Symfony 2.1

How to add relationship One-to-Many Or Many-to-one in Model? OR should we do it in Entity? Is it possible? Lets say relationship or foreign key constraint between share and sharePhoto(One-to-Many OR ...
0
votes
2answers
171 views

How to fix Symfony2 SonataAdminBundle undefined index _per_page ?

I just upgraded my symfony2.1.6 to Symfony2.1.7 and bumped in to this issue. Please let me know I can provide more details. It was fine with 2.1.6 but does not seem to work in 2.1.7. This error comes ...
0
votes
1answer
143 views

Entity Class doesn't extends base Class properly in Symfony 2.1 and Doctrine

I created separate generalBundle which has Model and Entity.My storeBundle extends that bundles entity.But app/console doctrine:schema:update --force command does not create generalBundle fields.It ...
0
votes
1answer
257 views

Doctrine2: Many-To-Many with extra columns in reference table (add record)

Spoiler: I think I found the answer but I'm not 100% sure ;) I've been looking at this question for a while but I cannot manage to make it work. So I've create dummies Entities to test the relation ...
0
votes
2answers
50 views

Doctrine2 - is there a pre-selection hook?

I'm developing a ws with Symfony2 / Doctrine2, and I'm trying to hook into Doctrine2 lifecycle and trigger a function before any SELECT action - but without any luck. Basically, i'd like to ...
0
votes
1answer
43 views

How to use custom annotations with config parameters?

I'm using Symfony2.1 for my website. This website is about a voting system to elect some artists and there is different stages in this voting system. For example, in the first stage users can register ...
0
votes
1answer
88 views

Convert sql query to Doctrine2 query using CreateQuery

I have the following mysql query SELECT * FROM ( SELECT CASE WHEN t2.user1=1 THEN t2.user2 ELSE t2.user1 END AS userId FROM t AS t2 WHERE 1 IN (t2.user1,t2.user2) ...
0
votes
1answer
155 views

Symfony2 __toString() error

I have a problem with saving entities back to me this error: Catchable Fatal Error: Method My\BusinessBundle\Entity\Type::__toString() must return a string value in ...
0
votes
0answers
46 views

Is it possible to get One-To-Many related table records as separate records in Doctrine?

I don't know whether I'm expecting more from Doctrine.Let me explain what I want.Same procedure like friends activities in social networking sites. I want result like user3 shared User1 photo via ...
2
votes
1answer
154 views

Symfony2 detach entity with ManyToOne association

Background: In my application I have an entity that has a self referencing ManyToOne association (many children can point to a single parent). And I have a feature that does mass updates on many ...
0
votes
1answer
113 views

embed one form into another symfony2

I have two entity forms called 'Orders' and 'Address'. I want to embed Address form into orders form. Bothe entities are having relation by user column. Address Entity class Address { /** ...
0
votes
0answers
152 views

FOSOAuthServerBundle: OAuth2 Resource Owner Password Credentials Grant flow

I'm using FOSOAuthServerBundle in a Symfony2.1 project (using Doctrine) and I'd like to implement to use Resource Owner Password Credentials Grant flow. I read the good article written by Burak ...
2
votes
2answers
102 views

Symfony2 and Doctrine: how to fetch two different object for the same id?

I have this scenario: Object A have some reference to other objects B,C,D Object B have some reference to other objects A,F,G Object C have some reference to other objects A,... And so on. In my ...
0
votes
2answers
38 views

disable output from symfony2 command

I'm writing some unit tests and need to call some commands in the unit test in order to create a test database. However, when I call the command it's dumping the notices to the screen. Is there a ...
0
votes
1answer
185 views

Implementing a friends list in Symfony2.1 with Doctrine

I want to implement friends list of particular user in Symfony2.1 and Doctrine. Lets say friends table: User1 User2 Status //0-pending request,1-accepted A B 0 A C 1 D A ...
0
votes
1answer
166 views

Call to undefined method Doctrine\Bundle\DoctrineBundle\Registry::persist()

I recently upgraded one of my projects from Symfony 2.0.x to 2.1.x Everything works fine, but when I try to persist an entity in a service, PHP throws an error: Call to undefined method ...

1 2 3