


This article continues to talk about the problem of this ping service. First, we summarize and summarize the following information:
【1】Manual Ping service address:
Baidu (Baidu) address: http://ping.baidu.com/ping .html
Google address: http://blogsearch.google.com/ping
Feedsky address: http://ping.feedsky.com/ping.html
Qihoo( Qihoo) address: http://so.blog.qihoo.com/pingblog.html
IASK (爱 Ask) address: http://blog.iask.com/ping.php
【2】Automatic Ping Service Application Programming Interface (API):
Google: http://blogsearch.google.com/ping/RPC2
Feedburner: http://ping.feedburner.com
Feedsky ): http://www.feedsky.com/api/RPC2
Feedster: http://api.feedster.com/ping.php
IASK: http://blog.iask.com /RPC2
Qihoo (Qihoo): http://ping.blog.qikoo.com/rpc2.php
Fresh fruit: http://www.xianguo.com/xmlrpc/ping.php
Catch Shrimp: http://www.zhuaxia.com/rpc/server.php
Blogdigger: http://www.blogdigger.com/RPC2
blo.gs: http://ping.blo.gs/
ICEROCKEThttp://rpc.icerocket.com:10080/
Moreover: http://api.moreover.com/RPC2
Newsgator: http://rpc.newsgator.com/
Syndic8 : http://www.syndic8.com/xmlrpc.php
Weblogs: http://rpc.weblogs.com/RPC2
Weblogalot: http://ping.weblogalot.com/rpc.php
Among the ping services provided above, I have tried some that work well and some that don’t. It depends on the situation. You can test this yourself based on the network environment, etc., and the one that suits you is the best. There is no recommendation.
Okay, having said so much above, the following is the key point, that is, how to implement the ping service. WordPress can implement it through the background, what about the others? For example, what should I do if there is a blog program that does not have a ping service function? As far as Fenren knows, the easy-to-use wordpress in the blog system comes with a PING function. There is no doubt that the ASP-like Z-BLOG seems to be able to achieve this function through a plug-in. Other blogging systems? Others? There is nothing else, my only choice is wordpress, nothing else but the only one. Haha, no kidding. Let’s talk about the problem of using PHP to implement the ping service. This is for other websites or systems that do not support the ping function. You can develop an interface to implement it yourself. For example, the secondary development of DEDECMS can be used. Fenxun has been studying this project recently.
What needs to be said is that Baidu’s ping and Google’s submission formats are different. Let’s briefly talk about them and give an introduction to Baidu and Google respectively. The first introduction is Google (why not Baidu, OK? Don’t be so entangled , there will be...):
[*1] PHP implementation of Google's ping service
For a detailed introduction to RPC, you can go to Wikipedia, the standard of Google's ping service:
RPC endpoint: http ://blogsearch.google.com/ping/RPC2
Calling method name: weblogUpdates.extendedPing
Parameters: (should be sent in the same order as listed below)
Site name
Site URL
The URL of the page that needs to be checked for updates
The URL of the corresponding RSS, RDF or Atom seed
Optional: the category name (or tag) of the page content. You can specify multiple values, separated by '|' characters.
First, write a CURL function to POST Google's RPC endpoint:
function postUrl($url, $postvar) {
$ch = curl_init();
$headers = array(
"POST ".$url." HTTP/1.0″,
"Content- type: text/xml;charset="utf-8"",
"Accept: text/xml",
"Content-length: ".strlen($postvar)
);
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postvar);
$res = curl_exec ($ch);
curl_close ($ch);
return $res;
}
After the main curl is written, the only thing left is to assemble the sent data according to Google’s XML-RPC standard. For detailed request examples, please refer to the official case, click here.
For example, my code is written like this:
$googleXML =
END;
$res = postUrl('http://blogsearch.google.com /ping/RPC2′, $googleXML);
//The following is the judgment of whether the return is successful or not (according to the interface description of Google ping)
if (strpos($res, "
echo "PING successful";
else
echo "PING failed";
OK, this can simply implement Google's PING service. You can modify the code to implement this function.
[*2] PHP implementation of Baidu’s ping service (this title is really DT)
Baidu’s ping service xml code is different from Google’s. Baidu always has its own characteristics:
Introduction Baidu Blog Ping Service, for a detailed introduction to Baidu Blog Ping Service, please go to: http://www.baidu.com/search/blogsearch_help.html#n7.
Baidu's ping service is also based on the XML-RPC standard protocol, but what is different from Google's ping service is that the XML format sent by Baidu's ping is different. We need to use string nodes to wrap the content.
For example:
according to For the Google interface mentioned above, we only need to change the submitted xml content. Of course, the judgment returned by Baidu ping service is also different from Google's, and corresponding modifications can also be made.
The following is the PHP code:
$baiduXML =
EOT;
$res = postUrl('http://ping.baidu.com/ping/RPC2′, $baiduXML ; "PING successful";
else
echo "PING failed";
The above code can implement PHP's ping service. Okay, now I will provide you with a Baidu ping service code. Who makes it so unique?
Copy code
function postUrl($url, $postvar)
{
$ch = curl_init();
$headers = array(
"POST ".$url." HTTP/1.0″,
"Content-type: text/xml; charset="gb2312"",
"Accept: text/xml",
"Content-length: ".strlen($postvar)
);
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
curl_setopt($ch, CURLOPT_POSTFIELDS, $postvar);
$res = curl_exec ($ch);
curl_close ($ch);
return $res;
}
$baiduXML = "
$res = postUrl(‘http://ping.baidu.com/ping/RPC2′, $baiduXML);
if ( strpos($res, "
{
echo "PING成功";
}
else
{
echo "PING失败";
}
?>
此文很DT的让我浪费了N个草稿才写完,然后纷纭就发现需要搞个CODE的插件给WP装备上了。代码的问题真的很纠结,还有就是国人的WP主题没有支持分页的,这个让我很DT,说了半天,DT是啥?不知道……

多年来,Xbox控制台得到了突飞猛进的改进。多年来,游戏不断发展,具有栩栩如生的功能,而游戏玩家似乎无法获得足够的体验。在Xbox上玩您最喜欢的游戏可能是一种完全引人入胜的体验。但是,有时使用这些高级功能,如果互联网速度不是那么好,我们最终会遇到延迟或ping问题。有时我们希望游戏下载速度更快。如今,像ForzaHorizon5和MortalKombat这样的游戏需要超过100GB的内存。如果我们没有正确的互联网设置来帮助我们,下载此类游戏可能需要很长时间。方法1:通过

NETSTART命令是Windows中的内置命令,可用于启动和停止服务和其他程序。有时,在运行此命令时,您可能会遇到NetHelpmsg2186错误。遇到此错误的大多数用户都试图通过运行NETSTARTWUAUSERV命令来重新启动Windows更新服务。如果Windows更新服务已禁用或未运行,则您的系统可能会面临风险,因为您无法获取最新更新。让我们详细探讨为什么会发生此错误以及如何绕过它。好吗?什么是错误2186?Windows更新服务通过安装最新的关键更新和安全功

安全中心服务是win10系统内置的电脑防护作用,能够实时保护电脑安全,可是有些客户在开机的时候碰见了安全中心服务被禁用的状况,怎么办呢?很简单,你可以打开服务面板,找到SecurityCenter项,以后右键打开它的属性窗口,将启动种类设定为自动,以后再点击一下启动就能够再次开启这个服务了。win10安全中心服务被禁用怎么办:1、按“Win+R”开启“运作”窗口。2、随后输入“services.msc”指令后按回车3、随后在右边窗口中找到“SecurityCenter”一项,双击此项开启其属性窗

ping请求超时的原因有目标主机不可达、网络拥堵、防火墙或安全设置和DNS解析问题等。详细介绍:1、目标主机不可达,Ping请求超时可能意味着目标主机无法通过网络访问,可能是由于目标主机关闭了网络连接、目标主机所在的网络出现故障、目标主机IP地址设置错误等原因导致;2、网络拥堵,Ping请求超时也可能是由于网络拥堵导致的,网络拥堵可能是由于大量的数据传输、网络设备故障等等。

网络ping不通,是什么回事?其实这是个非常常见的问题了,主要分为两种情况,同网段ping不通和不同网段ping不通,下面就来看看详细内容吧。 同网段ping不通的原因ping命令无法连接的情况通常有两种:一是在同一网段内无法ping通的IP地址,另一种是在不同网段内无法ping通的IP地址。这两种情况具有不同的解决方法。首先,我们来讨论在同一网段内ping不通的情况。 一、同网段ping不通,结果是“无法访问目标主机” 目的ip和源ip是同一网段的,ping的结果是&l

远程桌面连接给很多用户的日常生活带来了方便,也有部分想使用命令来进行远程连接,操作起来更方便,那么该怎么连接呢?远程桌面连接服务用命令打开方法可以帮你解决。远程桌面连接命令怎么设置:方法一、通过运行命令远程连接1、按下“Win+R”打开“运行”输入mstsc2、然后点击“显示选项”3、输入ip地址点击“连接”。4、显示正在连接即可。方法二、通过命令提示符远程连接1、按下“Win+R”打开“运行”输入cmd2、在“命令提示符”输入mstsc/v:192.168.1.250/console

计算机有许多系统服务来支持各种程序的应用。如果电脑没有声音,在排除硬件问题的情况下,大部分音频服务都没有打开,那么win7如何启用音频服务呢?许多朋友比较模糊,所以针对如何启用win7音频服务的问题,下面小编介绍win7音频服务的启用方法。启用win7音频服务的方法。1.在Windows7系统下的计算机桌面上找到计算机,右键选择管理选项。2.在打开的计算机管理界面中找到并打开服务和应用下的服务项目。在右边的服务界面上找到WindowsAudio双击打开修改。4.切换到常规项目,点击启动开启功能。

Linux重启服务的正确方式是什么?在使用Linux系统时,经常会遇到需要重启某个服务的情况,但是有时候我们可能会在重启服务时遇到一些问题,比如服务没有真正停止或启动等情况。因此,掌握正确的重启服务的方式是非常重要的。在Linux中,通常可以使用systemctl命令来管理系统服务。systemctl命令是systemd系统管理器的一部分


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

SublimeText3 Chinese version
Chinese version, very easy to use

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

VSCode Windows 64-bit Download
A free and powerful IDE editor launched by Microsoft
