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)

DragonByte Tech 05-01-2016 11:56 AM

Quote:

Originally Posted by miguellu (Post 2569934)
Any idea on how can I solve this?

Thanks! :)

If you PM me with an FTP and AdminCP account I can look into it :)


Fillip

dolomites 05-10-2016 03:00 PM

After last update (that in product still shows 3.2.5pl2 and not 3.2.6 (why?) I don't receive any e-mail. Forum notifications, PM, etc normally works. How could I solve?

DragonByte Tech 05-11-2016 08:27 PM

I'll update the XML file the next time the product gets updated :)


Fillip

dolomites 05-12-2016 01:35 PM

Do you refer to version number or e-mail bug?

DragonByte Tech 05-12-2016 01:36 PM

Version number, there's no known issues with email sending. Emails will not go out if members have turned off emails from administrators and/or emails from other members.

Fillip

soccerman2015 06-03-2016 06:21 AM

Hi. Why this happened?

Sometimes if i quote someone post, i get notice information my on post?

DragonByte Tech 06-03-2016 11:31 AM

Quote:

Originally Posted by soccerman2015 (Post 2571584)
Hi. Why this happened?

Sometimes if i quote someone post, i get notice information my on post?

Could you please post the notice in question? :)


Fillip

mustafaa 06-05-2016 07:50 AM

Hi,

I have used 3.2.4 version until a few weeks ago and when i have updated 3.2.6 version i have a problem about quotes notifications. If anybody has quoted one of my post i get a quote notification but i check the notifications page (on my profile page) i see previous notifications, i don't see last notifications. Do you have an idea about this issue?

Thanks.

DragonByte Tech 06-05-2016 03:41 PM

Quote:

Originally Posted by mustafaa (Post 2571658)
Hi,

I have used 3.2.4 version until a few weeks ago and when i have updated 3.2.6 version i have a problem about quotes notifications. If anybody has quoted one of my post i get a quote notification but i check the notifications page (on my profile page) i see previous notifications, i don't see last notifications. Do you have an idea about this issue?

Thanks.

This can happen if the user viewing the profile does not have the required forum permissions.

For instance, if an administrator quotes another administrator in a forum the current user does not have permission to view, this quote does not show up on the administrator's profile.


Fillip

VitalityX 06-07-2016 02:49 PM

I'm having an issue on 4.2.3, my host is Hostgator. Experiencing 500 server errors on all pages in the ACP and also when a user receives a tagged notification, so seems to be originating with the usertag.php file. They can tag users fine and view their mentions tab in their profiles, so I'm not sure what the issue is.

DragonByte Tech 06-08-2016 01:17 PM

Quote:

Originally Posted by VitalityX (Post 2571738)
I'm having an issue on 4.2.3, my host is Hostgator. Experiencing 500 server errors on all pages in the ACP and also when a user receives a tagged notification, so seems to be originating with the usertag.php file. They can tag users fine and view their mentions tab in their profiles, so I'm not sure what the issue is.

Could you please contact your host and ask them to find the real error message behind the 500 Internal Server Error? It's probably a PHP error somewhere, but your host doesn't display them to the public so I can't assist until they find the real error message.

Sorry I couldn't be of more help :(


Fillip

logic@ 06-22-2016 12:43 PM

Hello. MYSQL error when attempting to view people's profiles. Help me please.

Code:

Database error in vBulletin 4.2.3:

Invalid SQL:

                                (
                               
                                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 prxdbtech_usertag_mention AS mention
                                LEFT JOIN prxpost AS post ON (post.postid = mention.postid)
                                LEFT JOIN prxthread AS thread ON (thread.threadid = post.threadid)
                                LEFT JOIN prxuser AS user ON (user.userid = mention.userid)
                                LEFT JOIN prxuser AS mentioned ON (mentioned.userid = mention.mentionedid)
                                WHERE (mention.mentionedid = 1 OR mention.userid = 1)
                                        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 prxdbtech_usertag_mention AS mention
                                        LEFT JOIN prxblog_text AS blog_text ON (blog_text.blogtextid = mention.postid)
                                        LEFT JOIN prxblog AS blog ON (blog.blogid = blog_text.blogid)
                                        LEFT JOIN prxuser AS user ON (user.userid = mention.userid)
                                        LEFT JOIN prxuser AS mentioned ON (mentioned.userid = mention.mentionedid)
                                        WHERE (mention.mentionedid = 1 OR mention.userid = 1)
                                                AND mention.type = 'blog'
                                        ORDER BY dateline DESC
                                        LIMIT 0, 20
                               
                                )
                                ORDER BY dateline DESC;

