Thread Starter
cass
(@cass)
It looks like it already is fixed…anyone who knows anything about this…..please chime in……..
// Send a Trackback
function trackback($trackback_url, $title, $excerpt, $ID) {
global $wpdb;
$title = urlencode($title);
$excerpt = urlencode($excerpt);
$blog_name = urlencode(get_settings(‘blogname’));
$tb_url = $trackback_url;
$url = urlencode(get_permalink($ID));
$query_string = “title=$title&url=$url&blog_name=$blog_name&excerpt=$excerpt”;
$trackback_url = parse_url($trackback_url);
$http_request = ‘POST ‘ . $trackback_url[‘path’] . ($trackback_url[‘query’] ? ‘?’.$trackback_url[‘query’] : ”) . ” HTTP/1.0\r\n”;
$http_request .= ‘Host: ‘.$trackback_url[‘host’].”\r\n”;
$http_request .= ‘Content-Type: application/x-www-form-urlencoded; charset=’.get_settings(‘blog_charset’).”\r\n”;
$http_request .= ‘Content-Length: ‘.strlen($query_string).”\r\n”;
$http_request .= “User-Agent: WordPress/” . get_settings(‘version’);
$http_request .= “\r\n\r\n”;
$http_request .= $query_string;
if ( ” == $trackback_url[‘port’] )
$trackback_url[‘port’] = 80;
$fs = @fsockopen($trackback_url[‘host’], $trackback_url[‘port’], $errno, $errstr, 4);
well, do trackbacks work for you? you can test them out here:
http://www.tamba2.org.uk/wordpress/TestTrack/index.php
Thread Starter
cass
(@cass)
Sometimes they work for me.
I use notetab pro also. One thing you need to make sure to do is under ‘document’ menu item at the top of the screen pull down and turn ‘word wrap’ off. If word wrap is on the line numbers won’t match up.