From 37f4b9caa02783e06dd7c5318200113409a0deb1 Mon Sep 17 00:00:00 2001
From: Derek Jones The Trackback sending function returns TRUE/FALSE (boolean) on success or failure. If it fails, you can retrieve the error message using: The Trackback sending function returns TRUE/FALSE (boolean) on success or failure. If it fails, you can retrieve the error message using: Before you can receive Trackbacks you must create a weblog. If you don't have a blog yet there's no point in continuing. Before you can receive Trackbacks you must create a weblog. If you don't have a blog yet there's no point in continuing. Receiving Trackbacks is a little more complex than sending them, only because you will need a database table in which to store them,
-and you will need to validate the incoming trackback data. You are encouraged to implement a thorough validation process to
-guard against spam and duplicate data. You may also want to limit the number of Trackbacks you allow from a particular IP within
-a given span of time to further curtail spam. The process of receiving a Trackback is quite simple;
+and you will need to validate the incoming trackback data. You are encouraged to implement a thorough validation process to
+guard against spam and duplicate data. You may also want to limit the number of Trackbacks you allow from a particular IP within
+a given span of time to further curtail spam. The process of receiving a Trackback is quite simple;
the validation is what takes most of the effort. In order to accept Trackbacks you must display a Trackback URL next to each one of your weblog entries. This will be the URL
+ In order to accept Trackbacks you must display a Trackback URL next to each one of your weblog entries. This will be the URL
that people will use to send you Trackbacks (we will refer to this as your "Ping URL"). Your Ping URL must point to a controller function where your Trackback receiving code is located, and the URL
@@ -140,7 +140,7 @@ Ping URLs will look something like this: Before you can receive Trackbacks you must create a table in which to store them. Here is a basic prototype for such a table: Before you can receive Trackbacks you must create a table in which to store them. Here is a basic prototype for such a table:
$this->trackback->display_errors();
Receiving Trackbacks
-Your Ping URL
-Creating a Trackback Table
-
The incoming Trackback data can be retrieved using this function:
-- cgit v1.2.3-24-g4f1b