XML-RPC 服务器帮助

发布于 2024-07-08 15:58:03 字数 591 浏览 9 评论 0原文

我现在尝试使用 CodeIgniter 框架创建 xml-rpc 服务器。

<?php
$this->load->library('xmlrpc');
$this->load->library('xmlrpcs');

$config['functions']['weblogUpdates.ping'] = array('function' => 'weblogUpdates.ping');
$config['functions']['ping'] = array('function' => 'weblogUpdates.ping');
$config['functions']['weblogUpdates'] = array('function' => 'weblogUpdates.ping');
$config['object'] = $this;

$this->xmlrpcs->serve();
?>

但我遇到的问题是当 Wordpress 尝试 ping 我的文件时。 我不知道 $config['functions'][HERE]; 中应该有什么功能;

有人有解决这个问题的办法吗?

I'm now trying to create a xml-rpc server with the CodeIgniter Framework.

<?php
$this->load->library('xmlrpc');
$this->load->library('xmlrpcs');

$config['functions']['weblogUpdates.ping'] = array('function' => 'weblogUpdates.ping');
$config['functions']['ping'] = array('function' => 'weblogUpdates.ping');
$config['functions']['weblogUpdates'] = array('function' => 'weblogUpdates.ping');
$config['object'] = $this;

$this->xmlrpcs->serve();
?>

But the problem I have is when Wordpress is trying to ping my file. I can't figure out what I should have as function in the $config['functions'][HERE];

Anyone have a solution to this?

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

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

发布评论

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

评论(2

清风挽心 2024-07-15 15:58:03

谢谢,找到问题了,我太笨了。
有一个测试服务器正在运行,我已将 Wordpress 设置为 ping,但在获得新服务器时忘记更改地址:$

Thanks, found the problem, I'm so dumb.
Had a beta-server up running which I had set Wordpress to ping, and forgot to change the address when I got the new server :$

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