Closed radumazi closed 6 years ago
I have similar problem in Symfony 3.4.18, any solution? It's quite critical problem for me.
@mwsv did you upgrade to 3.4 or is this a new install?
@davidwdan, thank you for your interest, it was update from 3.3 to 3.4 and ThruwayBundle was installed after that.
I'm not 100% sure, but I suspect it has something to do with the auto loader in your app/console
or bin/console
.
Try replacing:
require __DIR__.'/../app/autoload.php';
require_once __DIR__.'/AppKernel.php';
With:
require __DIR__.'/../vendor/autoload.php';
We dug into this some more and were able to find this issue. We'll have an update shortly.
After upgrading from symfony 3.3 to 3.4 I get his error: _The parameter \"container.buildid\" must be defined.
Followed the stack trace and identified where this happens: In WampKernel.php, function handleRPC, when it tries to setControllerContainerUser() it crashes when trying to get the repository.
Getting the repository results in calling this function
(in the appDevDebugProjectContainer.php) and as you can see the function requires the container.build_id parameter, which is not set at this point
Can I fix this somehow?
Thank you