Ubuntu 22.04升級導致phpMyAdmin失效的原因是什麼?
P粉763748806
2023-08-24 22:00:37
<p>剛剛升級到Ubuntu 22.04,現在我的phpadmin無法載入。我得到以下錯誤</p>
<blockquote>
<p>解析錯誤:語法錯誤,意外的 'static' (T_STATIC) 在 /usr/share/php/Symfony/Component/DependencyInjection/ContainerBuilder.php 的第272行</p>
</blockquote>
<p>我打開了該文件,並在該段落中找到了具體的程式碼。 </p>
<pre class="brush:php;toolbar:false;">public function addResource(ResourceInterface $resource): static
{
if (!$this->trackResources) {
return $this;
}
if ($resource instanceof GlobResource && $this->inVendors($resource->getPrefix())) {
return $this;
}
$this->resources[(string) $resource] = $resource;
return $this;
}</pre>
<p>在升級之前,昨天一切都正常工作。有人有建議嗎? </p>
我正在使用php7.4.30,我的解決方法是升級phpmyadmin。
這裡有一個簡單的指南:
https://devanswers.co/manually-upgrade-phpmyadmin/
#