Home >Database >phpMyAdmin >What should I do if phpmyadmin cannot be opened?
Solution to the problem that phpmyadmin cannot be opened: First open [pnp.ini], find [;extension=php] and remove [;]; then find [;extension_dir=] and remove [;]; finally, remove Copy [pnp.ini] to [c:\windows] and restart.
Solution to the problem that phpmyadmin cannot be opened:
1. Check if there is # in the ext directory of php ##php_mysqli.dllFile
;extension=php_mysqli.dllRemove the semicolon "
;" in front and change it to
extension=php_mysqli.dll3. Find
;extension_dir="./ext"Remove the semicolon "
;" in front and change it to
extension_dir = "你的PHP安装路径\ext"4. Copy php.ini to
c:\windows
Related tutorial recommendations:
The above is the detailed content of What should I do if phpmyadmin cannot be opened?. For more information, please follow other related articles on the PHP Chinese website!