91yunying后台发布页面无法显示可视化编辑器

2025-02-11 11:06:24 阅读:5 编辑

找原因

  1. 通过phperror_log获取是内存溢出,找到哪个文件哪个地方Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 16252916 bytes) in D:\wamp\www\wp-includes\user.php on line 1062(D:\wamp\www\wp-includes\user.php)
  2. 找到可能是用户表量大。打印用户数的量
  3. 查看用户表

    解决方案

  4. 删除大量恶意注册的用户(21万用户)
    select count(*) from wp_users where user_login like 'www.%';
    DELETE FROM wp_users where user_login like 'www.%'
  5. 注册关闭