Questions tagged [trackback]

30 questions
12
votes
5 answers

What it the difference between Pingback and Trackback?

What is the difference between the two names? Thanks.
Moayad Mardini
  • 7,271
  • 5
  • 41
  • 58
5
votes
3 answers

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…
VirtuosiMedia
  • 52,016
  • 21
  • 93
  • 140
5
votes
1 answer

library for sending trackbacks / pingbacks in php

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…
MilMike
  • 12,571
  • 15
  • 65
  • 82
4
votes
2 answers

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…
Drew
  • 15,158
  • 17
  • 68
  • 77
3
votes
2 answers

Disallow /feed and /trackback on wordpress robots but Google still indexing

I got a problem with my site and the robots.txt file. I got Disallow for /feed and /trackback url on my robots, but for some reason im still receiving on my Google Webmaster url like http://www.mydomain.net/year/month/post.html/feed and…
user2143527
  • 29
  • 1
  • 7
2
votes
1 answer

Trackback not working in Codeigniter

I have two controllers: test.php public function trackback() { $this->load->library('trackback'); $tb_data = array( 'ping_url' => 'http://www.citest.com/addtrackback/receive/777', 'url' =>…
DenisOgr
  • 531
  • 2
  • 7
  • 13
2
votes
0 answers

AttributeError: 'TracebackException' object has no attribute 'exc_trackback' Error

I am getting the error given below from the code in Sacred's utils.py, please let me know if there is any solution for it. AttributeError: 'TracebackException' object has no attribute 'exc_trackback' exc_type, exc_value, exc_traceback =…
Aritra Sen
  • 143
  • 1
  • 11
1
vote
1 answer

Java checkstyle error in BlueJ when using trackback

I'm doing an algorithm in Java using BlueJ as an IDE. I use trackback algorithm to solve the problem and everything works perfectly except for the checkstyle. The checkstyle errors are: Assignment of parameter i is not allowed [on line 336]…
user743234
1
vote
1 answer

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…
Kenji Crosland
  • 2,914
  • 6
  • 31
  • 40
1
vote
0 answers

Why is /trackback appearing in logs in Joomla website?

I have a Joomla 3.3.3 website. In the Redirect component I see a link to it's own directory with a /trackback added. I can't find out how this is being generated from my own website. Any suggestions? This is an example: Source…
Edward Coast
  • 374
  • 4
  • 17
1
vote
2 answers

UnicodeEncodeError: 'charmap' codec can't encode character (in Python 3.3)

When I'm trying to print all ASCII chars in Python only 127 are getting printed and I'm getting an error with output after 127. I'm unable to understand what does that error mean. Example: t = list(range(0, 256)) for x in t: print(str(x) + ". "…
Yousuf Memon
  • 4,638
  • 12
  • 41
  • 57
1
vote
1 answer

Retrieve backlink infos from linked image generated by php

This time ask you this question: Assuming we have this img ( generated by php ) linked in clients sites Is Possible to get back from the client location some infos!? ( es. client url ) PS:…
Luca Filosofi
  • 30,905
  • 9
  • 70
  • 77
1
vote
1 answer

Trackback implementation: rel="trackback" vs RDF

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 Text or follow the RDF specifications described by sixapart. Or both. Wordpress and Techcrunch…
Ole Spaarmann
  • 15,845
  • 27
  • 98
  • 160
1
vote
1 answer

Python import hooks: no filenames in trackback of import errors

I've written an import hook according to PEP 302 and it seems to work fine except one annoying detail. When there's an import error, say code that tries to import a module that doesn't exist, I get a trackback with lines like: File "", line…
shoosh
  • 76,898
  • 55
  • 205
  • 325
0
votes
1 answer

Sending the same trackback multiple times: bad habit?

I need to develop a custom trackback/pingback module for a page where trackbacks/pingbacks are sent and received. Since I can only hook this code and not change it, I'm limited. There is a hook for processing data right before an article is saved,…
pdu
  • 10,295
  • 4
  • 58
  • 95
1
2