The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
[DBTech] Advanced User Tagging v3 (vB4) Details »» | |||||||||||||||||||||||||||||||||
[DBTech] Advanced User Tagging v3 (vB4)
Developer Last Online: Mar 2023
Advanced @User Tagging: What is it?
DragonByte Technologies is proud to present [DBTech] Advanced @User Tagging. The @user Tagging mod is designed to increase activity on your forum by allowing members to mention each other in posts when talking about them. This is done in a very easy way, very similar to how Twitter mentions people. We use @ ; as the tags, so for instance you could say: ---- This new mod from @Dragonbyte Tech; is pretty cool. ---- The ?@DragonByte Tech;? Will become a link to the DragonByte Tech users profile, it will also inform DragonByte Tech they had been mentioned, and link to the relevant thread/post via a new area in the profile section, as well as a new tab in the shoutbox. It also allows members to ?tag? the thread for specific other members by inputting their usernames in the tag box above the posts of the thread. This is a great way to increase your forum activity with no extra admin input required ? people will start to mention posts/threads to their friends, which will increase the amount of posting. This is especially useful of forums which have an international contingent (so threads posted in during the night for some of your members don't go overlooked) or forums which have a lot of posts/threads each day ? again to make sure that a post a person might want to read doesn't get lost in the crowd. ------------------------------------------------------------------------------------------- If you like this mod please hit the button to the right ----> Please remember to click the, button to the right if you installed the mod ----> What does 'Marking As Installed' do ? * It helps you to stay on top of updates - members who have installed modifications will be notified by us whenever new updates are available. * For security issues - vbulletin.org will contact all members who have installed a modification whenever a security issue is brought to their attention. * Marking a modification as installed also helps us know how many people are using our work, giving us extra incentive to provide more features and new modifications. We appreciate the support! ------------------------------------------------------------------------------------------- Priority support & Product Demos available at: http://www.dragonbyte-tech.com/forum.php ------------------------------------------------------------------------------------------- Major Features Twitter-style @ "Mentions": Typing @username produces a "Mention" that will alert the user to your post, as well as link to their profile. Quote Alerts: Members you quote will be alerted, ensuring that discussions can continue smoothly even if they left the thread. Profile Integration: Displays Mentions, Tags and Quotes in profile tabs for quick overview of a member's activities within the mod. Complete Feature List Lite Emails:
------------------------------------------------------------------------------------------- This mod displays a copyright notification in the footer of pages generated by this mod which includes:
Download Now
Screenshots
Supporters / CoAuthors Show Your Support
|
17 благодарности(ей) от: | ||
Akyeame Kwame, akz645, andy_mcguire, artcrimes, atmaca, BCP Hung, Emeralda, fightsol, furnival, Glenn_E, ijuanjor, mapleleaffans, Skaut, thieu.bocap, uofa, victorvu |
Comments |
#662
|
||||
|
||||
It appears as if you have uploaded the files incorrectly. Please drag and drop the contents of the upload folder (use Ctrl+A to select all files) to your public_html folder.
Chris |
#663
|
|||
|
|||
Thanks that fixed it ;D
|
#664
|
|||
|
|||
Quote:
2nd sorry if this is a noob question :P when you say "Upload all files from the "upload" folder to your forums directory." in the readme.txt do you mean the individual folders like: admincp, dbtech,includes or the CONTENT of them? im confused because by uploading the folders as they are named, doesnt that replace the folder already in public_html? |
#665
|
||||
|
||||
Please drag and drop the contents of the upload folder (use Ctrl+A to select all files) to your public_html folder.
It will not replace the folders it just adds files to those folders. Chris |
#666
|
|||
|
|||
i would like translate this plugin in german. can you add then the new xml file for the user and a demo site in german language??
|
#667
|
||||
|
||||
We do not supply translations with our products, as we cannot officially support them. However, we have a Translations forum here: http://www.dragonbyte-tech.com/f91/
That forum is our preferred method of showcasing translations as we link to this forum in every release thread, and we have prefix filters that let people see all mods for their chosen languages Fillip |
#668
|
||||
|
||||
This is a wonderful mod but unfortunately is not compatible with vBSEO.
Since so many people use vBSEO and do rewrite their member profile pages, is there any chance there will be a workaround provided for vBSEO users? Without vBSEO activated, the link to a notification is in this format: Code:
http://domain.com/usertag.php?do=profilenotif&tab=quotes Code:
http://domain.com/members/adminuser-1.html?tab=quotes#quotes Code:
http://domain.com/members/adminuser-1.html#quotes It looks like ?tab=quotes needs to be inserted in the URL but not sure where. Thank you very much. |
#669
|
||||
|
||||
Update: Got it working with my vBSEO setup.
For my member profiles I am using the following URL rewrite format: members/[user_name]-[user_id].html Therefore the notifications links that this plugin generates need to be changed. In upload/dbtech/usertag/hooks/notifications_list.php, make the following changes: On line 14, change: Code:
'link' => $vbulletin->options['bburl'] . '/usertag.php?' . $vbulletin->session->vars['sessionurl'] . 'do=profilenotif&tab=mentions', Code:
'link' => $vbulletin->options['bburl'] . '/members/' . strtolower($vbulletin->userinfo['username']) . '-' . $vbulletin->userinfo[userid] . '.html' . '?tab=mentions#mentions', Code:
'link' => $vbulletin->options['bburl'] . '/usertag.php?' . $vbulletin->session->vars['sessionurl'] . 'do=profilenotif&tab=usertags', Code:
'link' => $vbulletin->options['bburl'] . '/members/' . strtolower($vbulletin->userinfo['username']) . '-' . $vbulletin->userinfo[userid] . '.html' . '?tab=usertags#usertags', Code:
'link' => $vbulletin->options['bburl'] . '/usertag.php?' . $vbulletin->session->vars['sessionurl'] . 'do=profilenotif&tab=quotes', Code:
'link' => $vbulletin->options['bburl'] . '/members/' . strtolower($vbulletin->userinfo['username']) . '-' . $vbulletin->userinfo[userid] . '.html' . '?tab=quotes#quotes', Hope this helps someone else out. |
Благодарность от: | ||
tuRiver |
#670
|
|||
|
|||
I have been using this mod on my forum for a long time. It works great, however of the past couple weeks/months I have noticed a steady increase in the amount of time it takes to load a users profile, or when loading a users own profile through notifications.
I have traced the issue down to being this mod. If I disable the mod, profile speeds go back to normal. I should point out that the usertag tables in the database are huge. The mod is very popular on my site and has been used extensively. It is not uncommon to have a profile page that shows over 1000 pages of mentions. Is there any way I can speed profile/notification page loads besides clearing out old mentions? |
#671
|
||||
|
||||
Could you please re-post this issue over @ our forums here: http://www.dragonbyte-tech.com/forumdisplay.php?f=51 ?
That would be an issue that requires significant time to investigate and fix - time I simply do not have at this moment vBulletin.org posts will get buried, whereas on our forums we will always have a directory of issue reports that we can look back on. Thanks Fillip |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|