trackback

How can you implement trackbacks on a custom-coded blog (written in C#)?

Title says it all. ...

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...

library for sending trackbacks / pingbacks in php

Hi * I am writing my own blog system. Is there a library for sending trackbacks / pingbacks or a good example how to do this? I played with xmlrpc and the post method but without success. I need a working class, I would also pay for the script, any ideas? Thanks ...

Trackback implementation: rel="trackback" vs RDF

Hi, I want my Rails App to parse external websites for a trackback URL but I'm not really sure if I should just look for a <a href="url" rel="trackback">Text</a> or follow the RDF specifications described by sixapart. Or both. Wordpress and Techcrunch both only offer a rel="trackback" link and they should know. On the other hand may...

What it the difference between Pingback and Trackback?

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

heuristic(s) for detecting trackback links on a page

I'm writing my own blog (every one should do this once) and the project for this week is to automatically send (trackback || pingback) requests to pages to which I am linking. I'm writing in ruby, but would also like general heuristics. I would like some advice on the following: 1) What is the best way to pull RDF out of a document when...

.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. ...

How to extract the RDF snippet out of an HTML page?

I want to extract the RDF snippet of an web page. Since it can even be inside a HTML-comment I'm at a loss here. Can anybody point me into the right direction, what libraries or classes to use or something like that? The goal is to have the trackback URL to be able to send trackbacks. ...

Retrieve backlink infos from linked image generated by php

Hi All mates! This time ask you this question: Assuming we have this img ( generated by php ) linked in clients sites <img src="http://mysite.com/genimg.php?id=2" alt=""/> Is Possible to get back from the client location some infos!? ( es. client url ) PS: don't need something that open the entire client page and search for link...

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 = { } ...