You are not logged in.
I don't know what am I doing wrong, especially since I don't really know what I'm doing other than following wikis and tutorials but phpmyadmin keeps throwing me this whenever I go to 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);
Running php --version:
PHP 8.2.9 (cli) (built: Aug 1 2023 12:25:51) (NTS)
Copyright (c) The PHP Group
Zend Engine v4.2.9, Copyright (c) Zend Technologies
The only somewhat good resource on this error is from this issue on phpmyadmin GitHub:
https://github.com/phpmyadmin/phpmyadmin/issues/17726
It doesn't really elaborate on how to fix it though other than
I uninstalled mysql database from kali and I'm now using xamp(lampp).
which doesn't really tell me how to fix it.
Last edited by Nika0 (2023-08-07 12:20:49)
Offline
What webserver are you using? apache2, nginx?
How did you configure your PHP interpreter?
Are you using php-fpm or apache's built-in stuff?
Inofficial first vice president of the Rust Evangelism Strike Force
Offline
What webserver are you using? apache2, nginx?
Apache2 I believe.
How did you configure your PHP interpreter?
Are you using php-fpm or apache's built-in stuff?
You lost me here, I'm not all that versed in this kind of thing so could you kindly explain to me how I can figure it out? Thank you.
Offline
sounds like you have 'php' installed but not 'php-fpm' or whatever apache uses (i use nginx so i dont know), luckily the wiki has all the info you need here: https://wiki.archlinux.org/title/Apache_HTTP_Server#PHP
Offline
Apache2 I believe.
Why can't you tell for sure?
How did you install Arch Linux and $WEBSERVER?
Which guides did you follow to set up your webserver?
You lost me here, I'm not all that versed in this kind of thing so could you kindly explain to me how I can figure it out? Thank you.
The answer to this will be implied by answering the questions above.
Inofficial first vice president of the Rust Evangelism Strike Force
Offline
sounds like you have 'php' installed but not 'php-fpm' or whatever apache uses (i use nginx so i dont know), luckily the wiki has all the info you need here: https://wiki.archlinux.org/title/Apache_HTTP_Server#PHP
I'm dumb, that helped a lot and I'm troubleshooting small errors now. I got to log in and everything so thank you and I'm sorry for wasting time for both of you.
Offline