Tagged Questions
0
votes
0answers
23 views
Doctrine annotation error in production server
I have an error in production server which doesn't occur in my localhost:
AnnotationException: [Semantical Error]
The annotation "@Sensio\Bundle\FrameworkExtraBundle\Configuration\Route" in method ...
0
votes
0answers
33 views
No matching global declaration available for the validation root Symfony
I am trying to implemment doctrine annotations as XML, but i am getting this error:
Element '{http://doctrine-project.org/schemas/orm/doctrine-mapping}doctrine-mapping': No matching global ...
0
votes
1answer
40 views
Symfony 2 server migration error
I have a Symfony 2 project that I have moved to a new server.
When I go to load the new website I get the following error:
PHP Fatal error: Class 'Doctrine\\Common\\Annotations\\AnnotationRegistry' ...
0
votes
1answer
80 views
Symfony + Doctrine + Annotation validation not work in forms
I'm using doctrine annotations in my entities definition to define each variable behavior, i.e.:
@ORM\Column(type="string", length=50, nullable=false)
If I submit the form leaving the field empty, ...
1
vote
1answer
34 views
Symfony2 Doctrine Annotations & UNIQ_ or FK_ customisation
I'm using Symfony2 with Doctrine's Annotations to create references between tables. When creating the table, it looks something like this:
CREATE TABLE `guardian` (
`id` int(11) NOT NULL ...
1
vote
1answer
54 views
Symfony2 : JMSSecurityExtraBundle : #id == user.getId() in @PreAuthorize not working
I try to access a function in a controller securing it by @PreAuthorize annotation (Symfony2 2.1.8) :
When I write :
/*
* @PreAuthorize("hasRole('ROLE_ADMIN') or #id == '5'")
*/
public function ...
0
votes
1answer
199 views
Multiple JoinColumns in Symfony2 using Doctrine annotations?
Here is the problem:
Class Routing with attributes objectId and objectType. objectId is an int, and objectType is a string. The reason for this was to allow the same table to hold data for different ...
2
votes
1answer
416 views
Symfony2 ParamConverter not associated with @Annotation (cache must be cleared after any file change)
I have a Controller that uses Annotations for Route, Method, Template and ParamConverter.
If I make any change to the file (even a whitespace change or comment) on the next page load the following ...
0
votes
1answer
45 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 ...
2
votes
2answers
61 views
Symfony2 HttpKernel Before and after methods in controllers (Kohana Style)
I know that this problem was discussed so many times but I had found some solution and I'm not sure if it is the best and the most efficient approach.
My problem: I'm using fosuserbundle to handle ...
0
votes
2answers
157 views
Symfony2 Doctrine Join Entity
I have a entity with the next join:
class blogComment
{
....
/**
* @ORM\OneToMany(targetEntity="BlogComment", mappedBy="replyTo")
*/
protected $replies;
....
}
Now I get ...
0
votes
3answers
246 views
Symfony2 prePersist not fired when persisting entity
I followed this tutorial: http://symfony.com/doc/current/cookbook/doctrine/file_uploads.html#using-lifecycle-callbacks
However prePersist is not fired (but entity is persisted to database).
...
1
vote
1answer
84 views
Symfony2 / doctrine2 annotation for: either enter both fields or none?
Is there a way of demanding through annotations in Symfony2 or doctrine2: if you have populated field A, then you must also specify field B?
In my case the user can specify a type of cron job they ...
0
votes
1answer
80 views
Symfony2 + Doctrine2: Is it possible to interact with validation annotations within an Entity setter?
I have an Entity which i have decorated using validation annotations like this:
use Symfony\Component\Validator\Constraints as Assert;
class Entity
{
/**
* @Assert\MaxLength(100)
*/
...
0
votes
0answers
34 views
Annotations broken when extending a bundle
I'm just facing a problem, where the annotations i'm using in a bundle will be ignored, as soon as i extend the bundle.
When the project started, we choose annotations to define routings within the ...
0
votes
1answer
295 views
WebTestCase does not autoload @Route annotation
It seams that @Route annotations are not working when doing functional tests with WebTestCase class.
My controller looks like this:
<?php
namespace Foo\ShopBundle\Controller;
use ...
0
votes
0answers
100 views
Symfony2 - Security URL Routes and Annotations
I have a question how do I manage Symfony 2 routes for login. Actually I'm working on a demo website where user has to login to see his name and then logout till now. I have my home page logo/url ...
0
votes
1answer
108 views
Symfony2/Doctrine2 How to move a function from Entity to Repository
I have a function in my Entity (User.php) that counts the unread Alerts for the User:
public function getCountUnreadAlerts()
{
$countUnread = 0;
$alerts = $this->getAlertsReceived();
...
1
vote
2answers
748 views
Setting up MongoDb for Symfony2 using composer
I'm very new to Symfony2, I have followed the guide on the Symfony2 website to install the MongoDb Doctrine bundles using composer (which is also how I installed Symfony2)
...
1
vote
1answer
661 views
Symfony2 Entity Annotation Assert/Callback method not invoked
I've got a problem with Assert/Callback validation. I used this as a sample for my code, but Symfony just ignores the validation function. This is the relevant part of my entity code
namespace ...
1
vote
1answer
173 views
How can i generate a documentation from a php symfony controller based on annotations
I'm currently have a controller that serve a REST API and i'm looking for a lazy way to generate a documentation from my API controller, based on annotations.
Something like
@description = "this ...
2
votes
1answer
730 views
Symfony2.0 validation with Regex
I'm working on a Symfony2.0 form with a text field. I use Annotation to validate the field. The field has the following validation:
* @Assert\MinLength(limit=2, message="At least two characters")
* ...
2
votes
2answers
627 views
symfony2 doctrine annotation [Semantical Error]
I using symfony2 and doctrine and I am getting the following error:
[Semantical Error] The annotation "@Doctrine\ORM\Mapping\RuleId" in property Wibiya\WebsiteBundle\Entity\Rules::$RuleId does not ...
1
vote
2answers
400 views
Custom annotation conflict with @secure from jms/SecurityExtraBundle
I have writted an annotation who throw an AccesDeniedException when the action is not called by an AJAX request (XMLHttpRequest).
It work but when I want to use the @Secure(roles="A") annotation from ...
0
votes
1answer
472 views
Symfony2 and FOS User Bundle - annotations
I've just started to learn the symfony2 framework. Now I'm building my first bundle, a chat bundle. Everything works just fine but there is one thing I can't get a hang of, the foreign key to the user ...
1
vote
1answer
185 views
Can I use annotations for service class in symfony-2.0?
Just to Java Spring Hibernate.
If I want to make service class, can I use annotations like @service?
Do I have to use PHP yml files?
0
votes
1answer
391 views
Symfony: How do I annotate entity properties that are objects to get Doctrine to store a foreign key?
I'm still getting to grips with Symfony and Doctine and I appreciate this might sound overly simple.
I have at present two basic entities: WebSite (having id and canonicalUrl properties) and Job ...
0
votes
1answer
907 views
Symfony2 Routing Annotations and JavaScript
I am using annotations for my routing. In my index.twig template I wrote some JQuery like
$(document).ready(function(){
$('#sortable').NestedSortable(
{
accept: 'sort',
...
1
vote
2answers
442 views
symfony2 form creator based on annotations
I'm working on mechanism that will allow me create forms automatically from class annotations.
For example there is a class called "News" with some custom annotations.
/**
* ...
1
vote
1answer
198 views
Small issue with persist()
I have the following two entities:
<?php
namespace Site\AnnonceBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
use Site\UserBundle\Entity\User;
/**
* Site\AnnonceBundle\Entity\Sujet
*
* ...
3
votes
0answers
705 views
Fatal error in Doctrine\ORM\Proxy\ProxyFactory::getProxy()
Hey I am working on a symfony2 project and trying to create routes using annotations but I am getting an error but when I use to define routes from routes.yml file everything works fine but causing a ...
6
votes
2answers
3k views
Unknown Entity namespace alias in symfony2
Hey I have two bundles in my symfony2 project. one is Bundle and the other one is PatentBundle.
My app/config/route.yml file is
MunichInnovationGroupPatentBundle:
resource: ...
3
votes
2answers
3k views
Symfony2 routing with annotations
I am trying to define my routes using annotations in symfony2. My Bundle name is PatentBundle. But I am getting an error of
No route found for "GET /portfolio/
My app/config/routing.yml
...
1
vote
1answer
2k views
New entities added using Symfony2 many-to-one embedded forms not being saved
This is related to my earlier question about embedded forms. As advised, I switched to a twig template and now everything is displaying as expected and the link to add a new empty form is working ...
0
votes
1answer
1k views
Simple Example of Custom Annotations using Symfony2
I am familiar with the Doctrine Documentation about custom annotations, but I am looking for a simple example.
I would like to create an entry in a audit table using an annotation (user, date, ...
0
votes
2answers
661 views
Switch from bin/vendors to composer.phar : bug with annotation
AnnotationException: [Semantical Error] The annotation "@Doctrine\ORM\Mapping\generatedValue" in property MyNamespace\UserBundle\Entity\User::$id does not exist, or could not be auto-loaded.
Here's ...
1
vote
0answers
76 views
Doctrine relationship conditions
I'm working on a Symfony2 project with an existing database.
In the database there is different statuses, where each status has a type.
E.G
status | type | description
C O ...
3
votes
1answer
344 views
Configurable parameters in Symfony2 entity annotation
I'm trying to create a join across multiple databases (one of them belonging to a legacy application) as described in the Doctrine blog. However, the example suggests hardcoding the name of the ...
1
vote
1answer
792 views
Why Symfony2 form show the default error value notwithstanding the validation?
I'm continuing my study of Symfony2 and new "problems" are found!
Let me describe the problem.
I have a class that construct a form on a Doctrine Entity. It is identical to the registration form ...
1
vote
1answer
1k views
Locale in Routing, Default Language without Parameter
Two month ago I asked, how to realize the routing with language parameter in uri here: Locale in Routing, Default Language also without Parameter
But now, to avoid double content, I want to have the ...
1
vote
1answer
139 views
Which metadata definition format to use with doctrine 2 and symfony 2
I'm starting to use Symfony 2 after some time using Symfony 1.4. I would like to know which metadata format is the easiest and fastest to learn and use.
I know people like to clean their hands when ...
1
vote
1answer
1k views
Doctrine 2.1: Basic annotation mapping
I have tried a couple of different examples I found on forums and even on the official documentation, but just cant seem to understand and make this work.
It's quite simple, yet anything i write does ...
3
votes
1answer
378 views
Symfony2: Where/how I can trigger my own annotation-reader?
I want read custom annotations like @Route for Controllers. I will use it for eventlisteners like this:
/**
* @Event("some.event");
*/
public function onSomeEvent(Event $event) {}
I found out, I ...
0
votes
2answers
1k views
Where to place EventDispatcher in Symfony2 and how to use it with Annotations?
I am starting developing with Symfony2 framework and I like to use the Eventdispatcher. Now I have three questions I could find an answer with google yet.
Where I place the dispatcher so it is ...
16
votes
4answers
1k views
Symfony2 bundle inheritance losing parent bundles routes
I am trying to create a simple bundle inheritance as instructed in here and ran into a problem with routes. I'm using annotations for routing. When I register my child bundle in AppKernel.php all my ...
2
votes
1answer
1k views
Symfony2 & Annotations & Choices Validation: How to store and retrieve choices options?
I have a dynamic list of choices to display in a form and I just want to maintain them in one place, as these are not the only datasets I have to care for.
To validate those choices in the Entity ...
2
votes
2answers
264 views
Violation of Symfony2 routing requirement does not lead to a response with the correct content type
I'm currently writing a REST service within a Symfony2 application. This is (roughly) how one of my controllers look like:
/**
* @Route("/account", defaults={"_format" = "json"})
*/
class ...
0
votes
1answer
1k views
Locale in Routing, Default Language also without Parameter
I wand to define the page language via url on a Symfony2 installation. My routing works via annotation inside the controller.
routing.yml
_index:
resource: ...
0
votes
1answer
275 views
Symfony2 error message in the input field
I would like to display error message in the field it is for. I know how to put the error message into the field, but I want to find a dynamic way to check after re-submittion, if the inserted value ...
0
votes
1answer
347 views
Doctrine2 Mapping Problems on a Symfony2 Project
I have 2 entities Item and Itemimage. The relationship between Item to Itemimage is OneToMany Unidirectional with JoinColumn. I took help from doctrine documentation. The OneToMany unidirectional with ...


