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)

literatestylish 11-12-2010 02:56 PM

Any way to have a user be PM'ed when they get a notification? A lot of forums remove the top notifications bar due to style issues (such as mine).

DragonByte Tech 11-13-2010 12:18 PM

Not currently, no. There might be email notification in the future, but that may also be a Pro feature.

Also, if users turn off the PM Popup, your removal of stock vBulletin functionality will render PM notifications equally useless won't it? :p


Fillip

NoKSouLz 11-28-2010 08:12 PM

Warning: require_once([path]/dbtech/usertag/hooks/cache_templates.php) [function.require-once]: failed to open stream: No such file or directory in [path]/includes/class_bootstrap.php(1269) : eval()'d code on line 281

Fatal error: require_once() [function.require]: Failed opening required '/***/***/public_html/forums/dbtech/usertag/hooks/cache_templates.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /***/***/public_html/forums/includes/class_bootstrap.php(1269) : eval()'d code on line 281

Currently receiving this error on the main domain path, using vbulletin 4.03. We also use vCMPS and also mentions don't seem to be notifying users?

DragonByte Tech 11-28-2010 09:58 PM

Please upload the files that came with the zip file as per the Readme.txt instructions :)


Fillip

NoKSouLz 11-29-2010 10:29 AM

Thanks,

Although the notifications seem to appear, there are no actual mentions retrieved into the mention log. Any assistance?

DragonByte Tech 11-29-2010 01:03 PM

Mentions and User Tags will only show up if the user has permission to view the forum, view threads, and if the user has successfully entered the forum password.

Fillip

NovoCiv 12-04-2010 06:00 AM

It seems I can't be tagged. I think it may be because of the space in my name, whereas users with no spaces in their name are tagged just fine.

DragonByte Tech 12-04-2010 09:28 AM

Usernames with spaces work fine, it's possible that you can't be tagged if you have some form of special character in your name (like a quote or something) but that will be resolved in the next maintenance release :)


Fillip

PreciseDemise 12-04-2010 03:44 PM

Quote:

Originally Posted by PreciseDemise (Post 2113547)
Thanks for the update.

I'm having problems with people with short user names, We have 2 admins with 3 letter user names, and they never get picked up by mentions. I know the lower limit for user names is 5 is that the problem or is it a min length in vBA@UT1.2.1?

Quote:

Originally Posted by DragonByte Tech (Post 2114566)
I'm not sure, it could very well be that.

Fillip

Ya, this was the problem, reduced the Min. Username length to match and works great again, sorry to bother =)

Michlerish 12-17-2010 09:39 PM

I'm still getting this error at the very top of the page:

Code:

Warning: Unexpected character in input: ''' (ASCII=39) state=1 in /home/ribecom/public_html/includes/class_bbcode.php(482) : eval()'d code on line 15

Parse error: syntax error, unexpected $end, expecting ')' in /home/ribecom/public_html/includes/class_bbcode.php(482) : eval()'d code on line 16

Warning: Unexpected character in input: ''' (ASCII=39) state=1 in /home/ribecom/public_html/includes/class_bbcode.php(482) : eval()'d code on line 15

Parse error: syntax error, unexpected $end, expecting ')' in /home/ribecom/public_html/includes/class_bbcode.php(482) : eval()'d code on line 16

and this one inside the vBulletin Message:

Code:

Unable to add cookies, header already sent.
File: /home/ribecom/public_html/includes/class_bbcode.php(482) : eval()'d code
Line: 15

And it stays on the vBulletin Message page, without returning to the thread. If I go back to the thread, I just see:

Code:

[MENTION=369]Username[/MENTION]
With no link.

This only happens when product is enabled. Yes, all the files have been uploaded as per the zip file, and vb 4.0 XML imported while allowing overwrite.

DragonByte Tech 12-21-2010 02:38 PM

Please ensure that the contents of the bbcode_parse_complete_precache plugin is this:
PHP Code:

if (!class_exists('vB_Template'))
{
    
// Ensure we have the template class
    
require(DIR '/dbtech/usertag/class_template.php');
}

static 
$mention;
global 
$vbulletin;

if (empty(
$mention))
{    
    
//only figure this out once
    
$mention vB_Template::create('dbtech_usertag_mention')->render();
    
    
// This is because of vB's template system
    
$mention str_replace('?1''$1'$mention);
    
$mention str_replace('?2''$2'$mention);
}

$text preg_replace('/\[\/?mention=?\]/i'''preg_replace('/\[mention=(\d+)\](.*)\[\/mention\]/iU'$mention$text));

//$text = $this->parse_bbcode(preg_replace('/\[\/?mention=?\]/i', '', preg_replace('/\[mention=(\d+)\](.*)\[\/mention\]/iU', $mention, $text)), $do_smilies, $do_imgcode, $do_html); 


Fillip

Michlerish 01-03-2011 07:18 AM

Quote:

Originally Posted by DragonByte Tech (Post 2137221)
Please ensure that the contents of the bbcode_parse_complete_precache plugin is this:
PHP Code:

if (!class_exists('vB_Template'))
{
    
// Ensure we have the template class
    
require(DIR '/dbtech/usertag/class_template.php');
}

static 
$mention;
global 
$vbulletin;

if (empty(
$mention))
{    
    
//only figure this out once
    
$mention vB_Template::create('dbtech_usertag_mention')->render();
    
    
// This is because of vB's template system
    
$mention str_replace('?1''$1'$mention);
    
$mention str_replace('?2''$2'$mention);
}

$text preg_replace('/\[\/?mention=?\]/i'''preg_replace('/\[mention=(\d+)\](.*)\[\/mention\]/iU'$mention$text));

//$text = $this->parse_bbcode(preg_replace('/\[\/?mention=?\]/i', '', preg_replace('/\[mention=(\d+)\](.*)\[\/mention\]/iU', $mention, $text)), $do_smilies, $do_imgcode, $do_html); 


Fillip

Thanks, the contents of that plugin were not the same. I changed it to exactly as you said above... but I'm now getting these errors at the top of the forum:

Quote:

Warning: Unexpected character in input: ''' (ASCII=39) state=1 in /home/ribecom/public_html/includes/class_core.php(4078) : eval()'d code on line 21

Parse error: syntax error, unexpected '/' in /home/ribecom/public_html/includes/class_core.php(4078) : eval()'d code on line 21

Warning: Unexpected character in input: ''' (ASCII=39) state=1 in /home/ribecom/public_html/includes/class_core.php(4078) : eval()'d code on line 21

Parse error: syntax error, unexpected '/' in /home/ribecom/public_html/includes/class_core.php(4078) : eval()'d code on line 21

Warning: Unexpected character in input: ''' (ASCII=39) state=1 in /home/ribecom/public_html/includes/class_core.php(4078) : eval()'d code on line 21

Parse error: syntax error, unexpected '/' in /home/ribecom/public_html/includes/class_core.php(4078) : eval()'d code on line 21

Warning: Unexpected character in input: ''' (ASCII=39) state=1 in /home/ribecom/public_html/includes/class_core.php(4078) : eval()'d code on line 21

Parse error: syntax error, unexpected '/' in /home/ribecom/public_html/includes/class_core.php(4078) : eval()'d code on line 21

Warning: Unexpected character in input: ''' (ASCII=39) state=1 in /home/ribecom/public_html/includes/class_core.php(4078) : eval()'d code on line 21

Parse error: syntax error, unexpected '/' in /home/ribecom/public_html/includes/class_core.php(4078) : eval()'d code on line 21

Warning: Unexpected character in input: ''' (ASCII=39) state=1 in /home/ribecom/public_html/includes/class_core.php(4078) : eval()'d code on line 21

