pingback

Trackbacks in PHP

I'm writing a custom blog engine and would like to have trackbacks similar to Wordpress. I could look at the Wordpress source, but I'd really prefer a tutorial of some sort and so far I haven't been able to find one. Are there any good tutorials for implementing trackbacks or pingbacks in PHP5? ...

Best Way to automatically find links to your content?

So, here is the task I've found myself thinking of. Pretend for a moment, that I have a large body of content. I want to see what websites are linking to my content. I know that I could look into TrackBack or PingBack but what about those that aren't using tools capable of dealing with that? It would seem that some form of Web Crawler t...

Rails: How to get the servers response HTTP headers?

Hi, I want to autodetect the pingback-url of remote websites, so I need to parse the HTTP response headers sent by the remote server. I don't need and don't want the contents of the remote website, I'm only looking for something like this: X-Pingback: http://www.techcrunch.com/xmlrpc.php Similar to using curl: curl -I "your url" I...

What it the difference between Pingback and Trackback?

What is the difference between the two names? Thanks. ...

How to test if my pingback was successful?

Hi, I'm currently writing the pinging-back code of a blogging platform. Pingbacks work at localhost, but I want to test if they work when pinging a 3rd-party service. Is there any website or any other solution which will show me once it received a pingback from me? Thanks. ...

.Net library for sending trackbacks

Is there a library for sending trackbacks or pingbacks in .Net? I know the code is not that hard to write, but if someone wrote, debugged it and maintains it, I'd rather re-use. ...

Add URLs to list of urls to send pingbacks to in Wordpress

Is it ok to ask question about Wordpress development here? Any way i have a plugin that inject some HTML into a post to display some information from our site alternativeto.net. The plugin is located here: http://wordpress.org/extend/plugins/alternativeto/ The problem is that our content is added to the post via javascript when the pos...

What is the proper mime-type on a link rel pingback (WordPress)?

This question applies to WordPress, but maybe someone knows if it applies universally? Is there a proper mime-type (type attribute) for this... ? <link rel="pingback" type="WHICH-TYPE/HERE?" href="http://www.example.com/xmlrpc.php" /> Something tells me it may be text/xml, but I'd rather not guess if someone knows the right answer. ...

Show Only Pings (Pingbacks+Trackbacks) Number on Wordpress

Is there a way to display just ping counts (number) on Wordpress? Actually there are comments_number function but that showing total count of comments, pingbacks and trackbacks. ...

Wordpress Trackbacks Not Being Applied

I am using Wordpress 2.9.1. I recently noticed the trackbacks are not being sent - internal or external. I see two issues I would like to solve. 1) My site has a default, global ping hub which it should notify. This value is not being set into the 'to_ping' value in the *_post table. 2) When I manually enter a trackback in the post,...

how to work with the library pingback-php of tedeh

Docs Down http://pingback.tedeh.net/! Source: http://github.com/tedeh/pingback-php 3 Files http://github.com/tedeh/pingback-php/blob/master/Pingback/Exception.php http://github.com/tedeh/pingback-php/blob/master/Pingback/Server.php http://github.com/tedeh/pingback-php/blob/master/Pingback/Utility.php Please how I can work with this...

Rails: Why am I getting the wrong link on this pingback?

So I almost have a pingback sender ready for my rails app (people post links to content and donate to them). Almost. I've borrowed heavily from the code here: http://theadmin.org/articles/2007/12/04/mephisto-trackback-library/ I modified the slightly for my purposes: require 'net/http' require 'uri' class Trackback @data = { } ...

PHP Pingback problems

I have a custom blogging site, as such I want to create some code that will allow me to pingback other sites that I link to. I have found some code online but cannot get it working! I am using the XMLRPC library and the following code. When I run this I get headers back and the following error code - I cannot seem to find out what it ...