XMLRPC 无法在本地主机上运行

发布于 2024-09-29 16:31:41 字数 549 浏览 4 评论 0原文

大家好,我已经在 WordPress 主题上工作了一段时间了,当它在我的服务器上时一切正常,但是当我在本地计算机上加载它时,我无法使用某些功能,即从在管理面板之外。为此,我使用 XMLRPC 和以下代码 -

$params = array(0,$username,$password,$content,true);
$request = xmlrpc_encode_request('metaWeblog.newPost',$params);
$ch = curl_init();
curl_setopt($ch, CURLOPT_POSTFIELDS, $request);
curl_setopt($ch, CURLOPT_URL, $rpcurl);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 1);
$results = curl_exec($ch);
        curl_close($ch);

传递的参数都是有效且正确的,但我就是无法弄清楚我的生活出了什么问题。任何帮助将不胜感激。

Hey guys, I've been working on a Wordpress theme for a while now and all works fine when it's on my server, but when I load it up on my machine locally I am unable to utilise certain functionality, namely the ability to post from outside the admin panel. To do this I use XMLRPC and the following code -

$params = array(0,$username,$password,$content,true);
$request = xmlrpc_encode_request('metaWeblog.newPost',$params);
$ch = curl_init();
curl_setopt($ch, CURLOPT_POSTFIELDS, $request);
curl_setopt($ch, CURLOPT_URL, $rpcurl);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 1);
$results = curl_exec($ch);
        curl_close($ch);

The params passed are all valid and correct, and I just cannot figure out what is wrong for the life of me. Any help would be much appreciated.

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

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

发布评论

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

评论(2

内心荒芜 2024-10-06 16:31:41

根据您的故障点...听起来您的本地计算机尚未完全设置。如果 PHP 在失败之前到达 xmlrpc_encode_request,那么 PHP 可能会工作,但是 php.ini 设置是否正确,并且 XML-RPC 库已启用?

更新:
您需要从该行中删除分号:

extension=php_xmlrpc.dll

Based on your fail point... sounds like your local machine isn't completely setup. Presumably PHP works if it gets to xmlrpc_encode_request before failing, but is php.ini setup correctly, and the XML-RPC library enabled?

Update:
You need to remove the semi-colon from the line:

extension=php_xmlrpc.dll
生来就爱笑 2024-10-06 16:31:41

您是否尝试过查看 $results 变量的响应是什么? $rpcurl 变量是否设置为正确的 URL?

Have you tried seeing what the response from the $results variable is? Is the $rpcurl variable set to the right URL?

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