Parse error: syntax error, unexpected '/' in /home/ribecom/public_html/includes/class_core.php(4078) : eval()'d code on line 21
:(

DragonByte Tech 01-03-2011 12:22 PM

It sounds like your entire install is broken. Please re-download and re-import the XML file. Something must have corrupted your XML file before you installed it.

Fillip

Michlerish 01-04-2011 03:51 AM

I uninstalled the product and deleted all files from my server. Then re-downloaded the zip file from here. Uploaded the files, and installed the xml for vb4.

I'm still getting

Quote:

Warning: Unexpected character in input: ''' (ASCII=39) state=1 in /home/ribecom/public_html/includes/class_bbcode.php(482) : eval()'d code on line 15

Parse error: syntax error, unexpected $end, expecting ')' in /home/ribecom/public_html/includes/class_bbcode.php(482) : eval()'d code on line 16

Warning: Unexpected character in input: ''' (ASCII=39) state=1 in /home/ribecom/public_html/includes/class_bbcode.php(482) : eval()'d code on line 15

Parse error: syntax error, unexpected $end, expecting ')' in /home/ribecom/public_html/includes/class_bbcode.php(482) : eval()'d code on line 16

Warning: Unexpected character in input: ''' (ASCII=39) state=1 in /home/ribecom/public_html/includes/class_bbcode.php(482) : eval()'d code on line 15

Parse error: syntax error, unexpected $end, expecting ')' in /home/ribecom/public_html/includes/class_bbcode.php(482) : eval()'d code on line 16

Warning: Unexpected character in input: ''' (ASCII=39) state=1 in /home/ribecom/public_html/includes/class_bbcode.php(482) : eval()'d code on line 15

Parse error: syntax error, unexpected $end, expecting ')' in /home/ribecom/public_html/includes/class_bbcode.php(482) : eval()'d code on line 16

Warning: Unexpected character in input: ''' (ASCII=39) state=1 in /home/ribecom/public_html/includes/class_bbcode.php(482) : eval()'d code on line 15

Parse error: syntax error, unexpected $end, expecting ')' in /home/ribecom/public_html/includes/class_bbcode.php(482) : eval()'d code on line 16

Warning: Unexpected character in input: ''' (ASCII=39) state=1 in /home/ribecom/public_html/includes/class_bbcode.php(482) : eval()'d code on line 15

Parse error: syntax error, unexpected $end, expecting ')' in /home/ribecom/public_html/includes/class_bbcode.php(482) : eval()'d code on line 16
Could this be a conflict with something? I have no idea what's going on.

DragonByte Tech 01-04-2011 09:58 AM

What OS are you running? You're the first person who has ever had this problem O.o

Fillip

Michlerish 01-04-2011 07:20 PM

Windows 7, and the board is vb 4.0.6.
Also, those errors seemingly only appear at the top of the page when I click on one thread which held prior instances of mentions. I have not tested all threads with prior mentions.

Some back-story, one day, the mentions just stopped working altogether. So I re-visited this thread, downloaded the updated xml and files and installed while allowing overwrite. Then those errors appeared. Don't know if that helps...

Appreciate you trying to help me! We really love this mod and can't wait to have it back.

DragonByte Tech 01-06-2011 03:22 PM

Can you try opening the XML file with an editor and see if there's any weird characters in there?

What unzipping program are you using?

Fillip

Michlerish 01-06-2011 08:36 PM

The contents of the xml file (part 1):

PHP Code:

<?xml version="1.0" encoding="ISO-8859-1"?>

<product productid="dbtech_usertag" active="1">
    <title>DragonByte Tech: Advanced User Tagging (Lite)</title>
    <description>Advanced User Tagging lets your members quickly alert eachother to threads they might be interested in.</description>
    <version>1.2.2</version>
    <url />
    <versioncheckurl />
    <dependencies>
    </dependencies>
    <codes>
        <code version="*">
            <installcode><![CDATA[$installpath = DIR . '/dbtech/usertag/install';

if (!file_exists($installpath . '/core.php') OR !file_exists($installpath . '/finalise.php'))
{
    print_dots_stop();
    print_cp_message('Either ' . $installpath . '/core.php or ' . $installpath . '/finalise.php is missing!');
}

require($installpath . '/core.php');]]></installcode>
            <uninstallcode><![CDATA[$installpath = DIR . '/dbtech/usertag/install';

if (!file_exists($installpath . '/uninstall.php'))
{
    print_dots_stop();
    print_cp_message($installpath . '/uninstall.php is missing!');
}

require($installpath . '/uninstall.php');]]></uninstallcode>
        </code>
        <code version="1.0.0">
            <installcode><![CDATA[$installpath = DIR . '/dbtech/usertag/install';
$shortversion = 1000;

if (!file_exists($installpath . '/install/' . $shortversion . '.php'))
{
    print_dots_stop();
    print_cp_message($installpath . '/install/' . $shortversion . '.php is missing!');
}

require($installpath . '/install/' . $shortversion . '.php');

require($installpath . '/finalise.php');]]></installcode>
            <uninstallcode />
        </code>
        <code version="1.1.0">
            <installcode><![CDATA[$installpath = DIR . '/dbtech/usertag/install';
$shortversion = 1100;

if (!file_exists($installpath . '/install/' . $shortversion . '.php'))
{
    print_dots_stop();
    print_cp_message($installpath . '/install/' . $shortversion . '.php is missing!');
}

require($installpath . '/install/' . $shortversion . '.php');

require($installpath . '/finalise.php');]]></installcode>
            <uninstallcode />
        </code>
        <code version="1.2.0">
            <installcode><![CDATA[$installpath = DIR . '/dbtech/usertag/install';
$shortversion = 1200;

require($installpath . '/finalise.php');]]></installcode>
            <uninstallcode />
        </code>
        <code version="1.2.1">
            <installcode><![CDATA[$installpath = DIR . '/dbtech/usertag/install';
$shortversion = 1210;
require($installpath . '/finalise.php');]]></installcode>
            <uninstallcode />
        </code>
        <code version="1.2.2">
            <installcode><![CDATA[$installpath = DIR . '/dbtech/usertag/install';
$shortversion = 1220;
require($installpath . '/finalise.php');]]></installcode>
            <uninstallcode />
        </code>
    </codes>
    <templates>
        <template name="dbtech_usertag_footer" templatetype="template" date="1274050174" username="Belazor" version="1.0.0"><![CDATA[<div class="footer_copyright" style="clear:both;">
    <div align="center">
        <!-- Do not remove this copyright notice -->

        <a href="http://www.dragonbyte-tech.com" target="_blank">Advanced User Tagging<vb:if condition="$vboptions[dbtech_usertag_displayversion]"> v{vb:var vboptions.dbtech_usertag_versionnumber_text}</vb:if></a><br />

        <vb:if condition="$vboptions[dbtech_usertag_pro_versionnumber_text]">
        <a href="http://www.dragonbyte-tech.com" target="_blank">Advanced User Tagging (Pro)<vb:if condition="$vboptions[dbtech_usertag_displayversion]"> v{vb:var vboptions.dbtech_usertag_pro_versionnumber_text}</vb:if></a><br />
        </vb:if>

        Copyright &copy; {vb:var year} <a href="http://www.dragonbyte-tech.com" target="_blank">DragonByte Technologies</a>.

        <!-- Do not remove this copyright notice -->    
    </div>
</div>]]></template>
        <template name="dbtech_usertag_inlinetaglist" templatetype="template" date="1281048491" username="Belazor" version="1.2.1"><![CDATA[<h2 class="blockhead" style="padding-top:5px;"><a href="misc.php?{vb:raw session.sessionurl}do=dbtech_usertag_taglist&amp;t={vb:var threadid}">{vb:rawphrase dbtech_usertag_tag_list}</a></h2>
<div class="blockbody settings_form_border">
    <vb:if condition="$taglist"><div class="blockrow">{vb:raw taglist}</div></vb:if>
    <vb:if condition="$bbuserinfo['userid']">
    <div class="blockrow"><input type="button" class="button" value="{vb:rawphrase dbtech_usertag_tag_user}" onclick="YAHOO.util.Dom.get('dbtech_usertag_tagarea').style.display = 'block'" /></div>
    <div id="dbtech_usertag_tagarea" style="display:none;">
        <div class="blockrow">{vb:rawphrase dbtech_usertag_tag_user_descr}</div>
        <form method="post" action="misc.php">
            <div class="blockrow"><input type="text" class="primary textbox" name="usertags" style="width:95%" id="dbtech_usertag_newtags" /></div>
            
            <div class="blockrow"><input type="submit" class="button" name="submittag" value="{vb:rawphrase submit}" onclick="if(YAHOO.util.Dom.get('dbtech_usertag_newtags').value.length == 0 && YAHOO.util.Dom.get('dbtech_usertag_friends').checked == false) { return false; } else { return true; }" /></div>
            
            <input type="hidden" name="s" value="{vb:raw session.sessionhash}" />
            <input type="hidden" name="securitytoken" value="{vb:raw bbuserinfo.securitytoken}" />
            <input type="hidden" name="do" value="dbtech_usertag_threadtag" />
            <input type="hidden" name="threadid" value="{vb:var threadid}" />
        </form>
    </div>
    </vb:if>
</div>]]></template>
        <template name="dbtech_usertag_memberinfo_block_mention" templatetype="template" date="1274023310" username="Belazor" version="1.0.0"><![CDATA[<div id="view-mentions" class="<vb:if condition="$selected_tab == 'mentions'">selected_view_section<vb:else />view_section</vb:if>">
<div class="member_content">
<vb:if condition="$block_data[pagenav]">
<div class="floatcontainer" id="controls_above">
    <div id="pagination_top" style="float:{vb:stylevar right}">
            {vb:raw block_data.pagenav}
    </div>    
</div>
<br />
</vb:if>


    <vb:if condition="$block_data['resultbits']">
        {vb:raw block_data.resultbits}
    <vb:else />
        {vb:rawphrase dbtech_usertag_no_results}
    </vb:if>


<vb:if condition="$block_data[pagenav]">
<br />
<div class="floatcontainer" id="controls_below">
    <div id="pagination_bottom" style="float:{vb:stylevar right}">
            {vb:raw block_data.pagenav}
    </div>
</div>
</vb:if>
</div></div>]]></template>
        <template name="dbtech_usertag_memberinfo_block_tag" templatetype="template" date="1275922889" username="Belazor" version="1.1.0"><![CDATA[<div id="view-usertags" class="<vb:if condition="$selected_tab == 'usertags'">selected_view_section<vb:else />view_section</vb:if>">
<div class="member_content">
<vb:if condition="$block_data[pagenav]">
<div class="floatcontainer" id="controls_above">
    <div id="pagination_top" style="float:{vb:stylevar right}">
            {vb:raw block_data.pagenav}
    </div>    
</div>
<br />
</vb:if>


    <vb:if condition="$block_data['resultbits']">
        {vb:raw block_data.resultbits}
    <vb:else />
        {vb:rawphrase dbtech_usertag_no_results}
    </vb:if>


<vb:if condition="$block_data[pagenav]">
<br />
<div class="floatcontainer" id="controls_below">
    <div id="pagination_bottom" style="float:{vb:stylevar right}">
            {vb:raw block_data.pagenav}
    </div>
</div>
</vb:if>
</div></div>]]></template>
        <template name="dbtech_usertag_mention" templatetype="template" date="1287345261" username="Belazor" version="1.2.2"><![CDATA[<vb:if condition="!isset($vbulletin->options['dbtech_usertag_enableat']) OR $vbulletin->options['dbtech_usertag_enableat']">@</vb:if><vb:if condition="$vbulletin->options['dbtech_usertag_mentionbbcode'] & 8"><span class="highlight"></vb:if><vb:if condition="$vbulletin->options['dbtech_usertag_mentionbbcode'] & 4"><i></vb:if><vb:if condition="$vbulletin->options['dbtech_usertag_mentionbbcode'] & 2"><b></vb:if><vb:if condition="$vbulletin->options['dbtech_usertag_mentionbbcode'] & 1"><u></vb:if><a href="{vb:raw vboptions.bburl}/member.php?u=?1" target="_blank">?2</a><vb:if condition="$vbulletin->options['dbtech_usertag_mentionbbcode'] & 1"></u></vb:if><vb:if condition="$vbulletin->options['dbtech_usertag_mentionbbcode'] & 2"></b></vb:if><vb:if condition="$vbulletin->options['dbtech_usertag_mentionbbcode'] & 4"></i></vb:if><vb:if condition="$vbulletin->options['dbtech_usertag_mentionbbcode'] & 8"></span></vb:if>]]></template>
        <template name="dbtech_usertag_navbar" templatetype="template" date="1274309538" username="Belazor" version="1.1.0"><![CDATA[<li><a href="misc.php?{vb:raw session.sessionurl}do=dbtech_usertag_statistics">{vb:rawphrase dbtech_usertag_user_tagging_statistics}</a></li>]]></template>
        <template name="dbtech_usertag_postbit" templatetype="template" date="1274037157" username="Belazor" version="1.0.0"><![CDATA[<vb:if condition="$vboptions['dbtech_usertag_postbit'] & 1"><dt>{vb:rawphrase dbtech_usertag_mentioned}</dt> <dd>{vb:rawphrase dbtech_usertag_x_posts, {vb:raw post.dbtech_usertag_mentions}}</dd></vb:if>
<vb:if condition="$vboptions['dbtech_usertag_postbit'] & 2"><dt>{vb:rawphrase dbtech_usertag_tagged}</dt> <dd>{vb:rawphrase dbtech_usertag_x_threads, {vb:var post.dbtech_usertag_tags}}</dd></vb:if>]]></template>
        <template name="dbtech_usertag_result" templatetype="template" date="1274022276" username="Belazor" version="1.0.0"><![CDATA[<h4 class="subsectionhead-understate">{vb:raw day}</h4>
<div class="subsection">

    <ul class="floatcontainer">
    {vb:raw resultbits}
    </ul>
</div>
<br />]]></template>
        <template name="dbtech_usertag_result_bit" templatetype="template" date="1274054133" username="Belazor" version="1.0.0"><![CDATA[<li style="padding-bottom: 6px; padding-left: 12px;">{vb:raw text}</li>]]></template>
        <template name="dbtech_usertag_statistics" templatetype="template" date="1274299063" username="Belazor" version="1.1.0"><![CDATA[    <h2 class="blockhead" style="margin-top: 5px;">{vb:raw pagetitle}</h2>
    <div class="blockbody settings_form_border">
        {vb:raw leaderboardbits}
    </div>]]></template>
        <template name="dbtech_usertag_statistics_statisticbit" templatetype="template" date="1274299102" username="Belazor" version="1.1.0"><![CDATA[<fieldset style="border:1px solid; padding: 6px; margin: 6px; display:inline; white-space:nowrap;">
    <legend style="font-size:{vb:stylevar small_fontSize};">{vb:raw phrase}</legend>
    <ol style="font-size:{vb:stylevar small_fontSize};">
        {vb:raw userbits}
    </ol>
</fieldset>]]></template>
        <template name="dbtech_usertag_statistics_userbit" templatetype="template" date="1274299450" username="Belazor" version="1.1.0"><![CDATA[<li style="list-style:decimal inside;"><vb:if condition="$userinfo">{vb:raw userinfo.musername} ({vb:raw userinfo.value})<vb:else />-</vb:if></li>]]></template>
        <template name="dbtech_usertag_taglist" templatetype="template" date="1275604022" username="Belazor" version="1.1.0"><![CDATA[    <vb:if condition="$pagenav">
    <div class="floatcontainer" id="controls_above">
        <div id="pagination_top" style="float:{vb:stylevar right}">
                {vb:raw pagenav}
        </div>    
    </div>
    <br />
    </vb:if>

    <h2 class="blockhead" style="margin-top: 5px;">{vb:raw pagetitle}</h2>
    <div class="blockbody settings_form_border">
        <div class="table" style="width: 100%;">
            <div class="tr" style="width: 100%;">
                <div class="td blocksubhead">{vb:rawphrase user_name}</div>
                <div class="td blocksubhead">{vb:rawphrase dbtech_usertag_tagged_by}</div>
                <div class="td blocksubhead">{vb:rawphrase date}</div>
            </div>
            {vb:raw results}
        </div>
    </div>

    <vb:if condition="$pagenav">
    <br />
    <div class="floatcontainer" id="controls_below">
        <div id="pagination_bottom" style="float:{vb:stylevar right}">
                {vb:raw pagenav}
        </div>
    </div>
    </vb:if>]]></template>
        <template name="dbtech_usertag_taglist_bit" templatetype="template" date="1274051440" username="Belazor" version="1.0.0"><![CDATA[<div class="tr" style="width: 100%;">
    <div class="td blockrow">{vb:raw username}</div>
    <div class="td blockrow">{vb:raw taggedby}</div>
    <div class="td blockrow">{vb:raw time}</div>
</div>]]></template>
    </templates>
    <stylevardfns>
    </stylevardfns>
    <stylevars>
    </stylevars>
    <plugins>
        <plugin active="1" executionorder="5">
            <title>Custom Admin Permissions - Field Set</title>
            <hookname>admindata_start</hookname>
            <phpcode><![CDATA[require(DIR . '/dbtech/usertag/hooks/admindata_start.php');]]></phpcode>
        </plugin>
        <plugin active="1" executionorder="5">
            <title>Delete Confirmation Override</title>
            <hookname>admin_delete_confirmation</hookname>
            <phpcode><![CDATA[require(DIR . '/dbtech/usertag/hooks/admin_delete_confirmation.php');]]></phpcode>
        </plugin>
        <plugin active="1" executionorder="5">
            <title>Custom Admin Permissions - Form</title>
            <hookname>admin_permissions_form</hookname>
            <phpcode><![CDATA[require(DIR . '/dbtech/usertag/hooks/admin_permissions_form.php');]]></phpcode>
        </plugin>
        <plugin active="1" executionorder="5">
            <title>Custom Admin Permissions - Process</title>
            <hookname>admin_permissions_process</hookname>
            <phpcode><![CDATA[require(DIR . '/dbtech/usertag/hooks/admin_permissions_process.php');]]></phpcode>
        </plugin>
        <plugin active="1" executionorder="1">
            <title><![CDATA[Remove [MENTION] BBCode From Email Notifications]]></title>
            <hookname>bbcode_parse_complete</hookname>
            <phpcode><![CDATA[$text = preg_replace('/\[\/?mention=?\d*\]/iU', '', $text);]]></phpcode>
        </plugin>
        <plugin active="1" executionorder="1">
            <title><![CDATA[Render [MENTION] BBCode]]></title>
            <hookname>bbcode_parse_complete_precache</hookname>
            <phpcode><![CDATA[if (!class_exists('vB_Template'))
{
    // Ensure we have the template class
    require(DIR . '/dbtech/usertag/class_template.php');
}

static $mention;
global $vbulletin;

if (empty($mention))
{    //only figure this out once
    $mention = vB_Template::create('dbtech_usertag_mention')->render();
    
    // This is because of vB's template system
    $mention = str_replace('?1', '$1', $mention);
    $mention = str_replace('?2', '$2', $mention);
}

$text = preg_replace('/\[\/?mention=?\]/i', '', preg_replace('/\[mention=(\d+)\](.*)\[\/mention\]/iU', $mention, $text));

//$text = $this->parse_bbcode(preg_replace('/\[\/?mention=?\]/i', '', preg_replace('/\[mention=(\d+)\](.*)\[\/mention\]/iU', $mention, $text)), $do_smilies, $do_imgcode, $do_html);]]></phpcode>
        </plugin>
        <plugin active="1" executionorder="5">
            <title>Template Caching</title>
            <hookname>cache_templates</hookname>
            <phpcode><![CDATA[require_once(DIR . '/dbtech/usertag/hooks/cache_templates.php');]]></phpcode>
        </plugin>
        <plugin active="1" executionorder="5">
            <title>Custom Admin Permissions - Check</title>
            <hookname>can_administer</hookname>
            <phpcode><![CDATA[require(DIR . '/dbtech/usertag/hooks/can_administer.php');]]></phpcode>
        </plugin>
        <plugin active="1" executionorder="5">
            <title>Shoutbox: Tab Functionality</title>
            <hookname>dbtech_vbshout_ajax_handler_fetch</hookname>
            <phpcode><![CDATA[require(DIR . '/dbtech/usertag/hooks/dbtech_vbshout_ajax_handler_fetch.php');]]></phpcode>
        </plugin>
        <plugin active="1" executionorder="5">
            <title>Shoutbox: Tab Contents</title>
            <hookname>dbtech_vbshout_fetch_shouts_query</hookname>
            <phpcode><![CDATA[require(DIR . '/dbtech/usertag/hooks/dbtech_vbshout_fetch_shouts_query.php');]]></phpcode>
        </plugin>
        <plugin active="1" executionorder="5">
            <title>Shoutbox: Add Tab</title>
            <hookname>dbtech_vbshout_shoutbox_start</hookname>
            <phpcode><![CDATA[require(DIR . '/dbtech/usertag/hooks/dbtech_vbshout_shoutbox_start.php');]]></phpcode>
        </plugin>
        <plugin active="1" executionorder="5">
            <title>Post Parsing: Insert Mentions (Edit)</title>
            <hookname>editpost_update_complete</hookname>
            <phpcode><![CDATA[require(DIR . '/dbtech/usertag/hooks/newpost_complete.php');]]></phpcode>
        </plugin>
        <plugin active="1" executionorder="5">
            <title>Member Info Profile Blocks</title>
            <hookname>member_build_blocks_start</hookname>
            <phpcode><![CDATA[require(DIR . '/dbtech/usertag/hooks/member_build_blocks_start.php');]]></phpcode>
        </plugin>
        <plugin active="1" executionorder="5">
            <title>Misc: User Tag Actions</title>
            <hookname>misc_start</hookname>
            <phpcode><![CDATA[require(DIR . '/dbtech/usertag/hooks/misc_start.php');]]></phpcode>
        </plugin>
        <plugin active="1" executionorder="5">
            <title>ModCP - Navigation</title>
            <hookname>mod_index_navigation</hookname>
            <phpcode><![CDATA[require(DIR . '/dbtech/usertag/hooks/mod_index_navigation.php');]]></phpcode>
        </plugin>
        <plugin active="1" executionorder="5">
            <title>Post Parsing: Insert Mentions</title>
            <hookname>newpost_complete</hookname>
            <phpcode><![CDATA[require(DIR . '/dbtech/usertag/hooks/newpost_complete.php');]]></phpcode>
        </plugin>
        <plugin active="1" executionorder="5">
            <title>Notifications</title>
            <hookname>notifications_list</hookname>
            <phpcode><![CDATA[require(DIR . '/dbtech/usertag/hooks/notifications_list.php');]]></phpcode>
        </plugin>
        <plugin active="1" executionorder="5">
            <title><![CDATA[Who's Online - Set Activity]]></title>
            <hookname>online_location_process</hookname>
            <phpcode><![CDATA[require_once(DIR . '/dbtech/usertag/hooks/online_location_process.php');]]></phpcode>
        </plugin>
        <plugin active="1" executionorder="5">
            <title><![CDATA[Who's Online - Handle Activity]]></title>
            <hookname>online_location_unknown</hookname>
            <phpcode><![CDATA[require_once(DIR . '/dbtech/usertag/hooks/online_location_unknown.php');]]></phpcode>
        </plugin>
        <plugin active="1" executionorder="5">
            <title>Postbit Integration</title>
            <hookname>postbit_display_complete</hookname>
            <phpcode><![CDATA[require(DIR . '/dbtech/usertag/hooks/postbit_display_complete.php');]]></phpcode>
        </plugin>
        <plugin active="1" executionorder="5">
            <title>Post Parsing: New Reply</title>
            <hookname>postdata_presave</hookname>
            <phpcode><![CDATA[require(DIR . '/dbtech/usertag/hooks/postdata_presave.php');]]></phpcode>
        </plugin>
        <plugin active="1" executionorder="5">
            <title>Navbar Hook</title>
            <hookname>process_templates_complete</hookname>
            <phpcode><![CDATA[require(DIR . '/dbtech/usertag/hooks/process_templates_complete.php');]]></phpcode>
        </plugin>
        <plugin active="1" executionorder="5">
            <title>Show Thread: Display Tag List</title>
            <hookname>showthread_complete</hookname>
            <phpcode><![CDATA[require(DIR . '/dbtech/usertag/hooks/showthread_complete.php');]]></phpcode>
        </plugin>
        <plugin active="1" executionorder="5">
            <title>Template Grouping</title>
            <hookname>template_groups</hookname>
            <phpcode><![CDATA[require(DIR . '/dbtech/usertag/hooks/template_groups.php');]]></phpcode>
        </plugin>
        <plugin active="1" executionorder="5">
            <title>Post Parsing: New Thread</title>
            <hookname>threadfpdata_presave</hookname>
            <phpcode><![CDATA[require(DIR . '/dbtech/usertag/hooks/postdata_presave.php');]]></phpcode>
        </plugin>
        <plugin active="1" executionorder="5">
            <title>User Data Deletion</title>
            <hookname>userdata_delete</hookname>
            <phpcode><![CDATA[require(DIR . '/dbtech/usertag/hooks/userdata_delete.php');]]></phpcode>
        </plugin>
    </plugins>
    <phrases>

Using WinRAR to unzip.

Michlerish 01-06-2011 08:36 PM

contents of xml part 2:

PHP Code:

<phrasetype name="Control Panel Global" fieldname="cpglobal">
            <
phrase name="dbtech_usertag" date="1274285025" username="Belazor" version="1.0.0"><![CDATA[DBTech User Tagging]]></phrase>
            <
phrase name="dbtech_usertag_above_posts" date="1274473457" username="Belazor" version="1.1.0"><![CDATA[Above Posts]]></phrase>
            <
phrase name="dbtech_usertag_below_posts" date="1274473774" username="Belazor" version="1.1.0"><![CDATA[Below Posts]]></phrase>
            <
phrase name="dbtech_usertag_bold" date="1274276643" username="Belazor" version="1.0.0"><![CDATA[Bold]]></phrase>
            <
phrase name="dbtech_usertag_edited" date="1274287184" username="Belazor" version="1.1.0"><![CDATA[edited]]></phrase>
            <
phrase name="dbtech_usertag_editing_x_y" date="1274286594" username="Belazor" version="1.1.0"><![CDATA[Editing {1}: <span class="normal">{2}</span>]]></phrase>
            <
phrase name="dbtech_usertag_full" date="1273971281" username="Belazor" version="1.0.0"><![CDATA[DragonByte TechAdvanced User Tagging]]></phrase>
            <
phrase name="dbtech_usertag_highlight" date="1274276844" username="Belazor" version="1.0.0"><![CDATA[Highlight]]></phrase>
            <
phrase name="dbtech_usertag_isexcluded" date="1273972459" username="Belazor" version="1.0.0"><![CDATA[Is Excluded
<dfn>Excluding this member prevents them from being mentionable taggable.</dfn>]]></phrase>
            <
phrase name="dbtech_usertag_italic" date="1274276852" username="Belazor" version="1.0.0"><![CDATA[Italic]]></phrase>
            <
phrase name="dbtech_usertag_underline" date="1274276989" username="Belazor" version="1.0.0"><![CDATA[Underline]]></phrase>
        </
phrasetype>
        <
phrasetype name="Permissions" fieldname="cppermission">
            <
phrase name="canadminusertag" date="1273972681" username="Belazor" version="1.0.0"><![CDATA[Can Administer Advanced User Tagging]]></phrase>
            <
phrase name="dbtech_usertag_general_permissions" date="1273968619" username="Belazor" version="1.0.0"><![CDATA[DragonByte TechAdvanced User Tagging Permissions]]></phrase>
            <
phrase name="dbtech_usertag_is_excluded" date="1273970916" username="Belazor" version="1.0.0"><![CDATA[Is Excluded Usergroup
<dfn>Whether this usergroup should be excluded from this modification.</dfn>]]></phrase>
        </
phrasetype>
        <
phrasetype name="Email Body Text" fieldname="emailbody">
            <
phrase name="dbtech_usertag_mention_received_email" date="1274484520" username="Belazor" version="1.1.0"><![CDATA[Dear $usertaginfo[username],

$bbuserinfo[usernamehas mentioned you in a threadYou can view the Mention by visiting:

$vboptions[bburl]/showthread.php?p=$post[postid]#post$post[postid]

All the best,
$vboptions[bbtitle]]]></phrase>
        </
phrasetype>
        <
phrasetype name="Email Subject Text" fieldname="emailsubject">
            <
phrase name="dbtech_usertag_mention_received_email" date="1274484096" username="Belazor" version="1.1.0"><![CDATA[You have been Mentioned in a thread at $vboptions[bbtitle]]]></phrase>
        </
phrasetype>
        <
phrasetype name="Error Messages" fieldname="error">
            <
phrase name="dbtech_usertag_x_y" date="1274287157" username="Belazor" version="1.1.0"><![CDATA[{1} {2successfully.]]></phrase>
        </
phrasetype>
        <
phrasetype name="Front-End Redirect Messages" fieldname="frontredirect">
            <
phrase name="dbtech_usertag_tag_added" date="1274053162" username="Belazor" version="1.0.0"><![CDATA[Users tagged successfully!]]></phrase>
        </
phrasetype>
        <
phrasetype name="GLOBAL" fieldname="global">
            <
phrase name="dbtech_usertag_emailmention" date="1274483147" username="Belazor" version="1.1.0"><![CDATA[Enable Mention Email Notification]]></phrase>
            <
phrase name="dbtech_usertag_emailmention_descr" date="1274483269" username="Belazor" version="1.1.0"><![CDATA[Enable this setting if you want to receive an email notification whenever you are Mentioned in a thread.]]></phrase>
            <
phrase name="dbtech_usertag_emailmention_short" date="1274483180" username="Belazor" version="1.1.0"><![CDATA[Mention Email Notification]]></phrase>
            <
phrase name="dbtech_usertag_emailtag" date="1274483036" username="Belazor" version="1.1.0"><![CDATA[Enable Tag Email Notification]]></phrase>
            <
phrase name="dbtech_usertag_emailtag_descr" date="1274483339" username="Belazor" version="1.1.0"><![CDATA[Enable this setting if you want to receive an email notification whenever you are Tagged in a thread.]]></phrase>
            <
phrase name="dbtech_usertag_emailtag_short" date="1274483291" username="Belazor" version="1.1.0"><![CDATA[Tag Email Notification]]></phrase>
            <
phrase name="dbtech_usertag_general_settings" date="1274311032" username="Belazor" version="1.1.0"><![CDATA[User Tagging General Settings]]></phrase>
            <
phrase name="dbtech_usertag_me_mentioned_y_in_z" date="1274118320" username="Belazor" version="1.0.0"><![CDATA[/me mentioned {1in post {2}]]></phrase>
            <
phrase name="dbtech_usertag_me_tagged_y_in_z" date="1274105940" username="Belazor" version="1.0.0"><![CDATA[/me tagged {1in {2}]]></phrase>
            <
phrase name="dbtech_usertag_mentioned" date="1274036015" username="Belazor" version="1.0.0"><![CDATA[Mentioned]]></phrase>
            <
phrase name="dbtech_usertag_mentionrestrict" date="1274311409" username="Belazor" version="1.1.0"><![CDATA[Enable Mention Restriction]]></phrase>
            <
phrase name="dbtech_usertag_mentionrestrict_descr" date="1274311237" username="Belazor" version="1.1.0"><![CDATA[Check this box if you only want to be alerted of Mentions from users on your friends list.]]></phrase>
            <
phrase name="dbtech_usertag_mentionrestrict_short" date="1274311435" username="Belazor" version="1.1.0"><![CDATA[Mention Restriction]]></phrase>
            <
phrase name="dbtech_usertag_mentions" date="1273955646" username="Belazor" version="1.0"><![CDATA[Mentions]]></phrase>
            <
phrase name="dbtech_usertag_no_results" date="1274021970" username="Belazor" version="1.0.0"><![CDATA[No results to display...]]></phrase>
            <
phrase name="dbtech_usertag_settings" date="1274308922" username="Belazor" version="1.1.0"><![CDATA[Settings]]></phrase>
            <
phrase name="dbtech_usertag_statistics" date="1274298408" username="Belazor" version="1.1.0"><![CDATA[Statistics]]></phrase>
            <
phrase name="dbtech_usertag_tag_list" date="1274045392" username="Belazor" version="1.0.0"><![CDATA[User Tag List]]></phrase>
            <
phrase name="dbtech_usertag_tag_user" date="1274045799" username="Belazor" version="1.0.0"><![CDATA[Tag User(s)]]></phrase>
            <
phrase name="dbtech_usertag_tag_user_descr" date="1274048523" username="Belazor" version="1.0.0"><![CDATA[Input each user name separated by a commalike soUser1,User2,User3.]]></phrase>
            <
phrase name="dbtech_usertag_tagged" date="1274035997" username="Belazor" version="1.0.0"><![CDATA[Tagged]]></phrase>
            <
phrase name="dbtech_usertag_tagged_by" date="1274050312" username="Belazor" version="1.0.0"><![CDATA[Tagged By]]></phrase>
            <
phrase name="dbtech_usertag_tagrestrict" date="1274311386" username="Belazor" version="1.1.0"><![CDATA[Enable Tag Restriction]]></phrase>
            <
phrase name="dbtech_usertag_tagrestrict_descr" date="1274311264" username="Belazor" version="1.1.0"><![CDATA[Check this box if you only want to be alerted of Tags from users on your friends list.]]></phrase>
            <
phrase name="dbtech_usertag_tagrestrict_short" date="1274311454" username="Belazor" version="1.1.0"><![CDATA[Tag Restriction]]></phrase>
            <
phrase name="dbtech_usertag_tags" date="1273955655" username="Belazor" version="1.0"><![CDATA[Tags]]></phrase>
            <
phrase name="dbtech_usertag_tags_in_x" date="1274049833" username="Belazor" version="1.0.0"><![CDATA[Tags In Thread: {1}]]></phrase>
            <
phrase name="dbtech_usertag_threadtags" date="1274023216" username="Belazor" version="1.0.0"><![CDATA[Thread Tags]]></phrase>
            <
phrase name="dbtech_usertag_topmentions" date="1274298740" username="Belazor" version="1.1.0"><![CDATA[Top Mentioned]]></phrase>
            <
phrase name="dbtech_usertag_toptags" date="1274299186" username="Belazor" version="1.1.0"><![CDATA[Top Tagged]]></phrase>
            <
phrase name="dbtech_usertag_user_tag" date="1274308300" username="Belazor" version="1.1.0"><![CDATA[User Tagging]]></phrase>
            <
phrase name="dbtech_usertag_user_tagging_statistics" date="1274309549" username="Belazor" version="1.1.0"><![CDATA[User Tagging Statistics]]></phrase>
            <
phrase name="dbtech_usertag_user_tags" date="1273973518" username="Belazor" version="1.0.0"><![CDATA[User Tags]]></phrase>
            <
phrase name="dbtech_usertag_x_mentioned_y_in_z" date="1274023156" username="Belazor" version="1.0.0"><![CDATA[{1mentioned {2in post {3}]]></phrase>
            <
phrase name="dbtech_usertag_x_posts" date="1274036049" username="Belazor" version="1.0.0"><![CDATA[{1Post(s)]]></phrase>
            <
phrase name="dbtech_usertag_x_tagged_y_in_z" date="1274023163" username="Belazor" version="1.0.0"><![CDATA[{1tagged {2in thread {3}]]></phrase>
            <
phrase name="dbtech_usertag_x_threads" date="1274036065" username="Belazor" version="1.0.0"><![CDATA[{1Thread(s)]]></phrase>
            <
phrase name="dbtech_vbactivity_new_mentions" date="1274017358" username="Belazor" version="1.0.0"><![CDATA[New Mentions]]></phrase>
            <
phrase name="dbtech_vbactivity_new_thread_tags" date="1274017368" username="Belazor" version="1.0.0"><![CDATA[New Thread Tags]]></phrase>
        </
phrasetype>
        <
phrasetype name="Register" fieldname="register">
            <
phrase name="dbtech_usertag_username_error" date="1274043363" username="Belazor" version="1.0.0"><![CDATA[You may not use the character combination <b>/@</bin your username.]]></phrase>
        </
phrasetype>
        <
phrasetype name="Show Thread" fieldname="showthread">
            <
phrase name="dbtech_usertag_all_friends" date="1274104613" username="Belazor" version="1.0.0"><![CDATA[All Friends]]></phrase>
        </
phrasetype>
        <
phrasetype name="vBulletin Settings" fieldname="vbsettings">
            <
phrase name="setting_dbtech_usertag_active_desc" date="1274044999" username="Belazor" version="1.0.0"><![CDATA[From time to timeyou may want to turn the modification off to the public while you perform maintenanceupdate versionsetcWhen you turn it offvisitors will see a message that states that it is temporarily unavailable, and its functionality will be disabled.]]></phrase>
            <
phrase name="setting_dbtech_usertag_active_title" date="1274044999" username="Belazor" version="1.0.0"><![CDATA[Enable Modification]]></phrase>
            <
phrase name="setting_dbtech_usertag_disableproblematic_desc" date="1274110917" username="Belazor" version="1.0.0"><![CDATA[The mod uses <strong>/@</strong> as a way to know what's a Mention when your members post threads / posts.<br />
This setting disables that character combination from being a valid combination in usernames.]]></phrase>
            <phrase name="setting_dbtech_usertag_disableproblematic_title" date="1274110917" username="Belazor" version="1.0.0"><![CDATA[(Pro) Disable Problematic Username Characters]]></phrase>
            <phrase name="setting_dbtech_usertag_displayversion_desc" date="1273955615" username="Belazor" version="1.0"><![CDATA[If you disable this, the version number you are running will not be shown to the public.]]></phrase>
            <phrase name="setting_dbtech_usertag_displayversion_title" date="1273955615" username="Belazor" version="1.0"><![CDATA[Display Version Number]]></phrase>
            <phrase name="setting_dbtech_usertag_enableat_desc" date="1274275863" username="Belazor" version="1.0.0"><![CDATA[This setting lets you control whether the '
@' symbol should be displayed when a person is Mentioned in a post.]]></phrase>
            <phrase name="setting_dbtech_usertag_enableat_title" date="1274275863" username="Belazor" version="1.0.0"><![CDATA[(Pro) Enable '
@' in Mentions]]></phrase>
            <phrase name="setting_dbtech_usertag_enablestats_desc" date="1274386790" username="Belazor" version="1.1.0"><![CDATA[With this setting you can control whether the "Top Tagged / Mentioned" page should be available.]]></phrase>
            <phrase name="setting_dbtech_usertag_enablestats_title" date="1274386790" username="Belazor" version="1.1.0"><![CDATA[Enable Statistics Page]]></phrase>
            <phrase name="setting_dbtech_usertag_enabletaggedlist_desc" date="1273955615" username="Belazor" version="1.0"><![CDATA[This setting controls whether the Tagged Users list is available in the threads.]]></phrase>
            <phrase name="setting_dbtech_usertag_enabletaggedlist_title" date="1273955615" username="Belazor" version="1.0"><![CDATA[(Pro) Enable Tagged Users List]]></phrase>
            <phrase name="setting_dbtech_usertag_inlineusers_desc" date="1273955615" username="Belazor" version="1.0"><![CDATA[How many users should be displayed in the inline Tagged Users list before a link to the full list is shown.]]></phrase>
            <phrase name="setting_dbtech_usertag_inlineusers_title" date="1273955615" username="Belazor" version="1.0"><![CDATA[Tagged Users List Count]]></phrase>
            <phrase name="setting_dbtech_usertag_mentionbbcode_desc" date="1274276454" username="Belazor" version="1.0.0"><![CDATA[Here, you can select additional BBCode to be added to the Mentioned usernames in posts.]]></phrase>
            <phrase name="setting_dbtech_usertag_mentionbbcode_title" date="1274276454" username="Belazor" version="1.0.0"><![CDATA[Mentioned Username BBCode Additions]]></phrase>
            <phrase name="setting_dbtech_usertag_postbit_desc" date="1274276828" username="Belazor" version="1.0.0"><![CDATA[You can choose to enable / disable certain pieces of information from the Postbit with this setting.]]></phrase>
            <phrase name="setting_dbtech_usertag_postbit_title" date="1274276828" username="Belazor" version="1.0.0"><![CDATA[(Pro) Postbit Integration]]></phrase>
            <phrase name="setting_dbtech_usertag_postpreview_charlimit_desc" date="1274473952" username="Belazor" version="1.1.0"><![CDATA[This controls how many characters is displayed on either side of the post in the profile post preview.<br />
0 = Disable Preview.]]></phrase>
            <phrase name="setting_dbtech_usertag_postpreview_charlimit_title" date="1274473952" username="Belazor" version="1.1.0"><![CDATA[(Pro) Post Preview Character Limit]]></phrase>
            <phrase name="setting_dbtech_usertag_shoutbox_desc" date="1273955615" username="Belazor" version="1.0"><![CDATA[Advanced User Tagging can add an additional tab to <a href="https://vborg.vbsupport.ru/showthread.php?t=236970">DragonByte Tech: vBShout</a> with alerts for Tags and Mentions.<br />
If you don'
use vBShoutyou can ignore this setting.<br />
If 
you don't want to use this feature, uncheck all boxes.]]></phrase>
            <phrase name="setting_dbtech_usertag_shoutbox_title" date="1273955615" username="Belazor" version="1.0"><![CDATA[Shoutbox Integration]]></phrase>
            <phrase name="setting_dbtech_usertag_statistics_topx_desc" date="1274275736" username="Belazor" version="1.0.0"><![CDATA[Choose how many users you'
d like to show in the Statistics.]]></phrase>
            <
phrase name="setting_dbtech_usertag_statistics_topx_title" date="1274275736" username="Belazor" version="1.0.0"><![CDATA[(ProStatisticsTop X Limit]]></phrase>
            <
phrase name="setting_dbtech_usertag_taglist_position_desc" date="1274473377" username="Belazor" version="1.1.0"><![CDATA[If you'd like to reposition Tag List, you can do so here.]]></phrase>
            <phrase name="setting_dbtech_usertag_taglist_position_title" date="1274473377" username="Belazor" version="1.1.0"><![CDATA[(Pro) Tag List Position]]></phrase>
            <phrase name="setting_dbtech_usertag_versionnumber_desc" date="1273967683" username="Belazor" version="1.0.0"><![CDATA[Numeric representation of the current version.<br />
Leave this setting alone.]]></phrase>
            <phrase name="setting_dbtech_usertag_versionnumber_text_desc" date="1273967708" username="Belazor" version="1.0.0"><![CDATA[Textual representation of the current version.<br />
Leave this setting alone.]]></phrase>
            <phrase name="setting_dbtech_usertag_versionnumber_text_title" date="1273967708" username="Belazor" version="1.0.0"><![CDATA[Version Number Text]]></phrase>
            <phrase name="setting_dbtech_usertag_versionnumber_title" date="1273967683" username="Belazor" version="1.0.0"><![CDATA[Version Number]]></phrase>
            <phrase name="settinggroup_dbtech_usertag_options" date="1273955615" username="Belazor" version="1.0"><![CDATA[DragonByte Tech: Advanced User Tagging - General Options]]></phrase>
            <phrase name="settinggroup_dbtech_usertag_version" date="1273967642" username="Belazor" version="1.0.0"><![CDATA[DragonByte Tech: Advanced User Tagging Untouchables]]></phrase>
        </phrasetype>
        <phrasetype name="Who'
s Online" fieldname="wol">
            <phrase name="
dbtech_usertag_viewing_tag_list" date="1273972073" username="Belazor" version="1.0.0"><![CDATA[Viewing Tag List]]></phrase>
        </phrasetype>
    </phrases>
    <options>
        <settinggroup name="
dbtech_usertag_options" displayorder="750">
            <setting varname="
dbtech_usertag_displayversion" displayorder="10">
                <datatype>boolean</datatype>
                <optioncode>yesno</optioncode>
                <defaultvalue>1</defaultvalue>
            </setting>
            <setting varname="
dbtech_usertag_inlineusers" displayorder="40">
                <datatype>posint</datatype>
                <defaultvalue>25</defaultvalue>
            </setting>
            <setting varname="
dbtech_usertag_shoutbox" displayorder="60">
                <datatype>bitfield</datatype>
                <optioncode>bitfield:nocache|dbtech_usertag_shoutbox</optioncode>
                <defaultvalue>3</defaultvalue>
            </setting>
            <setting varname="
dbtech_usertag_enablestats" displayorder="80">
                <datatype>boolean</datatype>
                <optioncode>yesno</optioncode>
                <defaultvalue>1</defaultvalue>
            </setting>
            <setting varname="
dbtech_usertag_mentionbbcode" displayorder="110">
                <datatype>bitfield</datatype>
                <optioncode>bitfield:nocache|dbtech_usertag_mentionbbcode</optioncode>
                <defaultvalue>0</defaultvalue>
            </setting>
        </settinggroup>
        <settinggroup name="
dbtech_usertag_version" displayorder="0">
            <setting varname="
dbtech_usertag_versionnumber" displayorder="10">
                <datatype>posint</datatype>
                <defaultvalue>1000</defaultvalue>
            </setting>
            <setting varname="
dbtech_usertag_active" displayorder="20">
                <datatype>boolean</datatype>
                <optioncode>yesno</optioncode>
                <defaultvalue>1</defaultvalue>
            </setting>
            <setting varname="
dbtech_usertag_versionnumber_text" displayorder="20">
                <datatype>free</datatype>
                <defaultvalue>1.0.0</defaultvalue>
            </setting>
        </settinggroup>
    </options>
    <helptopics>
    </helptopics>
    <cronentries>
    </cronentries>
    <faqentries>
    </faqentries>
</product> 


DragonByte Tech 01-06-2011 08:48 PM

Pasting it here isn't going to do much good, any special characters could have been removed.

Please try the importing process in another browser.
If that doesn't do anything, try another computer.

Our xml file isn't the problem here I'm afraid :(


Fillip

yahooooh 01-19-2011 10:58 AM

Note :
this product still not work good with non english username
for example:
arabic usernames with 2 words and space between them , it will tagg the first word and not the whole name so it will tag another person

hope this fix on the next update , i purchased the full script but still this issue exist !

DragonByte Tech 01-19-2011 11:03 AM

This is already a known issue for some of our users :)

Non-ISO characters may not be mentionable via the AJAX Quick Reply due to the inherent limitation of AJAX technology.

The multiple word issue, along with the accidental email mistakes (user called Gmail.com being tagged when someone writes qwerty@gmail.com etc) will be correctable by the Admin in the next update when we plan to optionally re-introduce the ; delimiter :)

The customer was made aware of this in his support thread.


Fillip

Drake Splinter 01-20-2011 11:18 AM

Quote:

Originally Posted by x9751 (Post 2118752)
It is not working for me on 4.0.8 I used both [mention] and @username both didn't work the "mention" BBCode just puts the @ and @username does nothing at all. am i doing something wrong?

I'm having the same problem... VB 4.1.1

DragonByte Tech 01-20-2011 11:22 AM

While we're unable to confirm this issue, it's true that due to the vast number of possibilities existing in each of your respective cases, it's extremely difficult to debug it without any information other than your vB version.

That being said, we are currently working on a new version which may have a fix for your problems :)


Fillip

DragonByte Tech 01-20-2011 10:11 PM

AUT v1.2.3 has been released.

This version offers only two changes:
  • It is now possible to Mention people in Blogs.
  • Compatibility with the upcoming Postbit Tabs mod has been added.

The issues that stem from the lack of ; delimiter (email accounts being mentioned, incorrect user being selected some of the time, etc.) are not fixed in this version.
Those issues requires a more extensive update to fix.


Fillip

smnet 01-25-2011 01:49 PM

Quote:

Originally Posted by DragonByte Tech (Post 2152147)
...
...
Compatibility with the upcoming Postbit Tabs mod has been added.
...


Fillip.... do you have any info regards this upcoming mod? I checked your board but saw no info.

DragonByte Tech 01-30-2011 09:51 PM

Advanced User Tagging v1.2.4
  • Fixed a potential security risk with the Mentions display in profiles.
  • Fixed the rare instance where someone would receive eval() errors because of the PHP code not being linked to files in the file system.


Fillip

Juggernaut 01-31-2011 01:50 AM

The user mentions is broken after the upgrade to 1.2.4

I get this for the mention of one of my user
http://www.site.com/member.php?u=%A31

Instead of this, which is the correct username for the user being mentioned.
http://www.site.com/member.php?u=91

DragonByte Tech 01-31-2011 02:11 AM

Advanced User Tagging v1.2.5
  • Fixed a problem with mentions not appearing correctly in posts or profiles.


Fillip

Juggernaut 01-31-2011 02:35 AM

The mention now points to the correct user, but it still appears like this on the postbit.

@£2
instead of @username

DragonByte Tech 01-31-2011 02:46 AM

Please edit all affected posts and re-save them :)


Fillip

Juggernaut 01-31-2011 03:02 AM

Problem persists after editing and saving, and with new mentions.

DragonByte Tech 01-31-2011 04:18 AM

Updated the zip, re-import the XML file and it should work :)

In my defence, it is 6AM where I live :p


Fillip

Juggernaut 01-31-2011 04:18 PM

The problem is still there. I did a test mention, and when the mention popped up, it looked alright, but when I visited the post with the account being mentioned it still looked like this: @£2
Also when I edit the weird mentions, it doesn't fix them.

DragonByte Tech 01-31-2011 04:24 PM

Please re-download and re-import the XML file, and be sure to flush any cache systems like vBO you may be running, then try editing them again.

Fillip

Juggernaut 01-31-2011 04:40 PM

Thank you, that appears to have done the trick, after I flushed the cache with VBOptimize :D

Breixo 02-02-2011 07:55 PM

Quote:

Originally Posted by DragonByte Tech (Post 2156950)
Please re-download and re-import the XML file, and be sure to flush any cache systems like vBO you may be running, then try editing them again.


Fillip

I had the same problem (after @ the username dissapear). Flushing with vBoptimise and working perfectly.

Nice work!

Locou 02-13-2011 11:36 PM

I'd love to see an auto-tag when you quote a user. So he would also recieve a mention when someone quotes him. :)

TBforums 02-15-2011 10:53 PM

There is a similar mod made for that. Its called 'Who Quoted Me'

Here: https://vborg.vbsupport.ru/showthread.php?t=255285

Locou 02-16-2011 09:42 PM

Quote:

Originally Posted by TBforums (Post 2162983)
There is a similar mod made for that. Its called 'Who Quoted Me'

Here: https://vborg.vbsupport.ru/showthread.php?t=255285

Yeah, I know about that one. I just prefer to have one single mod for user taging/quoting notifications.
Thank you anyways. :)


All times are GMT. The time now is 09:15 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.02887 seconds
  • Memory Usage 2,224KB
  • 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
  • (3)bbcode_code_printable
  • (4)bbcode_php_printable
  • (9)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)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