I've migrated a Wordpress blog to Drupal. Where should I redirect the WP trackback URL (wp-trackback.php) to if I'm using this module?

Comments

manarth’s picture

The trackback endpoint is configured per node: it's found at node/{$nid}/trackback.

Nodes (which are configured to allow trackbacks to be received) advertise their trackback endpoint via RDF (as per trackback's auto-discovery protocol). Each node will add something like this to the HTML:

<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
         xmlns:dc="http://purl.org/dc/elements/1.1/"
         xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
  <rdf:Description
      rdf:about="http://example.com/node/5"
      dc:identifier="http://example.com/node/5"
      dc:title="Foo Bar"
      trackback:ping="http://example.com/node/5/trackback" />
</rdf:RDF>

The trackback:ping attribute is the URL of the trackback endpoint.

thumb’s picture

Thanks!

manarth’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.