Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9155705
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T12:38:39+00:00 2026-06-17T12:38:39+00:00

Well, I don’t know what to do to fix a bug in my project.

  • 0

Well, I don’t know what to do to fix a bug in my project.

I’m trying to handle a nested form with a many-to-many-with-attribute relationship.
The errors says it cannot create the association because an ID is required for one of the side.

Alright. So I tried to create just the missing side.
But still the same error.

Finally, I realized that I had still the same problem with this simple code :

public function onSuccess(Page $page)
{   
    $this->em->flush();
}

I would appreciate to have an error message such as “hey, there’s nothing to flush!”
But no, still the same error : I have to create the object (and its id) prior to associate it.

I had a look to the stack trace. And yes, it seems that UnitOfWork ->computeAssociationChanges is called after the flush, and requires Ids for associated objects.

How can I create the objects in the database if the flush command generates a bug ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T12:38:40+00:00Added an answer on June 17, 2026 at 12:38 pm

    Problem was due to a maj misspell in an entity class.
    I found it by checking the schema structure, using an add-on to Symfony:

    <?php
    namespace Lp\LibBundle\Command;
    
    use Symfony\Component\Console\Input\InputOption;
    use Symfony\Component\Console\Input\InputInterface;
    use Symfony\Component\Console\Output\OutputInterface;
    use Symfony\Bundle\DoctrineBundle\Command\Proxy\DoctrineCommandHelper;
    use Doctrine\ORM\Tools\Console\Command\ValidateSchemaCommand;
    
    class MyValidateSchemaCommand extends ValidateSchemaCommand
    {
    
    /**
     * (non-PHPdoc)
     * @see Tools/Console/Command/Doctrine\ORM\Tools\Console\Command.ValidateSchemaCommand::configure()
     * 
     * Modifies name of the command to be in Doctrine namespace
     * Adds the Helper em for the entity manager which is not defined in Doctrine class 
     * @author ulrich, 09/09/11
     */
    protected function configure()
    {
        parent::configure();
        $this->setName('doctrine:orm:validate-schema');
        $this->addOption('em', null, InputOption::VALUE_OPTIONAL, 'The entity manager to use for this command');
    }
    
    /**
     * (non-PHPdoc)
     * @see Tools/Console/Command/Doctrine\ORM\Tools\Console\Command.ValidateSchemaCommand::execute()
     * 
     * Ajoute le Helper em pour l'entity manager qui n'est pas définis dans la class Doctrine
     * @author ulrich, 09/09/11
     */
    protected function execute(InputInterface $input, OutputInterface $output)
    {
        DoctrineCommandHelper::setApplicationEntityManager($this->getApplication(), $input->getOption('em'));
    
                return parent::execute($input, $output);
    }
    

    Source: Ulrich

    This allowed to use this command instruction to detect the entity misspell.

    > php app/console doctrine:orm:validate-schema
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I don't understand MEF very well, so hopefully this is a simple fix of
I don't know MySQL very well so I need a bit of help with
Well i need some help here i don't know how to solve this problem.
Well. I don't really know if what I want is possible by the way
I don't know if this is a well known 'thing' or something new in
Well, I don't know if I'm completely wrong, but I really can't find a
Well, I don't know if strong naming is the right term, but what I
Well I don't know if the title for this question is appropriate or not,
Hey, well I don't really know how to describe this but here's my current
Well I don't know correct word for this so I wrote three of them,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.