MySQL Error  : Illegal mix of collations for operation 'UNION'
Error Number  : 1271
Request Date  : Wednesday, June 22nd 2016 @ 02:41:37 PM
Error Date    : Wednesday, June 22nd 2016 @ 02:41:37 PM
Classname    : vB_Database
MySQL Version : 5.5.50-cll


DragonByte Tech 06-22-2016 01:18 PM

If you have changed the collation of your database tables but did not change the default value for your database, the AUT tables / fields will be created with the DB default (most likely latin1_swedish_ci).

You'll need to use phpMyAdmin or a similar tool to inspect the collation of your tables and ensure that not only the default value for your database is set correctly, but that all tables and columns generated by modifications have been edited to your new collation.

Fillip

logic@ 06-22-2016 01:44 PM

1 Attachment(s)
PhpMyadmin table settings;

https://vborg.vbsupport.ru/attachmen...1&d=1466610129

DB Settings: latin1_swedish_ci

zapiy 06-30-2016 06:42 AM

Should this mod cause a drop menu to appear as you type the username after the @ so you can get the correct username?

charlesr 06-30-2016 11:16 AM

Nope. You just type it. Including spaces etc.

DragonByte Tech 06-30-2016 12:17 PM

Quote:

Originally Posted by zapiy (Post 2572639)
Should this mod cause a drop menu to appear as you type the username after the @ so you can get the correct username?

No, it doesn't, sorry :(


Fillip

taravasya 07-14-2016 08:28 PM

Hello! Is there any way exist to search for existing hash-tags? I know about possibility to click on hash-tag in post-body... but i`m lookink for somthing about page with whole existing hash-tags.

DragonByte Tech 07-14-2016 08:31 PM

Quote:

Originally Posted by taravasya (Post 2573263)
Hello! Is there any way exist to search for existing hash-tags? I know about possibility to click on hash-tag in post-body... but i`m lookink for somthing about page with whole existing hash-tags.

