vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   New Posting Features - [DBTech] Advanced User Tagging v3 (vB4) (https://vborg.vbsupport.ru/showthread.php?t=242733)

MasturB 08-11-2013 05:32 AM

1 Attachment(s)
I"m having a slight issue with this plug-in.

Under the user avatar in threads, where their stats are, the Post Mentioned statistics are on the same line as my Post Thanks statistics from another mod.

Is there anyway I can fix this?

It's in my screenshot.

Thanks!

k3vintan 08-12-2013 02:25 PM

1 Attachment(s)
Quote:

Originally Posted by DragonByte Tech (Post 2437655)
This could be an issue with the BBCode generation. Can you please go into the BB Code Manager and show me a screenshot of the settings for the MENTION BBCode?


Fillip

I get the same thing too but no error.

Basically;

1. it notifies the user, but in the post page there is no "@username" displayed
2. However, "@username" is displayed in activity stream, in email;
3. When I click on the email link, it will point to http://xxx/forum/member.php?4-xxx&tab=mentions it goes to the user profile but its blank
4. Click on the menu to link to user tag statistics, its blank as well

Attached screen shots on the BB codes.

DragonByte Tech 08-24-2013 05:52 PM

Please change the "Relacement" field to
Code:

@{param};

Fillip

DragonByte Tech 08-24-2013 06:00 PM

Advanced User Tagging v3.0.7

vB Optimise Integration
  • Support for vB Optimise to cache the "Mentions" Member Profile tab (Cached queries: 2)
  • Support for vB Optimise to cache the "Tags" Member Profile tab (Cached queries: 2)
  • Support for vB Optimise to cache the "Quotes" Member Profile tab (Cached queries: 2)


Fillip

Captain Tycoon 08-25-2013 11:59 AM

1) Is there any way to hide mentions/quotes listed in the User Profile if the 'viewer' cannot see those private forums for where the mention/quote is situated?

Example: UserA cannot view other threads in X Forum, he can only make/view own threads. UserB makes a thread in X Forum. UserA can see the thread title/desc that UserB made, even though he cant view other threads, via the User Profile Mentions/Quotes tab.

2) When I use @mention, and then edit the post, it will mention the person again (gives them a notification of being mentioned). Can this be prevented?

3) When I use @mention, even though they cannot see the thread/forum, they will still get a notification.

DragonByte Tech 08-25-2013 01:47 PM

Quote:

Originally Posted by Captain Tycoon (Post 2440939)
1) Is there any way to hide mentions/quotes listed in the User Profile if the 'viewer' cannot see those private forums for where the mention/quote is situated?

In versions prior to the latest at the time of writing, this was the default behaviour.

In later versions, these mentions are included, but the thread title is changed to the phrase n_a.

This change was made for performance reasons, otherwise it would have been impossible to practically implement vB Optimise caching of the queries required to calculate mentions to be displayed.

Quote:

Originally Posted by Captain Tycoon (Post 2440939)
2) When I use @mention, and then edit the post, it will mention the person again (gives them a notification of being mentioned). Can this be prevented?

This does not happen, unless you mention a new user in place of the old one (or add a new mention). The new user will then get a notification.

Quote:

Originally Posted by Captain Tycoon (Post 2440939)
3) When I use @mention, even though they cannot see the thread/forum, they will still get a notification.

This behaviour makes much more sense in the latest version at the time of writing, where they will still see the new mention in their profile tab (although the thread title is hidden, and is not a link to the thread).


Fillip

Treeofl1 08-26-2013 08:05 PM

Hi, amazing plugin. I am considering buying the full version, however there is a bug that is really bugging me, excuse the pun.

Whenever I mention someone or quote them, it makes a duplicate entry on their profile, with one of the entries showing N/A.

Quote:

10:57 PM - Testingguy quoted Red in post Testing mentions
Still quoting you Tim...
10:57 PM - Testingguy quoted Red in post N/A
Quote:

09:26 PM - -A- mentioned Red in post Testing mentions
Red it doesn't seem mine...
09:26 PM - -A- mentioned Red in post N/A
I have no idea how to fix it.. Please help! Thanks.

