View Full Version : New Posting Features - Automatic Thread Tagger
Rik Brown
11-26-2008, 04:33 AM
NVM Figured out how to get it work
I get this error when importing xml file:
"The following dependencies were not met:
1. This product is not compatible with version 3.8.0 Beta 3 of vBulletin. (Compatible starting with 3.7.0 / Incompatible with 3.7.99 and greater)"
I'm guessing that since I installed this before upgrading to the 3.8.0 beta, I'm not getting any such error message. All the same, its creating the all the tags fine as far as I can tell. I'm wondering if Phalynx put that error message in there as a precaution in case there were any changes to the vb database schema in successive releases of vb.
-- Rik
KevinL
11-26-2008, 11:56 AM
go into the xml and change the 3.7.99 to 3.8.1 and it should work OK.
sherwood
11-28-2008, 11:21 AM
that does work to allow you to install it but there in no admincp options to change :S
any idea why?
ericdesmontagne
11-29-2008, 04:48 PM
Even if cron task is well activated, old discussions without any tag are not automatically tagged. Do you know why ?
Thankyou for your good job.
vB 3.7.4 PL1
Last version of Autotag
ericdesmontagne
11-30-2008, 05:00 AM
Well, each autotag cron look like this :
117915 Auto Thread Tagger 2008-11-30 02:31:41 Auto Thread Tagger processed 0 threads.
Meanwhile, i have thousand thread not tagged...
Anybody have an idea ?
sdavis2702
11-30-2008, 06:42 PM
Sweet... thanks!
dfc005
12-01-2008, 08:40 AM
Once again, the filters are run before the prefixes because of "I didn't thought someone would need to filter the predefined prefixes". I will change this in next bigger version.
Hey mate, has this been added yet?
eh9 daddy
12-02-2008, 03:32 PM
Well, each autotag cron look like this :
117915 Auto Thread Tagger 2008-11-30 02:31:41 Auto Thread Tagger processed 0 threads.
Meanwhile, i have thousand thread not tagged...
Anybody have an idea ?
i have the same problem on vb 3.8 b4
paketeto
12-03-2008, 01:30 PM
The mod is perfect, i've just found a point to improve:
I have configured the mod to ad tags to the user tags (if any added), and i noticed that the replacement characters only works on the tags created by the mod, but no on the user's one (excuse my english).
For example:
I have a replacement character rule: 'ó'=>'o'
Users write in tags box: jamón
And then submits (with ajax off), and when seeing the created tags, the replacement characters went fine on automatic tags, but ignored for the user word, so "jamón" stils like "jamón", instead "jamon".
Is my fault or is something to do?
Thank you.
MrNase
12-03-2008, 01:44 PM
i have the same problem on vb 3.8 b4
Same here on vB 3.7.4
My log looks like this:
4191 Auto Thread Tagger 16:41, 03.12.2008 Auto Thread Tagger processed 0 threads.
4190 Auto Thread Tagger 16:37, 03.12.2008 Auto Thread Tagger processed 2 threads.
But there are many more threads without tags. :(
Edit:
I think I got it… The default value of taglist is not '0' or empty it is 'NULL' maybe that makes the difference. :)
So you should change the query in /cron/autotagger.php into this:
$threads = $vbulletin->db->query_read("SELECT
t.taglist,
t.dateline,
t.forumid,
t.postuserid,
t.title,
t.threadid,
t.prefixid
FROM " . TABLE_PREFIX . "thread AS t
WHERE t.taglist IS NULL AND autoskip=0
");
It results in:
4200 Auto Thread Tagger 16:54, 03.12.2008 Auto Thread Tagger processed 3273 threads.
4199 Auto Thread Tagger 16:54, 03.12.2008 Auto Thread Tagger processed 500 threads.
4198 Auto Thread Tagger 16:53, 03.12.2008 Auto Thread Tagger processed 500 threads.
black_diamond
12-04-2008, 03:30 PM
Anyone got any ideas, I have done this from the other thread:
Using this to tag RSS feeds
Unfortunately vBulletin does not include (that I can see) a hook that is called when an RSS thread is created. This means that it is not possible to hook into the code and perform auto tagging. All is not lost though, however it does require an edit to one of the default vBulletin files.
This is what you need to do:
Open includes/cron/rssposter.php
Find the following line:
Code:
$itemdata->set('ipaddress', '');On a new line immediately after this paste in:
Code:
require_once(DIR . '/includes/functions_autotagger.php');
$autotags = GetAutoTags($itemdata->fetch_field('title'), "", true, $itemdata->fetch_field('forumid'), $feed['userid'], $item['rssfeedid']);
$itemdata->set('taglist', $autotags);Save the file and place on you server.
Once this is done, and you have enabled RSS tagging in the configuration then RSS threads will be tagged.
But all I get in the tag box of an RSS feed thread is the word "Array" ,Thanks
LoRdGd
12-04-2008, 05:29 PM
Is it possible to auto tag all threads im mu board? I have installed this modyfication, but i dont know how to do it. Can somebody help me?
24hourForum.com
12-04-2008, 05:38 PM
Anyone got any ideas, I have done this from the other thread:
Using this to tag RSS feeds
Unfortunately vBulletin does not include (that I can see) a hook that is called when an RSS thread is created. This means that it is not possible to hook into the code and perform auto tagging. All is not lost though, however it does require an edit to one of the default vBulletin files.
This is what you need to do:
Open includes/cron/rssposter.php
Find the following line:
Code:
$itemdata->set('ipaddress', '');On a new line immediately after this paste in:
Code:
require_once(DIR . '/includes/functions_autotagger.php');
$autotags = GetAutoTags($itemdata->fetch_field('title'), "", true, $itemdata->fetch_field('forumid'), $feed['userid'], $item['rssfeedid']);
$itemdata->set('taglist', $autotags);Save the file and place on you server.
Once this is done, and you have enabled RSS tagging in the configuration then RSS threads will be tagged.
But all I get in the tag box of an RSS feed thread is the word "Array" ,Thanks
i added the codes and no tags...
24hourForum.com
12-04-2008, 05:39 PM
Is it possible to auto tag all threads im mu board? I have installed this modyfication, but i dont know how to do it. Can somebody help me?
yes, go into cp admin, and click on maintance and scroll to the bottom and find TAG ALL THREADS and run it!
I had to uninstall this product because it shows a javascript error "object required" line:380 car:8 every time I change the focus from Subject to Message input.
Phalynx
12-05-2008, 10:53 AM
Please, DON'T EDIT YOUR FILES, as this is not necessary since v1.0.x. RSS are indexed automatically. See also this post for a fix for the newest beta:
https://vborg.vbsupport.ru/showpost.php?p=1677769&postcount=510 (thanks for MrNase!)
If you get JavaScript errors by changing focus from subject to message revert your templates or just disable the AJAX-Tagging.
KevinL
12-05-2008, 11:37 AM
I shut off the add the prefix in the tag and it's auto tagging them again.
yasser4101
12-06-2008, 11:59 AM
hanks
:)
PHILIPS-08
12-06-2008, 04:40 PM
thanx mate good one
MuTheMatrix
12-23-2008, 02:26 AM
thanks for this.
is a lot helpfull in my forum.
InsaneIndeed
12-24-2008, 09:52 PM
i don't mean to sound stupid, but i'm new to vbulletin, but where should i upload the "upload" file
i mean should i have it in my includes file, or just under the vbulletin directory??
lovechandigarh
12-25-2008, 03:00 PM
i don't mean to sound stupid, but i'm new to vbulletin, but where should i upload the "upload" file
i mean should i have it in my includes file, or just under the vbulletin directory??
Good Hack but for the RSS thing... Works till the latest 3.8 rc2
Applied at www.ioi.in :)
Well, the upload forlder is the folder whose contents you should upload in your vbulletin forum directory.
Deviant K1
12-26-2008, 06:48 AM
First off, Phalynx... great mod! :up: I truly appreciate how much work you put into your mods and the support you give back to the community... even if it takes more time than most here would give you for posting the latest updates.
Secondly, **INSTALLED**
Finally, after spending a large amount of time (at least I like to think so :)), of browsing the posted support issues some users were having, I am happy to say I haven't come across anything that resembles any of the posted issues. Works great and all the "Tagging" that needs to be done is working perfectly.
Qwest
01-02-2009, 06:44 PM
Working great for us "as-is" for the current 3.8 beta. -- Rik
I tried to install this on my 3.8 board ad it says the product is not compatible. Then lists the 3.7 version it's compatible with.
Scooty
01-02-2009, 07:37 PM
Great mod! Easy to install and works as designed.
Rik Brown
01-03-2009, 12:35 AM
I tried to install this on my 3.8 board ad it says the product is not compatible. Then lists the 3.7 version it's compatible with.
Go back to posts 501-502 in this thread and that should fix it for you. -- Rik
Scooty
01-03-2009, 09:02 PM
I installed this recenty but have since removed it. I noticed on everypost that was auto tagged, appeared a small tag icon. When I double clicked on this icon, it highlighted the post subject, once highlighted, I was able to change the post subject, i.e. remove a word, delete a letter etc. Not sure if it was because I was logged in as admin, but it made me nervous.
Now I'm not saying anything bad about the mod as it my just be my dumb luck.
Pease try for yourselves. Double click the little tag icon that appears next to each post if you can.
If this is a feature I apologize in advanced.
KevinL
01-03-2009, 10:11 PM
Thats a feature of vbulletin.........
Scooty
01-04-2009, 07:46 AM
Oh okay cool and thanks!
abrecher
01-08-2009, 08:40 PM
Is this mod 3.8 compatible ?
inciarco
01-08-2009, 10:09 PM
Hello.
I've just noticed when I tried to Automatically Tag all the Threads of my Forum, that on Maintenance -> Upsate Counters I'm having the following Error Message where there is suppose to be the "Delete Auto Tags" and "Auto Tag Threads" Options:
Parse error: syntax error, unexpected $end in /home/zzz/public_html/forums/admincp/misc.php(1790) : eval()'d code on line 135
Do you know why this can be caused? or perhaps what I should look to locate what's wrong? :confused:
When I first Installed the Product it worked fine, but somehow I'm getting this Error Now. I have vB 3.7.3 PL 1.
I tried Uploading the Files Again and also Re-Installing and Overwriting the Product and nothing happened.
I appreciate your Guide.
My Best Regards.
:)
I found the Answer; I customized a Mod (For Including a BB Code Table) and somehow it caused some Conflict in some Plugin of that Mod; so, Disabling Mod by Mod and Refreshing the Maintenance -> Update Counters Window, I discovered that Specific Mod causing the Trouble; so I decided to Disable that Mod because this Auto-Tag Mod is way more Important.
I Hope this Helps persons with that same Error, the Answer is go Mod by Mod Disabling One by One, and seeing Differences on the Error Message, and eventually by Disabling One or perhaps more Mods (see Differences on "eval()'d code on line ZZZ") the Error Code will Go Away and then the Page you're Trying will Load Ok.
My Bes Regards.
:)
redlabour
01-09-2009, 02:56 AM
Is this mod 3.8 compatible ?
Yes.
Phalynx
01-09-2009, 09:30 AM
Automatic Thread Tagger has been updated to 1.2:
- Fixed error with missing threadid's
- Fixed error with AJAX and prefix
- Fixed error with not indexing tags via cron
- Added polish, spain, english stopwords
- Compatibel with vBulletin 3.8
madmax1228
01-09-2009, 10:08 AM
Thanks for the update.
VargTimmen
01-09-2009, 10:32 AM
Thanks for the update!
Subah
01-09-2009, 11:00 AM
thanks for the update :)
payman
01-09-2009, 01:14 PM
thanksal lot :up:
Nadeemjp
01-09-2009, 02:51 PM
does it work with 3.8?
Phalynx
01-09-2009, 03:44 PM
Nadeemjp, why do you ask in 3 different threads of 3.7 hacks where you could take a look at the 3.8 hacks and find it there? Yes, it is compatible, just check the 3.8 mod section.
luket79
01-09-2009, 05:44 PM
Question - Does this resolve the issue of using thread prefixes? For example, if the user chooses no prefix on a board that has the option, a tag is created called "no prefix".
Is this something that is fixed here as well by chance?
Thanks
Phalynx
01-09-2009, 09:01 PM
Yes, as stated in the changelog.
ArnyVee
01-10-2009, 12:41 AM
Should we have "enabled ajax?" as 'yes' or 'no'?
What differences will I experience if I move it to 'yes'?
Thanks for the update, by the way! :D
Phalynx
01-10-2009, 05:24 AM
Should we have "enabled ajax?" as 'yes' or 'no'?
What differences will I experience if I move it to 'yes'?
If you move it to yes, Ajax will be enabled. Surprise, surprise ;)
Disable it to avoid problems.
ArnyVee
01-10-2009, 11:55 AM
LOL....not sure that it answered my question, but I guess that I didn't ask it correctly.
If I move it to "yes" on 'enabled ajax?', would would be the potential problems that I would face?
MuTheMatrix
01-10-2009, 08:55 PM
exlent, product updated...
thanks.
Phalynx
01-11-2009, 07:03 AM
If I move it to "yes" on 'enabled ajax?', would would be the potential problems that I would face?
I have no clue. This is the same question to disable vBulletin's AJAX functionality to avoid problems. Problems could occur, but must not.
Talk-Pets
01-12-2009, 09:39 AM
I am trying to install this but get the error "You need to upload includes/functions_autotagger.php first!"
Problem is, that file doesnt excist in the now two zips that I downloaded... Ideas?
Phalynx
01-12-2009, 10:02 AM
It's located in the ZIP in a subdirectory:
\upload_to_ftp\includes\functions_autotagger.php
Talk-Pets
01-12-2009, 10:43 AM
I?m sorry but its not to be found in any of the Zips I have downloaded :confused:
Phalynx
01-12-2009, 12:39 PM
This is a problem on your side, as the ZIP contains all what is needed. The new version has been downloaded 221 times, so I doubt anybody else has the same problem.
Use another utility to unzip the ZIP.
Talk-Pets
01-12-2009, 12:43 PM
And its impossible to just send me that one file missing?
I?ll ask for someone else to download and unzip the file later and if problem still occurs, then I?m sorry to not be able to use your product as it seems to be a good one :)
rellek
01-12-2009, 06:19 PM
Thanks for your addon.
But I have a little problem.
An untagged thread, including "at&t" in the topic. Let the automatic tagger tag all threads, it will add "at&t" to the taglist.
Unfortunately, this tag does not work. You can click it but you'll receive an error message about an invalid tag.
Posting a new thread with this tag (manually entered) is fine and works.
Can you please check this out? Thanks...
Phalynx
01-12-2009, 06:36 PM
The ampersand is typically filtered out, it seems it is not beeing translated into html &
Create a new replacement filter: '&'=>'&'
rellek
01-12-2009, 06:48 PM
Hi,
thanks, but I'm sorry, that did not help. I added that, deleted all auto-tags and re-created them.
My filterlist looks like that:
''s'=>''
'&' => '&'
'&'=>'and'
'"'=>''
'('=>''
')'=>''
'"'=>''
'''=>''
'!'=>''
'^'=>''
'*'=>''
'['=>''
']'=>''
'{'=>''
'}'=>''
'~'=>''
'?'=>''
'<'=>''
'>'=>''
':'=>''
';'=>''
'='=>''
'+'=>''
'-'=>''
'_'=>''
'/'=>' or '
'\'=>' or '
'.'=>''
' & '=>'and'
Here's a link of an affected thread:
http://board.rellek.org/web-scene/t-positivliste-gegen-spam-2040/p1.html
And here's a thread where I added this tag manually (and here everything is fine)
http://board.rellek.org/test-spam-forum/b-40317/p1.html
(Well, okay. Now after adding "at&t" manually to another thread, I don't get the error message any longer, but it does not find the old thread, anyway.)
BANDiT600
01-14-2009, 02:02 PM
I've installed newer version on my vBulletin v3.7.2 and when I create new thread ATT doesn't tag a thread...
luket79
01-17-2009, 10:08 PM
I just installed on 3.8, appears to be working but the instructions say I am suppose to run the auto thread tagger again to complete installation. Do I have to do this if I am upgrading and it appears to be working?
Phalynx
01-18-2009, 09:28 PM
I just installed on 3.8, appears to be working but the instructions say I am suppose to run the auto thread tagger again to complete installation. Do I have to do this if I am upgrading and it appears to be working?
You need to run it only on first installation.
Blade-uk
01-19-2009, 08:49 AM
I've installed it and ran the update tags and everything was fine. I've created a new thread and it hasn't put the tags in automatically, i have to update the counters.
Any ideas?
Andy
Phalynx
01-19-2009, 09:01 AM
Check settings to see if "Enabled the auto tagger for newthread" is enabled. Otherwise it will tag new threads only at the night via cron.
Blade-uk
01-19-2009, 09:07 AM
Brilliant, thanks :D
Andy
rellek
01-20-2009, 06:29 PM
I guess there's no solution for my problem (https://vborg.vbsupport.ru/showpost.php?p=1710033&postcount=554)? :(
Phalynx
01-21-2009, 10:03 AM
I guess there's no solution for my problem (https://vborg.vbsupport.ru/showpost.php?p=1710033&postcount=554)? :(
Regarding this I have no solution, sorry.
SpottySocks
01-25-2009, 11:26 AM
Excellent, thank you :) Working well on 3.8
tolyk
02-09-2009, 03:23 PM
thanks !
bymetinay
02-12-2009, 02:10 PM
thanks...
Jiggles
03-01-2009, 11:36 PM
The feature to tag rss says to refer to the product page for information on files that need to be edited but I can't find anything on this. I didn't read the whole thread... was this requirement changed? If not which file(s) needs to be changed?
Thanks
Jiggles
03-01-2009, 11:43 PM
Nevermind... found it in the readme. I guess no changes need to be made?
Phalynx
03-02-2009, 07:01 AM
You are right. Where did you read about that file edit?
SpecialKdkj
03-04-2009, 06:15 PM
Hey Phalynx, great work. I have a few questions:
Where is the exclusion built for removing usernames from tags? I want to call my own custom function if a username is found, but I can't seem to find the relevant portion of code.
In addition, what if I wanted to build the taglist based on both the title and the content? Would I just concatenate the title with the pagetext prior to running the exclusions and filters?
maxicep
03-10-2009, 07:47 AM
if i select "Add prefix as a tag?" option, then auto. tagging not working on which forum have prefix option ? Any fix for that ?
Thanks
HaS?R
03-11-2009, 07:28 PM
Thanks.
TaMpE
03-12-2009, 11:17 PM
damn! I'm getting the "flood" error again! :(
I used to installed this mod before it was updated to this latest version and I got "flood" error so I uninstalled it again decided to wait until there's a new version for this mod and now here's the new version giving me "flood" error again!
I'm running 3.7.4 PL1 (both versions have this error on this vB version)
This is how it looks like,
https://vborg.vbsupport.ru/external/2009/03/28.png
Please someone help, I'm so stressed about this and I really want to have this feature on my forum.
Thank you,
TaMpE
Phalynx
03-18-2009, 10:35 AM
What do you mean with "flood"? The screenshot does not say anything...
geckoz
03-18-2009, 09:33 PM
Installed this on my forum but I don't see any tags anywhere. How do you make the tags visible???
vbplusme
03-19-2009, 04:50 AM
What do you mean with "flood"? The screenshot does not say anything...
Got the same thing. Any ideas where or why its showing up? Just a blank screen with the word "flood" at the top of it? Exactly the same as TaMpE's screenshot.
firstimecaller
03-19-2009, 09:22 AM
Installed this on my forum but I don't see any tags anywhere. How do you make the tags visible???vBulletin options in your admin panel. > tagging options
geckoz
03-20-2009, 09:31 AM
vBulletin options in your admin panel. > tagging options
Thank you! I've enabled everything, of course. But still ... no auto-tagging. Why?!
Makaveli007
03-20-2009, 09:05 PM
Installed, Thanks. The auto tag old threads feature is amazing.
soundbarrierpro
03-23-2009, 12:08 PM
Marks installed**
Nominated for MOTM
Patiala King
03-26-2009, 08:08 AM
nice mod!!
jskoh
03-26-2009, 10:28 AM
how to put the tagger in forums home? i can only see it in search page. anyone?
Hello why this replacements doesnt work??
'σ '=>'ς'
'Σ '=>'ς'
I wont all the last Σ and σ become ς
byt no lack..
got a small problem when the title is like bla:bla the tag is balbla any way to fix that ?
Remove the ':'=>'' from hack settings (replacements)
marshal_ramdev
03-29-2009, 06:40 PM
thanks
Azonaco
03-30-2009, 02:14 AM
This is a wonderful mod. Thanks again.
getting the same flood error :S
creative-friend
04-03-2009, 10:32 PM
Done
Thanks Alot...
Farman
05-26-2009, 06:18 AM
great mod, installed !
thincom2000
07-02-2009, 03:56 AM
The cron is deadly to boards with many threads... the cron query returns every thread in the database, (the 500 "limit" applies to how many loop recursions are processed), where it should be limiting the query itself. Once that's fixed, we face a table scan - an INDEX should be added on taglist and autoskip:
ALTER TABLE " . TABLE_PREFIX . "thread
ADD INDEX taglist (taglist ( 1 ) , autoskip)
Since we only need to check if taglist is empty, indexing the entire MEDIUMTEXT value is unnecessary, so use a length of 1 to save space.
PimvanJ
07-24-2009, 06:06 PM
Awesome hack thank you very much!
Has anyone a working dutch 'Excluded Words' list?
newmasalaboard
08-05-2009, 04:38 PM
How to TAG threads which are posted through RSS feeds ??
Keesa
08-09-2009, 03:21 PM
The cron is deadly to boards with many threads... the cron query returns every thread in the database, (the 500 "limit" applies to how many loop recursions are processed), where it should be limiting the query itself. Once that's fixed, we face a table scan - an INDEX should be added on taglist and autoskip:
ALTER TABLE " . TABLE_PREFIX . "thread
ADD INDEX taglist (taglist ( 1 ) , autoskip)
Since we only need to check if taglist is empty, indexing the entire MEDIUMTEXT value is unnecessary, so use a length of 1 to save space.
I have a huge board, is it safe to install given this limitation?
newmasalaboard
08-12-2009, 05:36 AM
How to TAG threads which are posted through RSS feeds ??
Please anyone ... Help me with this !!
Mazinger
10-06-2009, 04:44 PM
Hello,
There's a problem between this mod and between (inferno vBshout chatbox)
There's a featuer in the chatbox that allows ajax feeding of new posts and threads that posts shouts like this: UserA has replied to thread trip to africa
but not after installing this mod, it posts like this: UserA has replied to thread
without the thread name & title.
How to fix this?
Rik Brown
12-22-2009, 06:19 AM
Has anyone attempted to run this on a vBulletin 4.0 installation? If so, does it work?
Leo Brazil
12-22-2009, 10:15 AM
I definetelly need this just-can't-survise-with for 4.0 too.
SnakeV
12-22-2009, 10:44 PM
Yes, i also need this beatiful hack for vB4 :)
al_rhar
01-08-2010, 10:07 PM
Excellent mod, and works perfect on 3.8.4 PL2
Smitty
01-08-2010, 10:39 PM
As much as I would like an automatic thread tagger (I really, really do), I need one that will look at existing tags and only use those (I.e.: won't make new tags) and if there's no match will not create a new tag. I want total control over thread tags. Unless I'm missing something, I haven't seen one that will do that (as well as doing my old threads, which I think would be a good idea but not necessary).
Aneurysm
01-10-2010, 11:40 PM
As much as I would like an automatic thread tagger (I really, really do), I need one that will look at existing tags and only use those (I.e.: won't make new tags) and if there's no match will not create a new tag. I want total control over thread tags. Unless I'm missing something, I haven't seen one that will do that (as well as doing my old threads, which I think would be a good idea but not necessary).
That is an awesome idea, I would love to see it incorporated in a future release.
Dr.osamA
01-16-2010, 09:02 PM
hi
is the mod working with 4.0.1 vb ??
weting .......
________
ARIZONA MEDICAL MARIJUANA DISPENSARY (http://arizona.dispensaries.org/)
Gene Steinberg
01-16-2010, 09:18 PM
hi
is the mod working with 4.0.1 vb ??
weting .......
It doesn't. I tried. You get a message to that effect when you attempt to import.
So one hopes the author is even now working on an update.
Peace,
Gene
Dr.osamA
01-17-2010, 12:23 AM
It doesn't. I tried. You get a message to that effect when you attempt to import.
So one hopes the author is even now working on an update.
Peace,
Gene
hi Gene !
I tried it and fix that eror in SQL somting laik tuble helpfulanswer dosnt exisst
i add tah mis tuble but problem is wen you add post you get eror in file functions_autotagger.php in line 129
anywes stil hop & weting
________
New Relationship Advice Dicussion (http://www.love-help.org/new-relationship-advice/)
RedFoxy
01-22-2010, 02:01 AM
yep I'm here and hope for this and other mods
FitgirlWorld
01-28-2010, 04:56 AM
will try this mod and see how it helps. I am hoping the tags are relevant.
Golzarion
01-29-2010, 07:12 PM
No update for vb4 ?
testbot
02-09-2010, 09:06 PM
i really hope this gets updated
AkBilge
02-16-2010, 09:08 PM
3.8.4 PL 2 working. Thank you.
kimdk
02-17-2010, 02:43 PM
Thank you for this mod Phalynx! It works great :)
hayaldunya
02-18-2010, 01:20 PM
thanks good woork.
drbillnye
02-19-2010, 02:20 AM
love a 4.0.1 update!? This is exactly what I'm looking for but it won't let me install
cmiller1014
03-08-2010, 01:46 AM
VB 4 update would be nice!
rsuplido
03-26-2010, 07:21 PM
Maybe using the Yahoo Term Extractor API is easier?
http://developer.yahoo.com/search/content/V1/termExtraction.html
Hippy
05-13-2010, 09:45 PM
yes please vb4 update
imported_stefan
06-25-2010, 12:30 PM
please for vb4
Phalynx
06-25-2010, 12:51 PM
There will be no vB4 Version of this. Please use this instead:
https://vborg.vbsupport.ru/showthread.php?t=234026
godtfred
09-27-2010, 05:07 PM
There will be no vB4 Version of this. Please use this instead:
https://vborg.vbsupport.ru/showthread.php?t=234026
yeah but that doesn't work and you have to live with adverts all over
Valof
04-22-2011, 09:15 AM
Here's bigger list of polish stop words:
a, aby, ach, acz, aczkolwiek, aj, albo, ale, ależ, aż, bardziej, bardzo, bez, bo, bowiem, by, byli, bynajmniej, być, był, była, było, były, będzie, będą, cali, cała, cały, ci, cię, ciebie, co, cokolwiek, coś, czasami, czasem, czemu, czy, czyli, daleko, dla, dlaczego, dlatego, do, dobrze, dokąd, dość, dużo, dwa, dwaj, dwie, dwoje, dziś, dzisiaj, gdy, gdyby, gdyż, gdzie, gdziekolwiek, gdzieś, go, i, ich, ile, im, inna, inne, inny, innych, iż, ja, ją, jak, jakaś, jakby, jaki, jakichś, jakie, jakiś, jakiż, jakkolwiek, jako, jakoś, je, jeden, jedna, jedno, jednak, jednakże, jego, jej, jemu, jest, jestem, jeszcze, jeśli, jeżeli, już, ją, każdy, kiedy, kilka, kimś, kto, ktokolwiek, ktoś, kt?ra, kt?re, kt?rego, kt?rej, kt?ry, kt?rych, kt?rym, kt?rzy, ku, lat, lecz, lub, ma, mają, mam, mi, mimo, między, mną, mnie, mogą, moi, moim, moja, moje, może, możliwe, można, m?j, mu, musi, my, na, nad, nam, nami, nas, nasi, nasz, nasza, nasze, naszego, naszych, natomiast, natychmiast, nawet, nią, nic, nich, nie, niego, niej, niemu, nigdy, nim, nimi, niż, no, o, obok, od, około, on, ona, one, oni, ono, oraz, oto, owszem, pan, pana, pani, po, pod, podczas, pomimo, ponad, ponieważ, powinien, powinna, powinni, powinno, poza, prawie, przecież, przed, przede, przedtem, przez, przy, roku, r?wnież, sam, sama, są, się, skąd, sobie, sobą, spos?b, swoje, ta, tak, taka, taki, takie, także, tam, te, tego, tej, ten, teraz, też, to, tobą, tobie, toteż, trzeba, tu, tutaj, twoi, twoim, twoja, twoje, twym, tw?j, ty, tych, tylko, tym, u, w, wam, wami, was, wasz, wasza, wasze, we, według, wiele, wielu, więc, więcej, wszyscy, wszystkich, wszystkie, wszystkim, wszystko, wtedy, wy, właśnie, z, za, zapewne, zawsze, ze, znowu, zn?w, został, żaden, żadna, żadne, żadnych, że, żeby
and polish chars replacement:
'?' => 'e'
'?' => 'e'
'?' => 'o'
'?' => 'o'
'?' => 'a'
'?' => 'a'
'?' => 'a'
'?' => 's'
'?’' => 's'
'?' => 's'
'?“' => 's'
'?' => 'l'
'?' => 'l'
'?' => 'z'
'�' => 'z'
'?' => 'z'
'?' => 'z'
'Ÿ' => 'z'
'?' => 'z'
'?' => 'c'
'?' => 'c'
'?' => 'n'
'?' => 'n'
dethfire
09-25-2013, 03:22 AM
My forum has 600,000 threads. Is this safe to install and run? Someone a page back said it runs table scans and is a server killer if you have a lot of threads?
DigitalForex
09-25-2014, 05:45 AM
Is there any auto tagger for VB5 available already?
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.