Reputation: 1
Fatal error while opening phpmyadmin and browser showing blank page while accessing wp-admin.
The exact error is
Fatal error: Call to undefined function mb_detect_encoding() in C:\xampp\phpMyAdmin\libraries\php-gettext\gettext.inc on line 177
My path is http://localhost/phpmyadmin/
The other part of this error is while accessing wp-admin page that shows no error but a blank page.
path http://localhost/eCommerce/wp-admin/
Upvotes: 0
Views: 2634
Reputation: 3094
Open your php.ini
file , "extension_dir"
line looked like following :
extension_dir = "C:/xampp/bin/php/php7/ext/"
which i changed to :
extension_dir = "C:\xampp\bin\php\php7\ext\"
Upvotes: 1