Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error: Unknown named parameter $$dbi in Phpmyadmin 5.2.1

Tags:

phpmyadmin

I have update my phpmyadmin up to 5.2.1 over SSH. The update returns no errors and was ended successfully. I have tried to Login and next to the Login shows me only the error: Error: Unknown named parameter $$dbi. I have found no solution for this Problem and hope I can find help.

thanks in advance!

like image 574
Technofox Avatar asked Jul 08 '26 16:07

Technofox


1 Answers

Edit the file

php/Symfony/Component/DependencyInjection/ContainerBuilder.php

Change this line

$service = null === $r->getConstructor() ? $r->newInstance() : $r->newInstanceArgs($arguments);

To look as follows:

$service = null === $r->getConstructor() ? $r->newInstance() : $r->newInstanceArgs(array_values($arguments));

like image 175
yaksh Soni Avatar answered Jul 11 '26 17:07

yaksh Soni



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!