php - How to use phpMyAdmin with mysqlnd -


when run php code full error reporting :

warning: mysqli::mysqli(): headers , client library minor version mismatch.

i found out should switch mysqlnd uninstalling mysqli discussed here: headers , client library minor version mismatch

after migration see phpmyadmin not working anymore. had uninstall php-mysqlnd package , install php-mysql again.

so question is: "does phpmyadmin able work mysqlnd?"

after asking same question in centos forum, got solution this:

https://www.centos.org/forums/viewtopic.php?f=47&t=53726

the trick not issue "yum remove php-mysql" , "yum install php-mysqlnd" in separate commands, instead 1 must issue following:

# yum shell > remove  php-mysql > install php-mysqlnd > run > quit 

the above prevents phpmyadmin remove automatically, , upgrade happen smoothly without breaking phpmyadmin package.


Comments

Popular posts from this blog

c - Calling a function within a loop -

vb.net - Unbound DataGridView add row with checkbox error -

How i fill combobox items in Radgridview manually using in vb.net -