Loading... PHPCMS 后台访问特别慢的原因? 因为PHPCMS默认连接数据库,使用的HOST是`localhost`,而`localhost`如果没有被`127.0.0.1`解析到,就会导致PHPCMS访问数据库会很慢,所以也导致后端页面访问很慢。 ### 解决方法一 找到 `/caches/configs/database.php` return array ( 'default' => array ( 'hostname' => 'localhost', 'port' => 3306, 'database' => 'phpcmsv9', 'username' => 'root', 'password' => 'root', 'tablepre' => 'v9_', 'charset' => 'utf8', 'type' => 'mysqli', 'debug' => true, 'pconnect' => 0, 'autoconnect' => 0 ), ); 将`localhost`进行解析或将`localhost`改为`127.0.0.1` ### 解决方式二 在hosts 文件里加入 localhost 的解析 `127.0.0.1 localhost` Last modification:March 20, 2023 © Allow specification reprint Like 如果觉得我的文章对你有用,请随意赞赏