Nope, no usernames with that.
Nope, no usernames with that.
so if you don't have usernames with this <vBET_SNTA> in database in post column - you should good integrate your plugin with vBET. please make all integrate steps one more time. step by step.
This page after integration - vaispy - should be translated.
also you can block adding this <vBET_SNTA> into usernames
NOT TESTED because I dont have this issue on my test forum:
1. edit and make a copy of this file:
forum root/includes/vbenterprisetranslator_functions_hooks.php
2. in this file find:
3. and replace with:PHP Code:if ($_REQUEST['language'] && $vbulletin->options['vbenterprisetranslator_donttranslateusernames'] && ($_POST['do'] != 'insertpm')) {
4. test itPHP Code:if ($_REQUEST['language'] && $vbulletin->options['vbenterprisetranslator_donttranslateusernames'] && ($_POST['do'] != 'insertpm') && ($_POST['do'] != 'postreply')) {
Last edited by kamilkurczak; 30-12-10 at 15:49.
You mean: forum root/includes/vbenterprisetranslator_functions_hooks.php???1. edit and make a copy of this file:
forum root/vbenterprisetranslator_functions_hooks.php
Will test now, and report back. Thank you very much!
thats right should be in includes folder.
If still not work - please describe here what I should do to reproduce it on my test forum - please give me step by step instruction.
It is mostly working now Kamil. Only when a member starts a new thread I still get the <vBET_SNTA> as his username on iSpy. Normal posting is good.
ok I know where is the issue with this new thread.
This issue not exist on my test forum.
please one more time edit the same file and:
1. edit and make a copy of this file:
forum root/includes/vbenterprisetranslator_functions_hooks.php
2. in this file find:
3. and replace with:PHP Code:if ($_REQUEST['language'] && $vbulletin->options['vbenterprisetranslator_donttranslateusernames'] && ($_POST['do'] != 'insertpm') && ($_POST['do'] != 'postreply')) {
4. test itPHP Code:if ($_REQUEST['language'] && $vbulletin->options['vbenterprisetranslator_donttranslateusernames'] && ($_POST['do'] != 'insertpm') && ($_POST['do'] != 'postreply')&& ($_POST['do'] != 'newthread')) {
now should work to new thread too
Last edited by kamilkurczak; 30-12-10 at 15:49.
Thanks again for your great support Kamil. I am just waiting to confirm the results.
That unfortunately did not work.
![]()
you are right. I entered the wrong command. Should be postthread
Now, you have a good solution:
1. edit and make a copy of this file:
forum root/includes/vbenterprisetranslator_functions_hooks.php
2. in this file find:
3. and replace with:PHP Code:if ($_REQUEST['language'] && $vbulletin->options['vbenterprisetranslator_donttranslateusernames'] && ($_POST['do'] != 'insertpm') && ($_POST['do'] != 'postreply')) {
4. test itPHP Code:if ($_REQUEST['language'] && $vbulletin->options['vbenterprisetranslator_donttranslateusernames'] && ($_POST['do'] != 'insertpm') && ($_POST['do'] != 'postreply')&& ($_POST['do'] != 'postthread')) {
now should work to new thread too. Sorry for my mistake.
Last edited by kamilkurczak; 30-12-10 at 15:50.