There's a browsable page in the front-end, but there's no search interfaces in the front-end or admincp unfortunately :(


Fillip

Alan_SP 07-16-2016 03:42 PM

This was one of feature requests I made for this mod, you can check it on DBTech's forum. There's also some other feature request related to hash tags.

CorneliusW 08-02-2016 05:08 PM

Quote:

Originally Posted by cjnettleingham (Post 2552220)
How can i remove -

Mentioned
0 Post(s)
Tagged
0 Thread(s)

From displaying when a user post on the forums?

Edit - Managed to figure out how to do it.

Can you please post the solution to remove this? Thanks in advance!

DragonByte Tech 08-08-2016 10:05 PM

Advanced User Tagging v3.2.7

Changed Features:
  • Updated the Notify JS code used in the Desktop Notifications

Bug Fixes:
  • Users without "Can View Thread Contents" forum permissions will no longer see the preview of Quotes and Mentions in member profiles


Fillip

DragonByte Tech 09-19-2016 07:50 PM

Advanced User Tagging v3.2.8:

Change: Improved BBCode parsing (may not work on older versions of vBulletin, tested with the latest 4.2 and 3.8)

Fillip

grey_goose 11-11-2016 02:18 PM

Any chance of getting Mentions/Quotes/Tags profile tabs melted into a single tab? Especially since Mentions and Tags provide nearly the same functionality, having three separate lists (and their tabs) takes ups a lot of horizontal space on the profile.

DragonByte Tech 11-17-2016 10:06 AM

Quote:

Originally Posted by grey_goose (Post 2578109)
Any chance of getting Mentions/Quotes/Tags profile tabs melted into a single tab? Especially since Mentions and Tags provide nearly the same functionality, having three separate lists (and their tabs) takes ups a lot of horizontal space on the profile.

It's unlikely this will be added since it would mess with performance. Just now, if one particular tab adds too much of a performance hit, it can be easily disabled. It would be more difficult to maintain performance if the tabs were merged.

Sorry :(


Fillip

grey_goose 11-17-2016 01:35 PM

Fair enough, thanks for the response!

mattballew 11-17-2016 05:58 PM

MySQL Error : Illegal mix of collations for operation 'UNION'
My error is similar to a previous posters. but i have no changed anything in mysql. my VB database is a build of the original VB installer, so everything should be the same.

Code Geass 11-18-2016 09:55 AM

Quote:

Originally Posted by zapiy (Post 2572639)
Should this mod cause a drop menu to appear as you type the username after the @ so you can get the correct username?

It will be perfect if this can be implemented.

Anyway sometimes it fails to implement using @ before username if the username contain spaces or ' or some other symbols like [ or ]

PattiOz 11-23-2016 12:06 AM

Quote:

Originally Posted by blackberry (Post 2561972)
link is correct.. please make sure your forum url is myforum/com/forums?

ntion notification in the Notifications Menu (when I receive a mention) it goes to a 404 error.

I know it's been a while, but still, this error persists. Where do I set the URL of the forum for this mod?

DragonByte Tech 12-05-2016 02:12 PM

Quote:

Originally Posted by PattiOz (Post 2578579)
ntion notification in the Notifications Menu (when I receive a mention) it goes to a 404 error.

I know it's been a while, but still, this error persists. Where do I set the URL of the forum for this mod?

Are you using a portal like vBAdvanced CMPS?


Fillip

DragonByte Tech 01-09-2017 08:39 PM

Advanced User Tagging v3.3.0:
Feature: vBSocial integration for Mentions
Feature: vBSocial integration for Thread Tags
Feature: vBSocial integration for Quotes
Fix: Fixed a PHP 7.1 compatibility issue

Fillip

mobster46 02-03-2017 03:40 PM

Quote:

Originally Posted by DragonByte Tech (Post 2580629)
Advanced User Tagging v3.3.0:
Feature: vBSocial integration for Mentions
Feature: vBSocial integration for Thread Tags
Feature: vBSocial integration for Quotes
Fix: Fixed a PHP 7.1 compatibility issue


Fillip

How can I write in user group color?

Also can the autocomplete feature be added?
For example
Mob
Mobster46(Auto complete)

DragonByte Tech 02-03-2017 03:43 PM

Quote:

Originally Posted by mobster46 (Post 2581775)
How can I write in user group color?

Sorry, I do not understand what you are asking.

Quote:

Originally Posted by mobster46 (Post 2581775)
Also can the autocomplete feature be added?

Unfortunately not, sorry.


Fillip

mobster46 02-03-2017 03:59 PM

Quote:

Originally Posted by DragonByte Tech (Post 2581776)
Sorry, I do not understand what you are asking.

Unfortunately not, sorry.


Fillip

I'm sorry for my bad english.

For example
Admin:mobster46
Color:red
Moderat?r: Dbtech
Color:blue

Auto usergroup color

@mobster46
@Dbtech

DragonByte Tech 02-03-2017 04:00 PM

You can't apply different colour formatting options per-user or per-usergroup, sorry.

Fillip

mobster46 02-03-2017 04:07 PM

Quote:

Originally Posted by DragonByte Tech (Post 2581779)
You can't apply different colour formatting options per-user or per-usergroup, sorry.


Fillip

Thanks for the clarification. The free software MyBB also has this feature. But there is no paid software, vBulletin. Interesting. I wish that were possible.

sub_ubi 03-07-2017 02:10 AM

@tag feature should be disabled inside [code] tags. I'm on a code-heavy forum, we simply can't use this.

EGNDRAGON 03-07-2017 12:47 PM

cant figure out how to install if someone will help

EGNDRAGON 03-12-2017 11:29 PM

When someone mentions say me i get the notification but when i clikc it i get a 404 error

X-or 05-14-2017 01:17 PM

It is unclear whether this mod has #hashtag or only @user mention
Could you please clarify?


All times are GMT. The time now is 04:05 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.05701 seconds
  • Memory Usage 1,858KB
  • 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
  • (1)bbcode_code_printable
  • (16)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (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
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete