0

i am running Adminer 4.8.0 on 2 machines:

my live production server: running mySQL 5.7.28

my local development machine: running mySQL 8.0.23

on the live server everything looks fine. on my local machine all of the engine/collation/row counts are all either blank or have question marks. see attached images:

adminer_mysql5 adminer_mysql8

Shadow
  • 33,525
  • 10
  • 51
  • 64
Devin Emke
  • 181
  • 1
  • 1
  • 7
  • I would ask this question on the adminer support forum, not here. – Shadow Apr 07 '21 at 15:29
  • i did ask in the Adminer support forums. did not get any helpful responses. thought i would try my luck here. thought maybe others had see the same issue. thanks. – Devin Emke Apr 07 '21 at 15:55
  • The problem is that SO is a programming Q/A site, not a general product support site. You would have to show the relevant section of adminer's code and provide a meaningful error message for your question to qualify for SO. Nobody here is going to debug adminer for you from scratch. It is also a possibility that this is a simple config issue with adminer, which is completely off topic here on SO. – Shadow Apr 07 '21 at 16:26

1 Answers1

1

apologies to @Shadow and others if this was posted in the wrong place, but i did find a solution to this issue:

in the Adminer source, replace this:

$R["Engine"]==($Zf=="pgsql"?"table":"InnoDB")

with this:

$R["Engine"]==(isset($Zf)&&$Zf=="pgsql"?"table":"InnoDB")

details of the issue are here.

looking at the GitHub ChangeLog this appears to be fixed in the next release.

hope this helps others. thanks.

Devin Emke
  • 181
  • 1
  • 1
  • 7