-
-
Notifications
You must be signed in to change notification settings - Fork 9.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[3.4] Cannot redeclare class Symfony\Bundle\FrameworkBundle\Controller\ControllerNameParser #25334
Comments
His 1st way is ok for me, i can refresh without error. |
I think you need to remove this line from app*.php: |
Try also removing L12 btw (loadClassCache) |
@nicolas-grekas That's indeed the second solution he found. However, I'm wondering why it happens and if it's a good idea to release standard code for Symfony that provoke this issue. I don't know the caching mechanism in details, but I guess there's an impact on performance for both solutions (disabling the inline dumper or the loadCacheClass) ? I was also thinking that these code lines in app(_dev).php are not at all documented, and it might make sense to comment them (especially if they can or should be removed under certain circumstances). WDYT ? |
Alternatively, can you try to turn container.dumper.inline_class_loader to false? and then to remove it? |
So are those 2 settings (loadClassCache and inline_class_loader) incompat? Is there something that needs fixing or not? |
There are incompatible, but that should be already handled: dunno what's missing - maybe a PHP version check also, adding @gnutix some more debugging hints would help (also trying this additional check please) |
Setting
along with |
This PR was merged into the 3.4 branch. Discussion ---------- [HttpKernel] Disable inlining on PHP 5 | Q | A | ------------- | --- | Branch? | 3.4 | Bug fix? | yes | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | #25334 | License | MIT | Doc PR | - Commits ------- 950fd99 [HttpKernel] Disable inlining on PHP 5
Thanks Nicolas for the fix. So the idea is that the AppKernel.php codes enables it, and behind the scene it's disabled for PHP < 7. Guess that's alright for such a "not-well-know" optimization parameter, but still I find it a bit strange. We do have PHP 7 conditions in app.php/app_dev.php so it's explicit. Why not in AppKernel too ? |
Thx for the fix @nicolas-grekas. We just crashed the all Meetic website due to this error. :-) I guess we will wait for the 4.4.2 to be release before upgrading to sf 3.4. |
@seblegall You mean 3.4.2, right? 😄 |
Yeah, of course. ;-) |
Right after installing a |
You can upgrade to symfony3.4.2 and resolve the problem |
I just removed the files in var/cache/prod and var/cache/dev inside the project folder. It worked for me |
We're currently upgrading a Symfony project to 3.4 on PHP 5.6.25 and my colleague has been having this issue since I've added the following block of code to our
AppKernel::registerContainerConfiguration
method:It only happened on a second request, and often it had to be a different request, not just the same one (aka refresh didn’t cause it).
He found two ways to make it work :
$container->setParameter('container.dumper.inline_class_loader', true);
, or$kernel->loadClassCache();
inapp_dev.php
I personally can't reproduce the issue on my setup. Any idea what might be happening here ?
Also, it might look like we're not the only ones : https://stackoverflow.com/questions/47617879/symfony-duplicate-class-definition-in-cache
Thanks for your help.
gnutix
The text was updated successfully, but these errors were encountered: