Issue with phpmyadmin version

By the way i have an issue with phpmyadmin being so far behind is their some specific reason?

There’s a module on NethForge from @stephdl that configures PHPMyAdmin on ns6: is it your case?

The biggest issue is my database files are some funky utf8mb4; weird extension and phpmyadmin is too far out of date I am running on centos 6 maybe i am not running a current version of your software…

System version
NethServer release 6.8 (Final)
Kernel release
2.6.32-642.el6.x86_64

CREATE TABLE wp_bp_activity (

id BIGINT( 20 ) NOT NULL AUTO_INCREMENT ,
user_id BIGINT( 20 ) NOT NULL ,
component VARCHAR( 75 ) NOT NULL ,
type VARCHAR( 75 ) NOT NULL ,
action TEXT NOT NULL ,
content LONGTEXT NOT NULL ,
primary_link TEXT NOT NULL ,
item_id BIGINT( 20 ) NOT NULL ,
secondary_item_id BIGINT( 20 ) DEFAULT NULL ,
date_recorded DATETIME NOT NULL ,
hide_sitewide TINYINT( 1 ) DEFAULT ‘0’,
mptt_left INT( 11 ) NOT NULL DEFAULT ‘0’,
mptt_right INT( 11 ) NOT NULL DEFAULT ‘0’,
is_spam TINYINT( 1 ) NOT NULL DEFAULT ‘0’,
PRIMARY KEY ( id ) ,
KEY date_recorded ( date_recorded ) ,
KEY user_id ( user_id ) ,
KEY item_id ( item_id ) ,
KEY secondary_item_id ( secondary_item_id ) ,
KEY component ( component ) ,
KEY type ( type ) ,
KEY mptt_left ( mptt_left ) ,
KEY mptt_right ( mptt_right ) ,
KEY hide_sitewide ( hide_sitewide ) ,
KEY is_spam ( is_spam )
) ENGINE = INNODB AUTO_INCREMENT =2 DEFAULT CHARSET = utf8mb4;

The latest version of phpmyadmin is only for php55 and mysql55 if i recall well. You cannot use it easily on el6

3 Likes