phpMyAdmin无法在macos Ventura上识别php版本8.2.4

ql3eal8s  于 2023-03-28  发布在  PHP
关注(0)|答案(1)|浏览(275)

我用自制软件安装了phpmyadmin。我按照自制软件网站上列出的所有说明操作。当我打开localhost://phpmyadmin时,出现以下错误

PHP 7.2.5+ is required.

Currently installed version is: ' . PHP_VERSION . '
'); } // phpcs:disable PSR1.Files.SideEffects define('PHPMYADMIN', true); // phpcs:enable require_once ROOT_PATH . 'libraries/constants.php'; /** * Activate autoloader */ if (! @is_readable(AUTOLOAD_FILE)) { die( '

File ' . AUTOLOAD_FILE . ' missing or not readable.
' . '

Most likely you did not run Composer to ' . '' . 'install library files.
> require AUTOLOAD_FILE; global $route, $containerBuilder, $request; Common::run(); $dispatcher = Routing::getDispatcher(); Routing::callControllerForRoute($request, $route, $dispatcher, $containerBuilder);

我也尝试从phpmyadmin网站下载文件,但它仍然不工作.

dgtucam1

dgtucam11#

这是因为你的php版本与phpmyadmin的最低要求的php版本不兼容。
要解决这个问题,你可以做两件不同的事情:
1.升级你的php版本到7.2.5以后。
1.卸载phpmyadmin并安装旧版本。

相关问题