vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.7 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=228)
-   -   New Posting Features - Automatic Tagging (Product) (https://vborg.vbsupport.ru/showthread.php?t=184028)

Noodles24 06-30-2008 10:00 PM

Automatic Tagging (Product)
 
Description

With vBulletin tags you can either set to require tags be completed or not. However requiring tags to be completed can easily result in low-quality tags that don't provide SEO value to your forum. With that in mind the thread title often provides better keywords than the tags that the user is forced to enter.

What this modification does is:

When a thread is started, has the user filled in tags?
Yes: Then we do nothing.
No: Then take the thread title, and strip out all words that would be invalid tags and are in the stop words list and use the remaining words as tags.

Example

User enters:

* Thread title = We like the social group email mod
* Thread tags =

vBulletin records the new thread as:

* Thread title = We like the social group email mod
* Thread tags = email, group, social

Which isn't an entirely bad set of tags and is better than none, and better than the user typing in gibberish (IMHO).

History

Based on Buro9's code at https://vborg.vbsupport.ru/showthread.php?t=179772 converted into a product for ease of updating vbulletin/plugin.

I'll be adding some additional features at some point as well.

UncoderMom 07-01-2008 01:21 AM

Fantastic!! I can REALLY use this on two of my boards!

THANKS!

yahoooh 07-01-2008 01:33 AM

installed

Charlie98902 07-01-2008 02:07 AM

How is it different from this one : https://vborg.vbsupport.ru/showthread.php?t=179927

Will it do RSS Feeds?

vibe 07-01-2008 02:13 AM

works great, installed

RvG2 07-01-2008 02:37 AM

thank you so much :)

installed

redlabour 07-01-2008 02:53 AM

Hmmmm...nice but useless if Phalynx releases his new Version in the next Days including a Function to Tag all old Threads. ;)

https://vborg.vbsupport.ru/showthrea...64#post1562964

Is there allready a White & Blacklist in this Product?

EagleNick 07-01-2008 03:36 AM

Quote:

Originally Posted by redlabour (Post 1563628)

Is there allready a White & Blacklist in this Product?

There must be, because I cannot find where in the ACP to edit the lists, or any other possible settings.

ahmedeldeep 07-01-2008 04:17 AM

very nice hack

hiepsi@ 07-01-2008 05:34 AM

Support UTF-8 exp: Trời thương --> change to Troi thuong ?

hiepsi@ 07-01-2008 05:48 AM

nice hack,
I want to group two word or three word
EXP: This is a nice hack --> Tags: this is, a nice, hack
Thanks

7lanet 07-01-2008 05:56 AM

Can you add tags from (message and title)

in the same time

Quote:

$temptags = split(' ',$post['message']);


$temptags = split(' ',$post['title']);


hiepsi@ 07-01-2008 06:27 AM

I'm newbie, I really dont know clear, please post your full code for group 2 words or 3 words
Code:

EXP: This is a nice hack --> Tags: this is, a nice, hack

jim6763nva 07-01-2008 07:44 AM

Quote:

Originally Posted by 7lanet (Post 1563696)
Can you add tags from (message and title)

in the same time

well, for starters, BBcode and Html needs to be stripped out first. I've been testing this myself but haven't had time to do anything more with it.

There should also be a way to detect phrases.

Zaiaku 07-01-2008 04:58 PM

While I'm liking this but Mr. Eyes's mod is more useful. Tagging of group words, adds tag even if author adds them. You would definitely need to add those features.

Hornstar 07-02-2008 12:08 AM

Yeah, im surprised to see this mod as there is already one out there, however thanks for sharing, ill see how you progress yours, and i might install it in the near future.

abrecher 07-02-2008 03:16 AM

Quote:

Originally Posted by Charlie98902 (Post 1563607)
How is it different from this one : https://vborg.vbsupport.ru/showthread.php?t=179927

Will it do RSS Feeds?

The product quoted is definitely more complete and feature rich but it doesn't look like it's going to be further developed. I'm going to watch this mod and I hope it'll be polished and updated on a more frequent basis.

q8salem 07-02-2008 03:32 AM

Very nice and helpfullll,,,, Installed :)

yahoooh 07-10-2008 08:34 PM

how to stop tags for this kind of number:
23/5/2008
01/4/2007
and so on

redlabour 07-10-2008 08:53 PM

Quote:

Originally Posted by Zaiaku (Post 1564114)
While I'm liking this but Mr. Eyes's mod is more useful. Tagging of group words, adds tag even if author adds them. You would definitely need to add those features.

Not only these - a Script to tag all old Threads is still missing.

