PDA

View Full Version : Help with technorati tags


iphimeda
06-15-2006, 03:45 PM
I browsed the wiki and the forum and I couldn't find the answer, but I appoligize if I somehow looked over it.

If in my comments I put a link with the definition rel="tag" in it, it still does not show on technoraty as a tag. How come? And is there any add-on to make technorati tags from the categorys? (although I'd prefer to be able to determine them manually.)

Besides that, is there any trackback plugin too? I didn't find anything about that until now.

greetz
vint

se.nsuo.us
06-16-2006, 05:07 AM
I don't know what you are trying to do but what I do is use Categories in RSS technorati can use categories in RSS as tags - thus most of my posts are showing up in Technorati

reflejandome
06-16-2006, 07:06 AM
i have a problem also with technorati, how can i do technorati used my rss instead read my page??? tech. doesnt add my post and i dont know the reason ...

Vernon.Trent
06-16-2006, 07:23 AM
technorati services checks their own code, which you've got per email and implemented in the page you have specified.
you can disable all the checkboxes on your technorati account and implement the code in the header (invisible)

but I agree, a tagclouds addon would be great :)

reflejandome
06-16-2006, 10:29 AM
the code is when you claim your blog, but the problem is when you post , technoratu dont update it ...

iphimeda
06-17-2006, 11:49 AM
@cryfreeman: you have to ping them. you can do that automated (http://www.technorati.com/developers/ping/) or manually (http://www.technorati.com/ping/)

iphimeda
06-17-2006, 11:52 AM
I don't know what you are trying to do but what I do is use Categories in RSS technorati can use categories in RSS as tags - thus most of my posts are showing up in Technorati

You should be able to add any given word as a technorati tag by using a link and the rel="tag" tag.

<a href="http://whateverlinkyouwant.com" rel="tag">word(s) you want as tag</a>

But that doesn't seem to do the trick, and I don't know why.

se.nsuo.us
06-17-2006, 12:43 PM
You should be able to add any given word as a technorati tag by using a link and the rel="tag" tag.

<a href="http://whateverlinkyouwant.com" rel="tag">word(s) you want as tag</a>
If my understanding of the tag mirco-format is right then the above format is probably wrong

iphimeda
06-18-2006, 12:52 PM
http://microformats.org/wiki/rel-tag => says that the tag is more defined by the url then by the word that you make linked, technorati claimes otherwise... You don't have to link to the technorati tag page, you can link to whatever you want. Confusing. :/

se.nsuo.us
06-19-2006, 05:07 AM
you can link to whatever you want. Confusing. :/
Thats why I use the category in RSS for Technorati - atleast that works for me

reflejandome
06-19-2006, 08:19 AM
Thats why I use the category in RSS for Technorati - atleast that works for me

how you can add tags in rss?? and how technorati found your rss??? it only read my main page ... thx

se.nsuo.us
06-19-2006, 10:18 AM
Technorati uses the Categories within the RSS item as Technorati tags. I have used Feedburner to enhance my RSS - one of the service offered by Feedburner is pinging Technorati

reflejandome
06-19-2006, 10:26 AM
Technorati uses the Categories within the RSS item as Technorati tags. I have used Feedburner to enhance my RSS - one of the service offered by Feedburner is pinging Technorati

i used feedburner also, so it pings techonary , how you add categories in rss ??

se.nsuo.us
06-19-2006, 12:08 PM
i used feedburner also, so it pings techonary , how you add categories in rss ??
I think they are already there by default... if not then they should be ;)

perhaps I hacked them into my copy

Eeps! looks like I am not headed for disaster - can't remember whats default and whats not

reflejandome
06-19-2006, 12:25 PM
I think they are already there by default... if not then they should be ;)

perhaps I hacked them into my copy

Eeps! looks like I am not headed for disaster - can't remember whats default and whats not

they are not by default ....

reflejandome
06-21-2006, 10:12 AM
how do you modified the rss?? thx

I think they are already there by default... if not then they should be ;)

perhaps I hacked them into my copy

Eeps! looks like I am not headed for disaster - can't remember whats default and whats not

reflejandome
06-22-2006, 07:08 AM
no help ?? thx

se.nsuo.us
06-22-2006, 08:58 AM
He he - impatient aren't we ;)
OK here it goes - open your index.php file and find the lines
$body = strip_tags( $body );
$body = htmlspecialchars($body );

then add

$query2 = mysql_query("SELECT {$pixelpost_db_prefix}categories.name FROM {$pixelpost_db_prefix}catassoc , {$pixelpost_db_prefix}categories WHERE {$pixelpost_db_prefix}categories.id = {$pixelpost_db_prefix}catassoc.cat_id AND image_id = $id");
$categories = "";
while(list($category) = mysql_fetch_row($query2)){
$categories .="<category>$category</category>"; }
$output .= "

Then find line
<link>".$cfgrow['siteurl']."?showimage=$id</link>
below that add
$categories

This should give you categories in RSS items

Note: Hacking core files is a bad idea generally, also the the above works for me may not work for everyone....

iphimeda
06-26-2006, 07:16 PM
@cryfreeman: does it work? then I'll give it a try too :d

reflejandome
06-29-2006, 07:00 AM
sorry for the delay, i go to other city because of my work.
i put categories in my rss and configure feedburner to ping techonorati, but it doesn't add the new, only do it if i ping manually,. i dont know the reason ..

@cryfreeman: does it work? then I'll give it a try too :d