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?
...
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...
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 is the difference between the two names? Thanks.
...
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.
...
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.
...
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...
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.
...
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.
...
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,...
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...
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 = { }
...
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 ...