principino1984 07-10-2008 09:06 PM

thanks!

Mrdby 07-10-2008 09:34 PM

Perfect!!!!

ShackMaster 07-12-2008 07:03 AM

I like this, but as others have mentioned, I hope you will consider the other important features.

KURTZ 07-12-2008 08:03 AM

just wondering: can i find some options into the ACP?

redlabour 07-12-2008 09:42 AM

Quote:

Originally Posted by ShackMaster (Post 1573381)
I like this, but as others have mentioned, I hope you will consider the other important features.

Watch this one - will soon be reactivated with a lot of other important Features.

Automatic Thread Tagger (Project Terminated)

OnR 07-13-2008 12:12 PM

Hi to all,

If you use non-english stopwords probably you faced a problem with it.Because it uses default stopwords value for english language which is automatic tagging getting value from.This plug-in fix that problem.It searches badwords then automatic tagging is going to tag without badwords.

:)

OnR 07-14-2008 10:40 AM

And there is a fix for Tag Minimum Length...

Original line in the product is ;

Code:

    if(strlen($tagtext) > 3 && !in_array(strtolower($tagtext), $badwords))
Change to ;

Code:

  if(strlen($tagtext) > $vbulletin->options['tagminlen'] && !in_array(strtolower($tagtext), $badwords))

So when you change the tag minimum length option in admincp , AT will work good.

motowebmaster 07-16-2008 02:31 AM

Thanks for this Mod.

yahoooh 07-16-2008 07:36 AM

Quote:

Originally Posted by OnR (Post 1574932)
And there is a fix for Tag Minimum Length...

Original line in the product is ;

Code:

    if(strlen($tagtext) > 3 && !in_array(strtolower($tagtext), $badwords))
Change to ;

Code:

  if(strlen($tagtext) > $vbulletin->options['tagminlen'] && !in_array(strtolower($tagtext), $badwords))

So when you change the tag minimum length option in admincp , AT will work good.

could u add any hack code to prevent auto tag for this kind of word:
02/12/2007
and so on
or replace the "/" in the tag to be "-"
thanks

OnR 07-18-2008 06:21 AM

Quote:

Originally Posted by yahoooh (Post 1576588)
could u add any hack code to prevent auto tag for this kind of word:
02/12/2007
and so on
or replace the "/" in the tag to be "-"
thanks

Hey!

There are some arrangements.

Now convert 02/12/2007 to 02-12-2007
Fixed : some stopwords and tag length problem when using ',' ' " ' in the thread title.

hscorp 07-22-2008 08:36 PM

when someone type the topic title between quotes it take it with the words

what i mean for example

"topic title"

so the tags become: "topic, title"

can u make the tags: topic, title

without the quotes

sorry i'm bad in english :D

EagleNick 07-23-2008 02:08 AM

Quote:

Originally Posted by hscorp (Post 1581756)
when someone type the topic title between quotes it take it with the words

what i mean for example

"topic title"

so the tags become: "topic, title"

can u make the tags: topic, title

without the quotes

sorry i'm bad in english :D

I agree. It does this with any character.

It would be nice if the product would automatically strip the tags of special characters other than letters and numbers.

EagleNick 07-26-2008 02:42 PM

For some reason, it doesn't work when posting using the Zoints Anonymous Posting MOD.

dimab 07-28-2008 01:57 PM

is it possible to add a feature that specific characters be stripped from the tag when allowed?
ie. remove ! exclamation points, ? question marks and the like.

wtrk 08-01-2008 07:06 PM

Quote:

Originally Posted by dimab (Post 1585978)
is it possible to add a feature that specific characters be stripped from the tag when allowed?
ie. remove ! exclamation points, ? question marks and the like.

yea please do! and also & causes a problem as its "too short to be a tag"

alqassam 08-21-2008 05:56 PM

Thanks
installed

Rob Hephner 09-29-2008 11:58 PM

Quote:

Originally Posted by wtrk (Post 1589407)
yea please do! and also & causes a problem as its "too short to be a tag"

+1 I am having an issue with that as well!

Mr.Abdullah 01-11-2009 09:15 AM

Do you work with the rss feed ??

GHC Webmaster 01-11-2009 09:54 AM

You write in your orginal post:

Quote:

With vBulletin tags you can either set to require tags be completed or not.
But I can't find this option anywhere. Where did you find it?

Gosef 02-12-2009 01:57 PM

thanks a lot


All times are GMT. The time now is 06:37 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01356 seconds
  • Memory Usage 1,810KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (5)bbcode_code_printable
  • (12)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete