WP Auto Tagger
Description: This plugin uses the Yahoo API to suggest tags based on the post content. The plugin will add a `Suggest Tags` button to the `Write Post` page sidebar.
Rating:
Size: 60.4 KB
Downloads: 963 [Download Now]
Description: This plugin uses the Yahoo API to suggest tags based on the post content. The plugin will add a `Suggest Tags` button to the `Write Post` page sidebar.
March 10th, 2008 at 2:18 am
Just downloaded and ran your plugin and got this error:
Parse error: syntax error, unexpected T_VARIABLE in line 73.
Added a “;” at the end of line 72.
So far it has been great, and doing a great job of picking out tags. Any chance that this plugin can do it to all post automatically?
March 10th, 2008 at 2:34 am
Thanks for letting me know. I had fixed that but forgot to update the .zip. You can download it again.
That’s a good idea. I’ll try to add bulk tagging for existing in the next version.
March 16th, 2008 at 10:18 am
Bulk tagging / automatic tagging is a good idea. I’m looking forward to the new version.
However, will it be possible to tag already existing posts?
March 18th, 2008 at 4:13 am
Hi,
Can you possibly make an option of auto-tagging the post with all the yahoo tags when it’s published, so that the author can let the script can take care of any tagging matters?
March 23rd, 2008 at 7:02 pm
Hi,
I really like your plugin. It doesn’t appear to be compatible with WP 2.5 though, any plans to make it compatible?
March 24th, 2008 at 12:20 am
Torabayashi,
I’ll add an option of auto-tagging in the next update.
Paul,
I don’t know what is going to be different with WP 2.5 but I will try to make the plugin compatible when its released.
March 25th, 2008 at 5:19 am
Update: Added option to automatically tag post on save.
March 25th, 2008 at 7:32 am
I appreciate the update, it’s very handy to auto tag on save. I thought I’d let you know, there’s still a problem with WP 2.5 however, clicking the ‘Suggest Tag’ button doesn’t work, it only results in an error, fortunately using the button isn’t actually needed anymore.
–Paul
March 26th, 2008 at 7:16 am
Hi,
After installing WP 2.5-RC2, I’m getting an error on the auto draft save function that appears to relate to your plugin.
The error is:
Warning: array_merge() [function.array-merge]: Argument #2 is not an array in/home/macnight/public_html/wp-content/plugins/auto-tagger.php on line 130
Warning: array_walk() [function.array-walk]: The argument should be an array in/home/macnight/public_html/wp-content/plugins/auto-tagger.php on line 131
Warning: array_unique() [function.array-unique]: The argument should be an array in/home/macnight/public_html/wp-content/plugins/auto-tagger.php on line 132
Warning: in_array() [function.in-array]: Wrong datatype for second argument in/home/macnight/public_html/wp-content/plugins/auto-tagger.php on line 133
Warning: Cannot modify header information - headers already sent by (output started at /home/macnight/public_html/wp-content/plugins/auto-tagger.php:130) in/home/macnight/public_html/wp-includes/classes.php on line 805
If this is your issue, as it seems to be, would this be something you can fix easily enough?
Peace,
Gene
March 26th, 2008 at 10:35 am
I wanted to add a new wrinkle. That error appears only on the initial auto save of a draft post. On subsequent auto saves, after I do a full save of the post, there is no problem. I hope that doesn’t make this all the more difficult for you to figure out.
Peace,
Gene
March 27th, 2008 at 1:40 am
Ok, thanks for listening!
March 30th, 2008 at 8:04 am
I have been getting the same errors as Gene, the solution was fairly simple. I added these lines to auto-tagger.php and it seems to work for me…
if ($results[’ResultSet’][’Result’] == “”) {
return $tags;
exit();
}
Just find….
129. $results=unserialize($response);
130. $tags=array_merge(explode(’,',$tags), $results[’ResultSet’][’Result’]);
and change it too…
129. $results=unserialize($response);
130. if ($results[’ResultSet’][’Result’] == “”) {
131. return $tags; exit();
132. }
133. $tags=array_merge(explode(’,',$tags), $results[’ResultSet’][’Result’]);
March 30th, 2008 at 8:50 am
Okay I made a small typo in my code, sorry guys. instead of “if ($results[’ResultSet’][’Result’] == “”) {” on line 130 you need to put “if (if (!is_array($results[’ResultSet’][’Result’])) {) {”
March 30th, 2008 at 8:06 pm
This doesn’t seem to be working with WordPress version 2.5
March 31st, 2008 at 11:48 am
Strange I’m running 2.5 as well.
Just looked, did you copy and past the code from above?
Just tried it my self and the quote simples been changed. double check that the correct single quotes are being used in the code, and if your still having problems.
Are you getting the same error message or has it changed at all?
March 31st, 2008 at 4:27 pm
I’m not getting an error, the tags just aren’t showing up in the tag box for me when I click the ’suggest tags’ button
March 31st, 2008 at 6:09 pm
Stuart: I tried pasting in your code snippet but it caused a fatal error and the website would no longer load.
Reality: I think you’re seeing the same problem I am, you click the button and nothing seems to happen. But additionally, in IE7.0 anyway, you’ll see an error icon in the status bar, double click the icon and a message box pops up with the error message. Browser settings will also affect when and if you see the errors in the page.
Plugin Author: There appears to be two distinct problems, 1) errors displayed when saving posts and pages, 2) clicking the auto tag button doesn’t add the tags.
–Paul
April 21st, 2008 at 12:50 pm
Love this plug. However, I’m installing it in a site that has over 150 posts … no tags. Is there a way to tag them without going through and then save again?
April 24th, 2008 at 3:39 am
Do you plan to update this for WP 2.5?
April 30th, 2008 at 7:42 am
On my wordpress 2.5.1 clicking on suggest tag closes the window and saves the suggested tags to the article. I expected suggestions I can approve - not a forced add.
Anyway, the plugin is a great idea - I really hope you polish the code so it works with the 2.5.1 Version …
May 1st, 2008 at 2:56 am
Can anyone of you help me adding a function that excludes some tags (I’ve already tried wp_tag_cloud(’exclude=word1,word2);…
Best regards,
Alexander.
May 11th, 2008 at 11:02 am
hi. Thanks for plugin
perfect.
regards
May 22nd, 2008 at 1:31 pm
Version 2.5.1 I’m getting this error
PHP Fatal error: Call to undefined function curl_init() in /var/www/peter/blog/wp-content/plugins/auto-tagger.php on line 118
May 31st, 2008 at 6:27 am
I can not seem to get this plugin work for me….
I tried the download…and I get errors.
I then tried to edit the script like suggested above with no luck.
I keep getting error messages when even try to activate the plugin.
Can someone please help me find a working copy of this plug…please and thanks.
Cheers
Chad
May 31st, 2008 at 6:36 am
Here is the section of code were the issue seems to be:
if(curl_errno($ch)) return curl_error($ch);
curl_close($ch);
$results=unserialize($response);
if (!is_array($results[’ResultSet’][’Result’])) {) {
return $tags; exit();
}
$tags=array_merge(explode(’,’,$tags), $results[’ResultSet’][’Result’]);
please help me find whats wrong with the code or if any have a working plugin please provide and download for this plugin.
Thanks in advance.
Chad
thanks
June 1st, 2008 at 6:07 pm
Hi - Just downloaded the plugin on June 2nd & got the errors listed above - tried editing the file as per your comment and now get a fatal error unexpected T_IF - can you update the zip file to be correct so I can reinstall it please?
I am on WP 2.5.1
July 8th, 2008 at 9:31 am
The plugin has been updated for WP 2.5 (use the older version for WP 2.3).
July 9th, 2008 at 11:04 am
Manual suggest working great now, thanks very much!
Where’s your donation button?
Peter wp 2.5.1
July 10th, 2008 at 11:32 am
Is there a way to exclude certain words from being tagged?
July 23rd, 2008 at 6:09 am
Auto Tagger is a great plugin
August 19th, 2008 at 5:48 pm
What happened to Auto Tagger in 2.6.1? It was working great but now I keep getting an error like the one above:
Warning: array_merge() [function.array-merge]: Argument #2 is not an array in /home/yyyyyy/public_html/xxxxx/wp-content/plugins/wp-auto-tagger/auto-tagger.php on line 130
also on line 131 and 132
Please advice. I love this little plugin!
Thanks
August 20th, 2008 at 1:32 am
@Kelly: I have updated the plugin. Please re-download it and let me know if it works for you now.
August 21st, 2008 at 8:06 pm
I have done everything above and got this error as well:
Parse error: syntax error, unexpected T_IF in ….. on line 130
Any suggestions?
September 1st, 2008 at 10:22 pm
iDope — I love this plugin. I am getting a similar error to the above in WP2.6.1 and plugin ver 1.3.1.
In the below case, I was posting via XMLRPC. Of 35 files, 3 returned this error and would not post. Error seems to be related to the previously mentioned error mentioned by @Kelly above.
junk after document element at line 2, column 0, byte 7 at c:/Perl/lib/XML/Parse
r.pm line 187
Warning: array_walk() [function.array-walk
]: The argument should be an array in /home/ccadmin/public_html/wordpress
/wp-content/plugins/wp-auto-tagger/auto-tagger.php on line 131
Warning: array_unique() [function.array-
unique]: The argument should be an array in /home/ccadmin/public_html/wor
dpress/wp-content/plugins/wp-auto-tagger/auto-tagger.php on line 132
Warning: in_array() [function.in-array]:
Wrong datatype for second argument in /home/ccadmin/public_html/wordpress/wp
-content/plugins/wp-auto-tagger/auto-tagger.php on line 133
Warning: Cannot modify header information - headers already sent by (out
put started at /home/ccadmin/public_html/wordpress/wp-content/plugins/wp-auto-ta
gger/auto-tagger.php:131) in /home/ccadmin/public_html/wordpress/wp-includes/
class-IXR.php on line 379
Warning: Cannot modify header information - headers already sent by (out
put started at /home/ccadmin/public_html/wordpress/wp-content/plugins/wp-auto-ta
gger/auto-tagger.php:131) in /home/ccadmin/public_html/wordpress/wp-includes/
class-IXR.php on line 380
Regards,
Mark
September 9th, 2008 at 9:26 am
I have the same problem as Kelly and I have just tried uploading the new version. My error says:
Warning: array_walk() [function.array-walk]: The argument should be an array in /home/…/wp-content/plugins/wp-auto-tagger/auto-tagger.php on line 131
Warning: array_unique() [function.array-unique]: The argument should be an array in /home/…/wp-content/plugins/wp-auto-tagger/auto-tagger.php on line 132
Warning: in_array() [function.in-array]: Wrong datatype for second argument in /home/…/wp-content/plugins/wp-auto-tagger/auto-tagger.php on line 133
Warning: Cannot modify header information - headers already sent by (output started at /home/…/wp-content/plugins/wp-auto-tagger/auto-tagger.php:131) in /home/…/wp-includes/pluggable.php on line 770
It only occurs when I try to save a post or publish a page. When I publish a post or save a page it works fine.
September 29th, 2008 at 9:29 am
I am still getting the “array” errors above. I have downloaded the updated version and reuploaded the plugin several times. Any ideas?
October 1st, 2008 at 2:35 am
Hi. Love the plugin. I am getting an error when posting javascript to a page (a Google video). The plugin tries to tag the page, and there is no checkbox to turn it off. Here’s the error
Warning: array_walk() [function.array-walk]: The argument should be an array in mydomain.com/wp-content/plugins/wp-auto-tagger/auto-tagger.php on line 131
Warning: array_unique() [function.array-unique]: The argument should be an array in mydomain.com/wp-content/plugins/wp-auto-tagger/auto-tagger.php on line 132
Warning: in_array() [function.in-array]: Wrong datatype for second argument in mydomain.com/wp-content/plugins/wp-auto-tagger/auto-tagger.php on line 133
Warning: array_walk() [function.array-walk]: The argument should be an array in mydomain.com/wp-content/plugins/wp-auto-tagger/auto-tagger.php on line 131
Warning: array_unique() [function.array-unique]: The argument should be an array in mydomain.com/wp-content/plugins/wp-auto-tagger/auto-tagger.php on line 132
Warning: in_array() [function.in-array]: Wrong datatype for second argument in mydomain.com/wp-content/plugins/wp-auto-tagger/auto-tagger.php on line 133
Warning: Cannot modify header information - headers already sent by (output started at mydomain.com/wp-content/plugins/wp-auto-tagger/auto-tagger.php:131) in mydomain.com/wp-includes/pluggable.php on line 770
October 1st, 2008 at 4:01 am
I have released an update that should fix the errors. Please get the updated version.
October 1st, 2008 at 4:10 am
As I said in my post, I have downloaded and used the update and it gives errors as above. Is it possible that there is some conflict with other plugins??
October 1st, 2008 at 4:16 am
You need version 1.3.2 which I released today. Are you having problems with this version too?
October 1st, 2008 at 8:46 am
No - I didn’t realise there was an even newer version. I have now tested it and it seems to work perfectly. Thank you - brilliant service.
October 2nd, 2008 at 1:10 pm
Hi,
I am using WP 2.5 and would love to use your plugin. I have just downloaded the latest version, and unfortunately it doesn’t work for me. When I activate the plugin, WP tells me that the plugin has been activated, but I don’t see any menu related to it (even in the write post section).
Any ideas?
Thanks a lot!
October 2nd, 2008 at 5:56 pm
Looks like it is working now
October 3rd, 2008 at 5:12 am
Glad it worked!
October 4th, 2008 at 2:30 pm
Hi,
I’m a little confused how the auto tagging works. Does it just do it, or do you have to do something? I have it activated but don’t see any other settings panels for it.
Thanks!
October 27th, 2008 at 1:09 am
Hi. Here’s a feature request - stopwords or words that can be excluded from the generated tag list. “nbsp” and “rsquo” are examples
November 5th, 2008 at 11:15 am
Thanks for this plugin. I like it but am a little confused. I have 2 blogs but one displays the categories and tags below each post and the other doesn’t. The plugin is activated in both. What am I missing in blogsunlimited.ca that needs to get the categories and tags appear below each post?
November 6th, 2008 at 1:16 am
Your other theme might not support tags. IIRC, the tag enable your theme you have the insert the function the_tags() in your theme.
January 5th, 2009 at 6:39 am
Top stuff as always from you. Possibility to quickly update it for bulk/automatic tagging?
Leave a Reply
Theme Search
Themes
Wordpress Themes & Layouts is proudly powered by WordPress
Entries (RSS) and Comments (RSS).
24 queries. 1.162 seconds.