致命错误:调用未定义的函数 is_multisite()?

发布于 2024-09-09 02:37:19 字数 258 浏览 5 评论 0原文

最近我自动更新了wordpress 3.0。更新之前,一切正常。更新后,页面显示错误消息

致命错误:在第 505 行调用 /home1/servername/public_html/myfolder/mysite/wp-includes/wp-db.php 中未定义的函数 is_multisite()

然后,我用来自 FTP 的新版本文件覆盖了所有文件。但我仍然遇到同样的问题。谁能帮我解决这个问题。提前致谢。

Recently i updated wordpress 3.0 automatically. Before update, everything working fine. After the update, page is displayed with error message

Fatal error: Call to undefined function is_multisite() in /home1/servername/public_html/myfolder/mysite/wp-includes/wp-db.php on line 505

I then overwritten all the files with new version files from FTP. But still I am having the same problem. Can anyone help me to solve this problem. Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

长不大的小祸害 2024-09-16 02:37:19

通过 FTP 传输文件 wp-includes/load.phpwp-settings.php 并检查;

  1. wp-includes/load.php578function is_multisite()
  2. wp-settings.php行行< strong>19 是 require( ABSPATH . WPINC . '/load.php' );

如果一切正常,请通过删除它们或在插件文件夹中临时重命名它们来禁用任何麻烦的插件。

FTP the file wp-includes/load.php and wp-settings.php and check that;

  1. wp-includes/load.php line 578 is function is_multisite()
  2. wp-settings.php line line 19 is require( ABSPATH . WPINC . '/load.php' );

If that's all ok, disable any troublemaking plugins by deleting them or temporarily renaming them in your plugins folder.

自由范儿 2024-09-16 02:37:19

或者,如果您使用 SVN,请删除 wp-includes 文件夹和 wp-settings.php 文件,然后执行“svn up”

Or if you are using SVN, delete the wp-includes folder and the wp-settings.php file and do and 'svn up'

吹梦到西洲 2024-09-16 02:37:19

更改为

if(function_exists('is_multisite'))

Change to

if(function_exists('is_multisite'))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文