我正在使用Lamp堆栈。我已经尝试了几个小时将我的phpmyadmin重新连接到我的mysql数据库无济于事。我尝试重新配置并重新安装phpmyadmin,但它拒绝连接。很奇怪它会与localhost / phpmyadmin连接就好了。我不明白为什么它会在几周内发挥作用而且一下子就停止了。
这是错误消息(是的,它看起来像代码):
if (!is_null($route)) {
return $route->bind($request);
}
$others = $this->checkForAlternateVerbs($request);
if (count($others) > 0) {
return $this->getOtherMethodsRoute($request, $others);
}
throw new NotFoundHttpException();
}
protected function checkForAlternateVerbs($request)
我尝试重新配置config.inc.php文件等。没有任何作用。
有什么想法吗?