kingMOB 08-28-2013 09:09 AM

Quote:

Originally Posted by Treeofl1 (Post 2441294)
Hi, amazing plugin. I am considering buying the full version, however there is a bug that is really bugging me, excuse the pun.

Whenever I mention someone or quote them, it makes a duplicate entry on their profile, with one of the entries showing N/A.





I have no idea how to fix it.. Please help! Thanks.

Same problem here.

blackberry 08-28-2013 07:09 PM

did upgrade but its not working for thread tags, please check the error.. its doesnt show thread name instead displays N/A

https://vborg.vbsupport.ru/external/2013/08/9.png

KGodel 08-30-2013 04:33 AM

After updating, I am getting the following error when I attempt to view anyone's profile:

Quote:

MySQL Error : Illegal mix of collations for operation 'UNION'
Error Number : 1271
Here is the query

Invalid SQL:
Code:

                                (

                                SELECT
                                        post.pagetext AS message,
                                        post.title AS posttitle,
                                        post.visible AS postvisible,
                                        thread.title AS threadtitle,
                                        thread.visible,
                                        thread.forumid,
                                        mention.dateline,
                                        mention.postid,
                                        mention.type,
                                        user.userid,
                                        user.username,
                                        user.usergroupid,
                                        user.infractiongroupid,
                                        user.displaygroupid,
                                        mentioned.userid AS mentioneduserid,
                                        mentioned.username AS mentionedusername,
                                        mentioned.usergroupid AS mentionedusergroupid,
                                        mentioned.infractiongroupid AS mentionedinfractiongroupid,
                                        mentioned.displaygroupid AS mentioneddisplaygroupid

                                FROM dbname_dbtech_usertag_mention AS mention
                                LEFT JOIN dbname_post AS post ON (post.postid = mention.postid)
                                LEFT JOIN dbname_thread AS thread ON (thread.threadid = post.threadid)
                                LEFT JOIN dbname_user AS user ON (user.userid = mention.userid)
                                LEFT JOIN dbname_user AS mentioned ON (mentioned.userid = mention.mentionedid)
                                WHERE mention.mentionedid = 3995 OR mention.userid = 3995
                                        AND mention.type = 'post'
                                ORDER BY dateline DESC
                                LIMIT 0, 20
                        ) UNION ALL (
                                        SELECT
                                                blog_text.pagetext AS message,
                                                blog_text.title AS posttitle,
                                                IF(blog_text.state = 'visible', 1, 0) AS postvisible,
                                                blog.title AS threadtitle,
                                                IF(blog.state = 'visible', 1, 0) AS visible,
                                                0 AS forumid,
                                                mention.dateline,
                                                mention.postid,
                                                mention.type,
                                                user.userid,
                                                user.username,
                                                user.usergroupid,
                                                user.infractiongroupid,
                                                user.displaygroupid,
                                                mentioned.userid AS mentioneduserid,
                                                mentioned.username AS mentionedusername,
                                                mentioned.usergroupid AS mentionedusergroupid,
                                                mentioned.infractiongroupid AS mentionedinfractiongroupid,
                                                mentioned.displaygroupid AS mentioneddisplaygroupid

                                        FROM dbname_dbtech_usertag_mention AS mention
                                        LEFT JOIN dbname_blog_text AS blog_text ON (blog_text.blogtextid = mention.postid)
                                        LEFT JOIN dbname_blog AS blog ON (blog.blogid = blog_text.blogid)
                                        LEFT JOIN dbname_user AS user ON (user.userid = mention.userid)
                                        LEFT JOIN dbname_user AS mentioned ON (mentioned.userid = mention.mentionedid)
                                        WHERE mention.mentionedid = 3995 OR mention.userid = 3995
                                                AND mention.type = 'blog'
                                        ORDER BY dateline DESC
                                        LIMIT 0, 20

                                )
                                ORDER BY dateline DESC;



All times are GMT. The time now is 10:24 PM.

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.02390 seconds
  • Memory Usage 1,786KB
  • 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
  • (2)bbcode_code_printable
  • (8)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete