phpmyadmin issue when upgrade mysql

blog

Verified User
Joined
Jan 28, 2011
Messages
131
Hi All

I have upgraded mysql from 5.1 to 5.6.15 and php from 5.3.19 to Php 5.3.28

after it when try login to phpmyadmin from http://myip/phpmyadmin/

I have white page what is issue?

direct admin 1.44.1
 
I would guess that it is because you have some disable functions in php.ini wich phpmyadmin need. So look in your php.ini for "disable_functions", then remove everything that is after =, so it becomes like this:

Code:
disable_functions =

Then restart httpd and see if the problem is solved. (A sidenote is that my personal opinion is that you do not need to have any disable_functions in php.ini, it only give a "false" security. Also note that I will not debate this, and not respond to any arguments about this. You will have to decide for yourself about that.)

Edit: Also you could try to see if it works by using your server hostname instead of ip, like this: server.hostname.com/phpmyadmin
 
I would guess that it is because you have some disable functions in php.ini wich phpmyadmin need. So look in your php.ini for "disable_functions", then remove everything that is after =, so it becomes like this:

Code:
disable_functions =

Then restart httpd and see if the problem is solved. (A sidenote is that my personal opinion is that you do not need to have any disable_functions in php.ini, it only give a "false" security. Also note that I will not debate this, and not respond to any arguments about this. You will have to decide for yourself about that.)

Edit: Also you could try to see if it works by using your server hostname instead of ip, like this: server.hostname.com/phpmyadmin

many thanks fixed

remove ini_set from disable_functions

have a good year
 
Back
Top