1

In XAMPP, MySQL and Apache starts successfully and xampp's dashboard is accessible. But when I try to access phpmyadmin it displays nothing i.e, it displays a blank window displaying nothing.

enter image description here

I've tried different versions for xampp and even tried reinstalling and changing ports.

I work on WINDOWS 10.

Prasad Khode
  • 6,602
  • 11
  • 44
  • 59
pranayC
  • 31
  • 1
  • 4
  • Possible duplicate of [PHP's white screen of death](http://stackoverflow.com/questions/1475297/phps-white-screen-of-death) – aynber Jan 20 '17 at 19:24
  • You'll most likely need to edit your php.ini and change display_errors = Off to display_errors = On. Then you'll be able to see what is happening. – Kaylined Jan 20 '17 at 19:41

1 Answers1

0

Go to php.ini file, find open_basedir, then comment it by introducing ';'(semi-colon) as depicted below

;open_basedir = "C:\xampp\htdocs"
Abiudeko
  • 83
  • 1
  • 7