Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 wordpress 管理员显示 0 个帖子、页面、类别和标签。但是,一切都出现在前端就好了。我正在运行 wordpress 3.0,据我所知,自从这种情况开始发生以来,没有更改任何设置、升级插件等。
此外,在搜索插件时,我收到错误“API 请求期间发生意外的 HTTP 错误”。我假设这与第一个问题有关,但可能不是。
提前感谢您的帮助。
听起来您的 WP 核心文件在 FTP 期间可能已损坏,您有 URL 吗?
要修复 API 请求:
1) 登录到您的 FTP 服务器
2) 转到 wp-includes 并编辑 class-http.php
3) 查找:'timeout' => apply_filters('http_request_timeout', 5),
4) 将值“5”改为“30”,该值实际上是服务器超时前的秒数。
5) 应该是这样的:'timeout' => apply_filters('http_request_timeout', 30),