3

phpmyadmin screenshot

My phpmyadmin is funny

The last couple of days, the overview of the table columns is total "encoded" gibberish

But when I click on edit on any of them, the real content shows just fine Everything is set to be UTF-8 by the way

The database works perfectly otherwise

Don't know what's happening. Do you?

mowgli
  • 2,796
  • 3
  • 31
  • 68

2 Answers2

3

With no version mentioned it's difficult to answer but it seems like those fields are of BINARY or BLOB data types or maybe because of utf8_bin they are treated as binary and are displayed in hexadecimal (0-9,A-F) form. Try this:

  • Click on '+options' link (just above that display table)
  • Uncheck 'Show binary contents as HEX' option.
  • Click 'Go'.

Edit 1 (In danish it should be something like this):

  • '+options' is '+indstillinger'
  • 'Show binary contents as HEX' is 'Vis binært indhold som HEX'
  • 'Go' is 'Udfør'
Chirayu Chiripal
  • 610
  • 6
  • 15
1

Check if $cfg['DisplayBinaryAsHex'] = true; in config.inc.php and if it is true set it to false. That might help.

Marko Vasic
  • 690
  • 9
  • 27