I have just installed PhpMyAdmin v4.1.5 English only
I have set it up to access 2 servers - the local one on my PC and the remote one on my server
All is fine for my local PC but when I log in to my remote server I get the message
Error
MySQL said:
#1273 - Unknown collation: 'utf8mb4_general_ci'
Searching the PhpMyAdmin code finds one reference to this in DatabaseInterface.class.php
if (PMA_MYSQL_INT_VERSION > 50503) {
$default_charset = 'utf8mb4';
$default_collation = 'utf8mb4_general_ci';
} else {
$default_charset = 'utf8';
$default_collation = 'utf8_general_ci';
}
No idea what this is but it seems to be setting the default charset & collation wrongly
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…