0

For some reason I can't launch pHp myadmin from XAMPP, I've tried different versions uninstalling and re installing wont launch. Give me the following error..

Error

SQL query: Edit Edit

SET CHARACTER SET 'utf8mb4';

MySQL said: Documentation

#1115 - Unknown character set: 'utf8mb4' 

Any idea? Cheers

John Conde
  • 217,595
  • 99
  • 455
  • 496
  • 2
    possible duplicate of [ERROR 1115 (42000) : Unknown character set: 'utf8mb4' in mysql](http://stackoverflow.com/questions/21911733/error-1115-42000-unknown-character-set-utf8mb4-in-mysql) – Shiva Jul 09 '14 at 12:44
  • Is this the phpMyAdmin version that was packaged with that XAMPP version? As in, did you install your own phpMyAdmin outside of XAMPP? – Isaac Bennetch Jul 12 '14 at 22:09

2 Answers2

0

Your version of MySQL is too old for your version of phpMyAdmin. See the release history for phpMyAdmin version 4.2.3.

Either upgrade MySQL or downgrade phpMyAdmin.

neelsg
  • 4,802
  • 5
  • 34
  • 58
0

Replacing utf8mb4 with utf8 should work.

utf8mb4 is a superset of utf8.

Pino
  • 7,468
  • 6
  • 50
  • 69