Hi guys!!

I installed the technorati modulde from http://www.flevour.net/node/124 but I recieved this message:

warning: implode(): Bad arguments. in xx\xx\modules\technorati_tag\technorati_tag.module on line 64.

Any idea how to fix this problem...?

Thanks..

Comments

Stefanos Karagos’s picture

i have the same problem too...
any help please?

any alternative solution, maybe?

Thnx

fcandia’s picture

Hi skara

My current solution is awtags, it is working fine for me. Visit this links.

http://www.autowitch.org/tags/861

Good luck!!

F.

Stefanos Karagos’s picture

Hi fcandia!
i'll try it!

Thank you
-S

-------------------------
the art of war is to know the weakness of your enemy ;)

boris mann’s picture

Drupal with pathauto turned on actually outputs category terms as Technorati-compatible tags automatically. See my recipe for how to enable this.

--
Please turn on the "story" type, so we can use it to have an archive of best practices, how tos, and configuration recipes.

EmanueleQuinto’s picture

I read somewere (maybe on cvs discussion or issues) the problem arises from nodes without tags (tipically inserted before module activation).

The problem is "warning: implode(): Bad arguments. in xx\xx\modules\technorati_tag\technorati_tag.module on line 64." so let's go to the code...

60: while($tag = db_fetch_object($result)){
61: 	$tags[] = $tag->tag;
62: }
63: // always return string (thus imploding the array) to avoid problems with forms and previews
64: return array('technorati_tags' => implode(" ", $tags));

If db_fetch is empty $tag is void so on line 64 implode() has some problem.
You can try this patch:

64: if ($tags) return array('technorati_tags' => implode(" ", $tags));

It worked for me.

ema

ruebella’s picture

Thanks Emanuele, that worked great for me. I was having the same problem since my technorati module was just enabled. I had several hundred un-tagged entires which caused the problems.

Thanks again!

zon-1’s picture

How do I tag 2 words together, ie "Red Hat" ?

reikiman’s picture

My technorati module

  • allows you to embed the claim code
  • pings technorati
  • links to search technorati for pages that link to the current page
  • links to the technorati tag page

- David Herron - http://7gen.com/