Stack Overflow is a community of 4.7 million programmers, just like you, helping each other.

Join them; it only takes a minute:

Sign up
Join the Stack Overflow community to:
  1. Ask programming questions
  2. Answer and help your peers
  3. Get recognized for your expertise

Doing a simple phpmyadmin install on a new server and I get the white screen.

Going into the apache logs I see:

[Wed Jun 19 23:20:57 2013] [error] [client 67.154.118.163] PHP Fatal error:  Call to undefined function PMA_DBI_num_rows() in /var/www/phpmyadmin/libraries/navigation/Nodes/Node.class.php on line 408

All I have done on the server is install apache, php, mysql, and the php-mysql module...

No idea whats going on :(

share|improve this question
    
Which version of phpMyAdmin are you installing? – Madhura Jayaratne Jun 20 '13 at 13:14
    
it was the new one 4.08 or whatever. – Dennis Smolek Jun 21 '13 at 7:04
up vote 7 down vote accepted

check your php5-mysql php module if it is installed correctly (maybe you forgot apache restart?)

had the same issue and after checking php-mysql module again and fixing it, this error vanished

share|improve this answer
    
I'm going to mark this correct, but I eventually just used the Ubuntu package and it fixed whatever the issue was – Dennis Smolek Jun 21 '13 at 7:05

Try

sudo apt-get install php5-mysqlnd

This will remove php5-mysql but it worked for me.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.