[wpmu-trac] Re: [WordPress MU Trac] #735: XMLRPC
'blogger.getUsersBlogs' not working with a password protected blog
WordPress MU Trac
wpmu-trac at lists.automattic.com
Wed Sep 17 15:54:07 GMT 2008
#735: XMLRPC 'blogger.getUsersBlogs' not working with a password protected blog
------------------------+---------------------------------------------------
Reporter: GIGALinux | Owner: donncha
Type: defect | Status: new
Priority: highest | Milestone: WPMU 1.0
Component: component1 | Version: 1.0
Severity: blocker | Resolution:
Keywords: |
------------------------+---------------------------------------------------
Comment (by GIGALinux):
{{{
function wpmu_blogger_getUsersBlogs($args) {
$site_details = get_blog_details( 1, true );
$domain = $site_details->domain;
$path = $site_details->path . 'xmlrpc.php';
$rpc = new IXR_Client("http://{$domain}{$path}");
$rpc->query('wp.getUsersBlogs', $args[1], $args[2]);
$blogs = $rpc->getResponse();
if ( isset($blogs['faultCode']) ) {
return new IXR_Error($blogs['faultCode'],
$blogs['faultString']);
}
if ( $_SERVER['HTTP_HOST'] == $domain && $_SERVER['REQUEST_URI']
== $path ) {
return $blogs;
} else {
foreach ( (array) $blogs as $blog ) {
if ( strpos($blog['url'], $_SERVER['HTTP_HOST']) )
return array($blog);
}
return array();
}
}
function attach_wpmu_xmlrpc($methods) {
$methods['blogger.getUsersBlogs'] = 'wpmu_blogger_getUsersBlogs';
return $methods;
}
add_filter('xmlrpc_methods', 'attach_wpmu_xmlrpc');
}}}
No, my blogs are with a http basic auth protected - and xmlrpc.php. All
xmlrpc methods are working, but not blogger.getUsersBlogs, because in
wpmu-functions.php:1858 the function 'wpmu_blogger_getUsersBlogs' replaces
the blogger_getUserBlogs method in xmlrpc.php, but
wpmu_blogger_getUsersBlogs() is not working if the blogs are with a http
basic auth protected.
--
Ticket URL: <http://trac.mu.wordpress.org/ticket/735#comment:7>
WordPress MU Trac <http://mu.wordpress.org/>
WordPress Multiuser
More information about the wpmu-trac
mailing list