phpmyadmin displays an error and cannot open index.php solution: first find the extension of the function [php_mbstring.dll]; then cancel [extension=php_mbstring.dll] in the [php.ini] file of the php interpreter 】Annotation is enough.
phpmyadmin displays an error and cannot open index.php solution:
Configure apache mysql phpmyadmin environment under windows7 , make the corresponding configuration after decompression. After entering http://localhost/phpmyadmin, the expected login interface is not displayed, and then add /index.php
at the end of the address.
After that, I searched for related issues on the Internet and found a configuration file httpd.conf that configures apache, and found Directoryindex index.php index.html. This configuration is just for apache to automatically run the homepage. It is best not to change it unless necessary. It cannot solve the problem of undefined functions.
Final solution, this problem is caused by calling the undefined function mb_dected_encoding()
, which is in the php_mbstring.dll
extension, Just go to the php.ini file of the php interpreter and uncomment extension=php_mbstring.dll
.
Related tutorial recommendations: phpmyadmin
The above is the detailed content of What should I do if phpmyadmin displays an error and cannot open index.php?. For more information, please follow other related articles on the PHP Chinese website!