dphfwzn8269 2014-04-23 04:18
浏览 47
已采纳

WordPress 3.9多站点数据库连接错误

I have a ZendFW application and WPMU installed. Admins at Zend app has an interface where they can create a new MU site.

I included wp-load.php and then called wpmu_create_blog and so on...

Once I updated the WP to 3.9 I got error establishing database connection.

This test code works OK with 3.8 but gives db error when tried WP 3.9.

blog38 is WP 3.8

<?php 

include "../blog38/wp-load.php";

global $wpdb;
echo "<pre>";
var_dump($wpdb->tables());
?>

blog39 is WP 3.9

<?php 

include "../blog39/wp-load.php";

global $wpdb;
echo "<pre>";
var_dump($wpdb->tables());
?>

Does anyone know what the problem is? How to solve this connection error?

  • 写回答

1条回答 默认 最新

  • dongzhouzhang8696 2014-04-24 02:44
    关注

    I posted it on WordPress discussion and submitted a ticket as well. The problem is in ms-setting.php file with new way they set $path and $current_site->path variables. In WP 3.8.3 they had $current_site->path = $path = PATH_CURRENT_SITE;

    and in WP 3.9 they set

    $current_site->path = PATH_CURRENT_SITE;

    and $path is determined by the $_SERVER['REQUEST_URI'] variable. So when you load wp-load.php file inside your application (and wordpress is in subdirectory) you have $path and $current_site->path variable different which ends up in no blog defined case, which gives Database connection error.

    Current workaround is to override $_SERVER['REQUEST_URI'] = '/blog/'; before loading wp-load.php

    More information can be found:

    http://wordpress.org/support/topic/wordpress-39-multisite-db-connection-error https://core.trac.wordpress.org/ticket/27999

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部