php - phpmyadmin 5.0.4 does not run setup GUI

one text

Solution:

Followed by this report at PHPMyAdmin GitHub page: this link

You should make some changes to file:

libraries/classes/Controllers/Setup/HomeController.php

as described in the link above and one more change you should make in file:

phpmyadmin/setup/index.php

if you are using PHPMyAdmin 5.0.4. In line 32 as said in the error, surround the $page as the preg_replace() third argument with double quotations.

-$page = preg_replace('/[^a-z]/', '', $page);
+$page = preg_replace('/[^a-z]/', '', "$page");

Worked for me. Thanks.

Source