简体   繁体   中英

Phpmyadmin gibberish at main table overview (but ok when click on edit)

phpmyadmin截图

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?

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,AF) 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 '

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM