I am currently running into some problems with phpMyAdmin. I set everything up correctly and made sure everything worked.
Then later after some developing on some pages I noticed I couldn't execute mysqli_result::fetch_all()
. So I did my research and found out I only had to install the package php5-mysqlnd
. So I did (apt-get install php5-mysqlnd
). The installation did not fail and my PHP script xould execute the mysqli_result::fetch_all()
method.
But phpmyadmin doesn't work anymore. It simply can't connect to the MySQL server anymore (all logins fail).
(Note: every other script still has no problem connecting and logging in into the MySQL server. I also did not change any passwords. Login over the console is also possible)
I couldn't get it to work with the package installed. The I reinstalled php5-mysql
(which uninstalled php5-mysqlnd
) and phpmyadmin worked again!
Not having the mysqli_result::fetch_all()
method is not a major issue but if it is possible I would like to use it anyways. Simply because it is so convinient for debugging!
I am running a nginx server and debian 7.5 3.10.23 system.
Any help is apprechiated!