We are happy to announce that Vesta is back under active development as of 25 February 2024. We are working on Vesta 2.0 and expect to release it by the end of 2024. Read more about it: https://vestacp.com/docs/vesta-2-development
Percona + MySql + php 7
-
- Posts: 139
- Joined: Thu Jan 07, 2016 12:01 am
Percona + MySql + php 7
So this is generally for phpmyadmin, Ubuntu 16, and Percona.
I found a bug where Phpmyadmin wouldn't allow you to view the users from the Percona server. It'd tell you to run
but this wouldn't fix the issue. So I went web searching. It's actually an issue between Percona and phpmyadmin.
The fix:
find: /usr/share/phpmyadmin/libraries/server_privileges.lib.php
Line: 4576
Needs an addition:
This worked for me, I wanted to share it in case anyone else ran into this issue.
Server version: 5.7.18-15
Apache/2.4.25
Version information: 4.5.4.1deb2ubuntu2 (phpmyadmin)
I found a bug where Phpmyadmin wouldn't allow you to view the users from the Percona server. It'd tell you to run
Code: Select all
root@server: mysql_upgrade
The fix:
find: /usr/share/phpmyadmin/libraries/server_privileges.lib.php
Line: 4576
Code: Select all
if (PMA_Util::getServerType() == 'MySQL'
&& PMA_MYSQL_INT_VERSION >= 50706
) {
$password_column = 'authentication_string';
Code: Select all
if ((PMA_Util::getServerType() == 'MySQL' || PMA_Util::getServerType() == 'Percona Server')
&& PMA_MYSQL_INT_VERSION >= 50706
) {
$password_column = 'authentication_string';
Server version: 5.7.18-15
Apache/2.4.25
Version information: 4.5.4.1deb2ubuntu2 (phpmyadmin)