PDA

View Full Version : Major Additions - vB Enterprise Translator


Pages : 1 [2] 3

NLP-er
04-12-2010, 11:16 AM
Today I got a lot of database errors like this below. What happens ?

Database error in vBulletin 4.0.3:

Invalid SQL:
SELECT cache.originaltext as originaltext, cache.translated as translated FROM vbenterprisetranslator_cache_short help, vbenterprisetranslator_cache_short cache WHERE help.originaltext='Old+forum%2Carchive+sections%21 ' AND help.tl='cy' AND cache.serie=help.serie;

MySQL Error : MySQL server has gone away
Error Number : 2006
Request Date : Monday, April 12th 2010 @ 09:47:58 AM
Error Date : Monday, April 12th 2010 @ 09:55:46 AM
Script : http://www.mydomain.com/forum/forumdisplay.php?152-Archive&language=cy
Referrer :
IP Address : 67.195.115.116
Username : Unregistered
Classname : vB_Database
MySQL Version :

Google was responding slow with translations so mysql connection timed out. Just increase your timeout for mysql connection - this is official vBulletin solution for 'MySQL server has gone away' issue.

motorola
04-12-2010, 01:33 PM
Google was responding slow with translations so mysql connection timed out. Just increase your timeout for mysql connection - this is official vBulletin solution for 'MySQL server has gone away' issue.


and how can I do that ?

Noerenberg
04-12-2010, 08:27 PM
Please turn on option to nod transalte usernames. Please note that this option works in specific places - there still can be some places where usernames are translated. In such case please describe specifically where it happens. Also - you cannot use mods which are clearing HTML comments - otherwise usernames will be translated, because mark about not translating it will be removed.

I turn it ot, but the username are translate.

mikeinjersey
04-17-2010, 06:35 PM
I'm interested in this.

For the people that have this installed already, Has it increased traffic for ya ? If so, how much ? And how long did it take ?

I'm visually it must be weird having people from other countries signing up. The spelling must be hard to interpret at times. (even though its still converted over for us)

thx much

motorola
04-19-2010, 11:18 AM
and how can I do that ?

Someone an answere :( .
Please !
Thanks :)

mikeinjersey
04-19-2010, 02:31 PM
Someone an answere :( .
Please !
Thanks :)


Here's the technical reference -

http://dev.mysql.com/doc/refman/5.1/en/gone-away.html

But i'm sure if you google "increase time out mysql" , you'll find a more basic solution.

Jesh
04-19-2010, 02:55 PM
Integration instructions:
You just have to edit one file: vbseo_sitemap_functions.php in vbseo_sitemap directory.

Find:

vbseo_log_entry("[showthread] forum_id: $forumid, thread_id: $threadrow[threadid], total posts: $totalposts, pages: $totalpages, views: $threadrow[views] $prior");


And place AFTER it...

For SEO links

//additional code
$alanguages = array ('af','sq','ar','be','bg','ca','zh-CN','hr','cs','da','nl','en','pl','et','tl','fi',' fr','gl','de','el','iw','hi','hu','is','id','ga',' it','ja','ko','lv','lt','mk','ms','mt','no','fa',' pt','ro','ru','sr','sk','sl','es','sw','sv','zh-TW','th','tr','uk','vi','cy','yi');
if(!$archived) {
$strlenhost = strlen($vbseo_vars['bburl']."/");
$currentthreadurl = vbseo_url_thread($threadrow, 1, $archived);
$currentthreadurl_before = substr($currentthreadurl,0,$strlenhost);
$currentthreadurl_after = "/".substr($currentthreadurl,$strlenhost);
$lastpost =& $threadrow['lastpost'];
$vbseo_stat['t'] += sizeof($alanguages);
foreach($alanguages as $language) {
vbseo_add_url($currentthreadurl_before.$language.$ currentthreadurl_after, $prior, $lastpost, $freq);
}
}
//end additional code

NOTE: REMOVE YOUR DEFAULT LANGUAGE CODE from $alanguages
Also if you disabled some languages in option panel you have to delete its codes too.

For links with language=

//additional code
$alanguages = array ('af','sq','ar','be','bg','ca','zh-CN','hr','cs','da','nl','en','pl','et','tl','fi',' fr','gl','de','el','iw','hi','hu','is','id','ga',' it','ja','ko','lv','lt','mk','ms','mt','no','fa',' pt','ro','ru','sr','sk','sl','es','sw','sv','zh-TW','th','tr','uk','vi','cy','yi');
if(!$archived) {
$currentthreadurl = vbseo_url_thread($threadrow, 1, $archived) . '&language=';
$vbseo_stat['t'] += sizeof($alanguages);
$lastpost =& $threadrow['lastpost'];
foreach($alanguages as $language) {
vbseo_add_url($currentthreadurl.$language, $prior, $lastpost, $freq);
}
}
//end additional code

NOTE: REMOVE YOUR DEFAULT LANGUAGE CODE from $alanguages
Also if you disabled some languages in option panel you have to delete its codes too.

NOTE FOR SITEMAP INTEGRATION:
If you want to add to sitemap also links for other thread pages (if thread have several pages), then additional code must be added BEFORE:

$vbseo_stat[$archived?'at':'t'] += vbseo_add_2urls(


Also in additional code you have to change 1 to $p.


Piece of cake :)

Do I have to do BOTH or just one? Meaning, do I add additional code before $vbseo_stat AND also before "vbseo_log_entry..."? Or do I only do additional code 1x?

Jesh
04-19-2010, 04:01 PM
Also, has anyone managed to get this implemented with photopost gallery?

NLP-er
04-23-2010, 08:01 PM
and how can I do that ?

Just Google ;) MySQL manual about this issue:
http://dev.mysql.com/doc/refman/5.0/en/gone-away.html

NLP-er
04-23-2010, 08:04 PM
I turn it ot, but the username are translate.

Make sure that you are not using any mod which removes html comments. If you do, then this is a reason...
Also vBET do not translate usernames in specific places (as I remember those are described in parameter description), so in other place those still will be translated. You can write me in which places exactly usernames are still translated and I will work on it for future version.

NLP-er
04-23-2010, 08:06 PM
... I'm visually it must be weird having people from other countries signing up. The spelling must be hard to interpret at times. (even though its still converted over for us)

thx much

Not at all. On this forum you will wind lot of threads where people discuss with each other in different languages and understand each other completely clear :) See here: http://www.vbenterprisetranslator.com/forum/

NLP-er
04-23-2010, 08:08 PM
Do I have to do BOTH or just one? Meaning, do I add additional code before $vbseo_stat AND also before "vbseo_log_entry..."? Or do I only do additional code 1x?

You cannot have booth kinds of links. One instruction is for one kind of links, 2nd for 2nd. You have only one kind of link, so you choose instruction for you :) Just 1

NLP-er
04-23-2010, 08:10 PM
Also, has anyone managed to get this implemented with photopost gallery?

Paid version has official and confirmed way to support photopost gallery translation. Free is not supporting it and will not, because photopost is not using global_complete hook and just push results to output. If you are interested - please feel free to see vBET official page.

LoveStream
04-25-2010, 04:32 AM
Thank you, NLP-er, lovely man. ;)

I installed with new version like,

Uskana
04-25-2010, 01:23 PM
3. Import in vB Admin CP -> Plugins & Products -> Manage Products -> Add/Import Product -> Choose product file, set Allow Overwrite to yes and click Import ,

Wich file ?

thnx

hany_c_v
04-25-2010, 01:47 PM
Thank you for this great mod.

i installed it here http://www.mngol.com but i still have one problem

it's work only in the main page and when you try to translate the posts or any thing else it doesn't work , i am using php to html convert when i disable it it works fine , any way to make work with this html hack ?

Thank you very much

sKippah
04-26-2010, 03:20 PM
Very Nice ;)
i have 2 Question.

1. How do I prevent the translation of individual text parts? I have special parts, for mirc, i dont want to be translated (e.g. /msg TEXT)

2. Is there a translation difference between the full and this (lite) version?

platini
04-27-2010, 06:45 AM
hello , I have installed the mod but the translation page it's blank !!
CURL and ICONV it's active..

please help me..

http://www.newhobbysat.org/forum/index.php

basilrath
04-27-2010, 02:29 PM
This mod has crashed the whole server ................... its loading rediculous errors now

Jesh
04-27-2010, 03:07 PM
GREAT Mod! I installed it and bought full version a week later. Increase is great... if you don't read the directions it may be a little difficult to install, but it works nice on our site, and we are still tweaking:

NLP-er
05-02-2010, 09:44 PM
Wich file ?

thnx

/do-not-upload/product-vbenterprisetranslator.xml

NLP-er
05-02-2010, 09:47 PM
Thank you for this great mod.

i installed it here http://www.mngol.com but i still have one problem

it's work only in the main page and when you try to translate the posts or any thing else it doesn't work , i am using php to html convert when i disable it it works fine , any way to make work with this html hack ?

Thank you very much

Please go to mod author which made conflict to resolve it. He can contact me to get help :)
Also - what means "doesn't work" - what exactly happens.

NLP-er
05-02-2010, 09:50 PM
Very Nice ;)
i have 2 Question.

1. How do I prevent the translation of individual text parts? I have special parts, for mirc, i dont want to be translated (e.g. /msg TEXT)

2. Is there a translation difference between the full and this (lite) version?

1. Use not translated area - details in features list

2. There is big speed diference, because paid one is optimizedand it much better in performance area. Also paid version translates RSS and supports multilingual community (people can write in their own languages). And have lot other features. For details/examples please go to vBET forum :)

NLP-er
05-02-2010, 09:53 PM
hello , I have installed the mod but the translation page it's blank !!
CURL and ICONV it's active..

please help me..

http://www.newhobbysat.org/forum/index.php

Is it blank on every page or just on some specific (main, post...)? Do you get any error messages in logs? Did you try to temporally disable other mods to check does it is caused by some conflict?

NLP-er
05-02-2010, 09:54 PM
This mod has crashed the whole server ................... its loading rediculous errors now

This is no information for me. What help you want to get - "I'm sorry"?... ;)
Please share details if you want help.

Jabong82
05-02-2010, 10:30 PM
Hello this looks like a great mod, but when I install I get a white screen and this error:


"Parse error: syntax error, unexpected $end in /home/user/public_html/includes/class_core.php(4010) : eval()'d code on line 127

Warning: Cannot modify header information - headers already sent by (output started at [path]/includes/class_core.php(4010) : eval()'d code:127) in [path]/global.php(29) : eval()'d code on line 217"

Any help would be appreciated. Thank you.

Sorry I haven't visited this thread in a while. I will send you the file (for some reason it is jumbled). If you can fix this I will purchase the commercial version. Thank you.

sKippah
05-03-2010, 01:26 PM
<span style="text-decoration: line-through">Hi there. Can anybody help and tell me how i can get the Flags on a place like similiar in the attachment? Thanks</span>

Done Oo

docvader
05-06-2010, 04:30 PM
Well so far it's working great for me, as advertised. I don't use VBSEO (just using standard vb 4 seo techniques). I have quite a few mods running on top of that.

Hope you get it sorted out. It's a great device to have on your site.

Jesh
05-06-2010, 04:48 PM
Hate to say it guys but the mod works. It's most likely a configuration error... I made some mistakes on the install and same issues. Actually the free version installed w/o a hitch. The paid one I misconfigured...

NLP-er
05-06-2010, 08:55 PM
Sorry I haven't visited this thread in a while. I will send you the file (for some reason it is jumbled). If you can fix this I will purchase the commercial version. Thank you.

Where did you send it?

NLP-er
05-06-2010, 09:11 PM
I agree...

I got 100 emails of vbulletin database errors and still getting it!
Fix the errors or remove the mod!

Why are you thinking that there is anything to fix? What are error messages? "MySQL has gone away"? - there is nothing to fix - you have to configure your mysql appropriately.

Mod is fully functional :) and I do not have to removing anything. But you can just do not use it if you do not like it.

Also I suggest to just ask what it is about instead of screaming "fix the errors" without even talking what errors and without even knowing that it is vBET error or not. What is your purpose here?

Bouncer222
05-06-2010, 09:19 PM
NLP-er
I got spammed to my email with over 100 emails in one night about some vb translator error.

Here is the full error ( I am pretty sure that ALL the emails had the same error reported)


Database error in vBulletin 4.0.2:

Invalid SQL:
SELECT cache.originaltext as originaltext, cache.translated as translated FROM vbenterprisetranslator_cache_medium help, vbenterprisetranslator_cache_medium cache WHERE help.originaltext='This+is+a+discussion+forum+powe red+by+vBulletin.+To+find+out+about+vBulletin%2C+g o+to+http%3A%2F%2Fwww.vbulletin.com%2F+.' AND help.tl='iw' AND cache.serie=help.serie;

MySQL Error : MySQL server has gone away
Error Number : 2006
Request Date : Thursday, April 15th 2010 @ 04:20:45 PM
Error Date : Thursday, April 15th 2010 @ 04:21:01 PM
Script : http://www.brotherhoodofgamers.com/blogs/blade/2010/4/13/
Referrer :
IP Address : 220.181.94.228
Username : Unregistered
Classname : vB_Database
MySQL Version :


The spamming stopped now, I didn't even do anything, but before that one night, I got every night some emails about some errors, also that had to do with vb enterprise translator.

I still get errors sometimes.

NLP-er
05-06-2010, 09:49 PM
NLP-er
I got spammed to my email with over 100 emails in one night about some vb translator error.

Here is the full error ( I am pretty sure that ALL the emails had the same error reported)



The spamming stopped now, I didn't even do anything, but before that one night, I got every night some emails about some errors, also that had to do with vb enterprise translator.

I still get errors sometimes.

This is not a bug at all. This is just your mySQL configuration issue. Please note that first translation time depends not on vBET but on Google and in your case sometimes before you got answer you mysql connection was already timed out.

Now you have less of those messages because most translations are cached by vBET so you get those immediately and also produce less traffic to Google, so get faster response from there in case if something is not cached yet.

Still you have to just configure your mysql timeouts to higher value to eliminate or minimalize this issue. This is also official vBulletin team answer for that issue - it is not on our side - it is your server configuration.

Please see here for details about "MySQL server has gone away" issue:
http://dev.mysql.com/doc/refman/5.0/en/gone-away.html

Hope that helps - in case of any question please just ask - I will gladly help you :)

J6488EEA8E90
05-07-2010, 03:41 AM
Tagged. Have to evaluate if it would be useful for my forum as we have a fair bit of medical terms in the conversation.

NLP-er
05-07-2010, 08:10 AM
Tagged. Have to evaluate if it would be useful for my forum as we have a fair bit of medical terms in the conversation.

There is only one way to check it... ;)

FazerPaint
05-07-2010, 09:32 PM
Installed and working great cheers:-

The only way I could get it to work was to put my forum URL in where it says "Forum Directory" even though my forum is linked to my domain. After putting the forum URL in everything worked perfectly..........THANKS !!!!

Marco van Herwaarden
05-08-2010, 12:33 PM
Please note that discussing, or asking for support on, the commercial version is not allowed on vBulletin.org.

Please use the developers website for such inquiries.

All posts regarding the commercial version removed.

NLP-er
05-09-2010, 05:58 PM
Please note that discussing, or asking for support on, the commercial version is not allowed on vBulletin.org.

Please use the developers website for such inquiries.

All posts regarding the commercial version removed.

Thanks for note :)

evildon
05-12-2010, 11:24 AM
Hi

I'm using latest version of vbulletin,vbseo and this mod...
I'm getting this problem in google webmaster ( please check the attachement)

https://vborg.vbsupport.ru/attachment.php?attachmentid=116991&stc=1&d=1273666965

It about 15000 url showing 404NOT Found error.

Please help to solve this problem.

Thanks

docvader
05-14-2010, 07:53 PM
Anyone have any idea why I'm getting this error:

Fatal error: Call to undefined function iconv() in /home/xxxxxxx/public_html/forum/includes/vbenterprisetranslator_functions.php on line 246

my forum is in http://forum.russbo.com Main site is www.russbo.com

Had it working on my previous site with no problem, not sure how the subdomain thing is messing this up.


EDIT: I"m missing ICONV in my php. I think that's the problem. I'll get it fixed... Sorry to bother.

EDIT AGAIN: Installed ICONV. Fixed. Works like a charm! Awesome work NLP.

Santori
05-16-2010, 10:11 PM
Hello, this is a great hack!!
Thanxxx a lot!!!

NLP-er
05-25-2010, 04:50 AM
Hi

I'm using latest version of vbulletin,vbseo and this mod...
I'm getting this problem in google webmaster ( please check the attachement)

https://vborg.vbsupport.ru/attachment.php?attachmentid=116991&stc=1&d=1273666965

It about 15000 url showing 404NOT Found error.

Please help to solve this problem.

Thanks

This URL you have there is ot working in original language so it cannot work in translation...
This is your url for original:
http://www.indianidiots.com/blogs/tags/gaming/index%20.html/
The question is how this weird index%20.html/ gets there? This is the key to solve this. Please check does such links are not generated on your html output. vBET is not validating links - only adds there language code. It is possible that it si some vBET bug, but first please check does your forum is not producing broken links - in such case vBET is working just as it should be.

motorola
05-25-2010, 06:14 AM
I'm getting many database errors, and I dont how to fix these. Look below for the error. Anyone could help me please.

Database error in vBulletin 4.0.3:

Invalid SQL:
SELECT cache.originaltext as originaltext, cache.translated as translated FROM vbenterprisetranslator_cache_short help, vbenterprisetranslator_cache_short cache WHERE help.originaltext='Page+2-Old+forum%2Carchive+sections%21' AND help.tl='ga' AND cache.serie=help.serie;

MySQL Error : MySQL server has gone away
Error Number : 2006
Request Date : Tuesday, May 25th 2010 @ 10:03:57 AM
Error Date : Tuesday, May 25th 2010 @ 10:04:29 AM
Script : http://www.mydomain.com/forum/forumdisplay.php?152-ARHIVA/page2&order=asc&language=ga
Referrer :
IP Address : 67.195.115.116
Username : Unregistered
Classname : vB_Database
MySQL Version :

lubbie
05-25-2010, 03:06 PM
Hi. is there a way to get around the text (Links title) something similiar what vb is using with it notes (Colored background, bordered)?

evildon
05-30-2010, 12:43 AM
@NLP-er
Hi i see that no such links are generated in my html output.I have checked the forum at i think there there is no broken links..
I have asked for support in vbseo and they told the plugins creates the problem..and they dont support for such issues

Thanks

mikeinjersey
05-30-2010, 02:46 AM
I have asked for support in vbseo and they told the plugins creates the problem..and they dont support for such issues

Thanks

Stay away from vbSEO's advice on this plugin. They've practically programmed their staff to be against this plugin since last summer. Whether their jealous of it....not making money from it or whatever.. They've been against it the entire time without SPECIFICALLY specifying why its so bad. It does not violate Google rules in any way and Google is very much aware and accepting of the plugin.

For some reason vbSEO just wants to be completely against this plugin forever...for some unknown specified reasons.

I just installed it 10 days ago and already having very good results. And so are so many others on Michal's forums.

motorola
06-02-2010, 07:20 AM
No one with an answere? How to stop the database errors in post #293 ?

kamilkurczak
06-07-2010, 12:30 PM
hello motorola,

Is that the server timed out and closed the connection.
Set variable wait_timeout for mysql server to higher value.

Here you can find a full solution:

http://www.vbulletin.com/forum/showthread.php?43505-MySQL-server-gone-away-error-explained

jskoh
06-12-2010, 05:00 AM
i got this error msg from my email. what is wrong?

Database error in vBulletin 4.0.3: Invalid SQL: SELECT languageid, phrasegroup_global AS phrasegroup_global, phrasegroup_posting AS phrasegroup_posting, phrasegroup_vbblogglobal AS phrasegroup_vbblogglobal, phrasegroup_postbit AS phrasegroup_postbit, phrasegroup_vbblogcat AS phrasegroup_vbblogcat, phrasegroup_inlinemod AS phrasegroup_inlinemod, options AS lang_options, languagecode AS lang_code, charset AS lang_charset, locale AS lang_locale, imagesoverride AS lang_imagesoverride, dateoverride AS lang_dateoverride, timeoverride AS lang_timeoverride, registereddateoverride AS lang_registereddateoverride, calformat1override AS lang_calformat1override, calformat2override AS lang_calformat2override, logdateoverride AS lang_logdateoverride, decimalsep AS lang_decimalsep, thousandsep AS lang_thousandsep FROM language WHERE languageid = 1;

motorola
06-12-2010, 02:52 PM
hello motorola,

Is that the server timed out and closed the connection.
Set variable wait_timeout for mysql server to higher value.

Here you can find a full solution:

http://www.vbulletin.com/forum/showthread.php?43505-MySQL-server-gone-away-error-explained

And how can I do that ? Where I must edit the variable to the higher value ? Where I need to make changes...?

jskoh
06-13-2010, 04:58 PM
i got this error msg from my email. what is wrong?


support please.. i have uninstall this product, but the error is flooding my email...

sean-zigster
06-17-2010, 12:43 PM
Hi ,

Installed ok but when it translates i get this error

Warning: set_time_limit() has been disabled for security reasons in [path]/includes/vbenterprisetranslator_functions.php on line 148

The problem is i dont have access to the php.ini file ? is there a work around ?

motorola
06-18-2010, 04:41 PM
Nobody is here to help, what a poor support for this addon

cosy
06-20-2010, 05:06 PM
<div class="smallfont" align="center">
{vb:raw linkstitle}
<div class="vbetflagsbox">
<vb:each from="flags" value="flag">
<a rel="novbseo" href="{vb:var flag.url}" <vb:if condition="$flag['code']==$vbulletin->options['vbenterprisetranslator_forumlanguage']">onclick="document.cookie = 'vbet_language=; expires=Thu, 01-Jan-1970 00:00:01 GMT; path=/'; return true;"</vb:if>><img src="vbenterprisetranslator_flags/{vb:var flag.code}.gif" alt="{vb:var flag.name}" <vb:if condition="$vbulletin->options['vbenterprisetranslator_flags_noborder']">border="0" width="16" height="11" </vb:if>/></a>
</vb:each></ul>
</div>
</div>

add width and height for flag images and boost a little your Page Speed score

singh9211
06-22-2010, 04:26 AM
hi there,

After upgrading to the new version i.e vbulletin 4.0.4 getting the following errors:

Warning: require_once([path]/includes/vbenterprisetranslator_functions.php) [function.require-once]: failed to open stream: No such file or directory in [path]/includes/class_bootstrap.php(394) : eval()'d code on line 252

Fatal error: require_once() [function.require]: Failed opening required '/xxxxx/xxxxxx/xxxx/xxxxx/xxxxxxx/includes/vbenterprisetranslator_functions.php' (include_path='.:/usr/local/php5/lib/php') in /home/content/22/5998922/html/websites/geekworld/includes/class_bootstrap.php(394) : eval()'d code on line 252

Warning: require_once([path]/includes/vbenterprisetranslator_url_functions.php) [function.require-once]: failed to open stream: No such file or directory in [path]/global.php(29) : eval()'d code on line 280

Fatal error: require_once() [function.require]: Failed opening required '/xxxxx/xxxxxx/xxxx/xxxxx/xxxxxxx/includes/vbenterprisetranslator_url_functions.php' (include_path='.:/usr/local/php5/lib/php') in /home/content/22/5998922/html/websites/geekworld/global.php(29) : eval()'d code on line 280

Please help me in getting rid of these errors.

Thanks in ADvance..........

kamilkurczak
06-22-2010, 11:04 AM
Hi ,

Installed ok but when it translates i get this error



The problem is i dont have access to the php.ini file ? is there a work around ?

Try to disable safe mode by your .htaccess file.

kamilkurczak
06-22-2010, 11:10 AM
And how can I do that ? Where I must edit the variable to the higher value ? Where I need to make changes...?

solution is described in the link which is pasted. This is the official solution by vBulletin.

if you want an immediate answer - ask here http://www.vbenterprisetranslator.com/forum/

kamilkurczak
06-22-2010, 11:18 AM
hi there,

After upgrading to the new version i.e vbulletin 4.0.4 getting the following errors:

Warning: require_once([path]/includes/vbenterprisetranslator_functions.php) [function.require-once]: failed to open stream: No such file or directory in [path]/includes/class_bootstrap.php(394) : eval()'d code on line 252



Fatal error: require_once() [function.require]: Failed opening required '/xxxxx/xxxxxx/xxxx/xxxxx/xxxxxxx/includes/vbenterprisetranslator_functions.php' (include_path='.:/usr/local/php5/lib/php') in /home/content/22/5998922/html/websites/geekworld/includes/class_bootstrap.php(394) : eval()'d code on line 252







Warning: require_once([path]/includes/vbenterprisetranslator_url_functions.php) [function.require-once]: failed to open stream: No such file or directory in [path]/global.php(29) : eval()'d code on line 280



Fatal error: require_once() [function.require]: Failed opening required '/xxxxx/xxxxxx/xxxx/xxxxx/xxxxxxx/includes/vbenterprisetranslator_url_functions.php' (include_path='.:/usr/local/php5/lib/php') in /home/content/22/5998922/html/websites/geekworld/global.php(29) : eval()'d code on line 280



Please help me in getting rid of these errors.

Thanks in ADvance..........

not checked yet how vBET works with this version of vB.

I will check this vB version and write how it works.

skol
06-24-2010, 10:35 PM
removing credit link without donating NLP-er means BREAKING LICENSE AGREEMENT and you lose your rights to use this mod
- using it after that is illegal, it is software PIRACY

Why would removing the credit link have such a diverse effect?

schlottkej
06-26-2010, 04:08 AM
Hi there...

I have this installed and its working fine on the forum, but when using 8WayRun's Media application the flags link to /ru/media.php instead of the vbSEO rewritten /ru/media/ (the domain.com/media/ works fine... the others link to the wrong URL)

Any tips on how to resolve this?

schlottkej
06-26-2010, 04:55 PM
It actually occurs anywhere where the URLs are otherwise rewritten.. like the following:

www.domain.com/nl/showthread.php?t=1336680
www.domain.com/nl/media.php?do=details&mid=12461

They will both rewrite to the base thread, not the translated version like so:

www.domain.com/forum-name/1336680-thread-title-here.html
www.domain.com/media/

How can I fix this?

singh9211
06-30-2010, 05:03 AM
not checked yet how vBET works with this version of vB.

I will check this vB version and write how it works.


Please check it as soon as possible, as i need to update it.

Thanks

FReeSTER
07-08-2010, 10:34 PM
Well, after installing this Mod to forum I lost all my styles I had there and it looks like below attachment

What can I do to fix that?
Any ideas please

FReeSTER
07-08-2010, 11:06 PM
Im not sure if it was because this Mod or CURL instalation to my php file.

Anyone knows how to fix it?

linuxututs
07-09-2010, 01:04 PM
"NLP-er" main website is down to; Hope everything is alright.

I have paid version and everything works except CMS articles. Had it fixed until I upgraded vB.

Thanks,

tbl33
07-09-2010, 03:24 PM
I am still unable to get this thing installed on VB 4.0.4

I bought the unbranded version last week, am getting no support help.
other then them telling me that I must have uploaded the files wrong.

I re-downloaded them from the authors site, re-uploaded to the server and after more then an hour, it still fails to complete the install. Same exact failure as the first set of files that I uploaded from them.

Their website has been down since yesterday. At this point I am down over $200.00 and have an unusable program. I will give them til next week and I guess seek a refund via paypal before it's too late!!!!!

linuxututs
07-09-2010, 04:43 PM
Exact same boat Mate, except mine half-way works...
I been waiting on the/an update myself.

Thanks,

tbl33
07-10-2010, 12:56 AM
Well, I'm at least glad to hear that it isn't just me.

anthony parsons
07-10-2010, 07:52 AM
Without Prejudice

Hi,

His website could be down due to my legal action taken against this individual, it could be purely coincidence, though my lawyer did serve his webhost and notified other parties a couple of days ago for breach of laws due to deceptive practices employed by this individual through the sale of the software.

I am not going to respond here again due to legal reasons and this is not the place for such conversation. You can read about the issue at http://www.vbenterprisetranslator.info for more on the issue.

I hope to see Michal back soon providing quality software to us all without the deceptive aspects. Excellent software IMHO.

Regards,

Anthony Parsons

mikeinjersey
07-10-2010, 11:41 AM
I've read your entire blog site, but why not just give us an exact example of this deceptiveness that he is using ?

It sounds like the same minor things that vbSkin developers do. Some hidden keywords here and there , to help get their own site more easily ranked on search engines. Its so easy to see that type of coding and remove it before installing the plugin anyway.

Why not just sue them as well ?

And why is it that you just happen to own vbenterprisetranslator.info ? Sounds to me like somebody stole your idea & your a little upset about it.

I'm in the U.S. , and don't even know Michal personally. But have praised him on the good work that he's done with vBet..

Ramsesx
07-10-2010, 12:03 PM
Next time if we buy a new software product we should first ask Mr. Parsons if he is planning to sue the software developer to avoid loosing money...

tbl33
07-10-2010, 07:49 PM
Well whatever, I am initiating a refund since it doesn't install for me anyway and they aren't getting back to me. I cannot afford to lose $225.00 for the unbranded version that I paid for.

anthony parsons
07-10-2010, 09:23 PM
Without Prejudice

I've read your entire blog site, but why not just give us an exact example of this deceptiveness that he is using ?
You just said you read it, so you would have clearly read: http://www.vbenterprisetranslator.info/component/content/article/1-vb-enterprise-translator/3-deceptive-code-hidden-away-for-paying-customers.html

It sounds like the same minor things that vbSkin developers do. Some hidden keywords here and there , to help get their own site more easily ranked on search engines. Its so easy to see that type of coding and remove it before installing the plugin anyway.
Agreed. Did exactly that, then he cancelled my license, wouldn't refund me, then sent my host a DMCA to have my site closed. He is doing something illegal, yet trying to have me punished for doing exactly what you stated above. Reasonable action IMHO! My lawyer is now in discussion with my hosts lawyer to work through this due to doing exactly what you stated above Mike. Michal Podbielski's arrogance severely got in the way of honesty, integrity and common-sense IMHO.

And why is it that you just happen to own vbenterprisetranslator.info ? Sounds to me like somebody stole your idea & your a little upset about it.
Mike, please check the date that site was registered... as I registered it due to this nonsense that he created, not me. I am not the one who hid deceptive coding, then took my money, cancelled my license and tried to have my site closed as a result.

I have asked him nicely to retract his nonsense, my lawyer asked him nicely, he refused and stated I was committing software piracy and all sorts of nonsense. Not exactly my first course of action, though I won't tolerate such nonsense from this person. No doubt a nice bloke, I know he makes good software, but he stepped way over the line this time.

anthony parsons
07-10-2010, 10:54 PM
Without Prejudice

Well whatever, I am initiating a refund since it doesn't install for me anyway and they aren't getting back to me. I cannot afford to lose $225.00 for the unbranded version that I paid for.
Hi TBL,

To be perfectly honest, I think you should hold out and hopefully Michal sorts things out with his software and my lawyer, thus his hosting will come back up soon enough. It is a good piece of software, and he typically does help his purchasers out with issues. Maybe launch it with Paypal so you are within their time frame for refunds and if he sorts issues with his software, then cancel the claim once he gets back online and can assist you.

Again, I do apologise if this is due to me, though as outlined above from Mike's questions, it wasn't exactly my doing and I am merely now having to defend myself from Michal due to his actions instigated against me. I actually endorse the software, I just don't endorse the deceptive practices.

Take care and hopefully we all see Michal online sooner, rather than later. I would like to use the software I also purchased from him again, which unfortunately due to his actions against me, is now disabled to meet US legal requirements for my hosting provider.

Anthony

mikeinjersey
07-12-2010, 01:41 AM
Thanks for disabling all the support for us.....much appreciated

PEPITO69
07-12-2010, 09:01 AM
Well,
Again, I do apologise if this is due to me,

This is not due to you. Nobody is stopping Michal to post here and give explanations, and What we saw on his website was a database error. This is not the normal thing to do.
Don't forget that the main problem here is not that his website has dessapeared, the main problem is the silence of Michal in this site.

kamilkurczak
07-12-2010, 11:27 AM
Im not sure if it was because this Mod or CURL instalation to my php file.

Anyone knows how to fix it?

please, paste here your forum url.

kamilkurczak
07-12-2010, 11:32 AM
I am still unable to get this thing installed on VB 4.0.4

I bought the unbranded version last week, am getting no support help.
other then them telling me that I must have uploaded the files wrong.

I re-downloaded them from the authors site, re-uploaded to the server and after more then an hour, it still fails to complete the install. Same exact failure as the first set of files that I uploaded from them.

Their website has been down since yesterday. At this point I am down over $200.00 and have an unusable program. I will give them til next week and I guess seek a refund via paypal before it's too late!!!!!

Your site looks like? what is not working? can you paste here the link to your forum?
have you CURL istalled?

kamilkurczak
07-12-2010, 11:35 AM
If you have an immediate support, please write here:
http://www.vbenterprisetranslator.com/forum/

kamilkurczak
07-12-2010, 11:45 AM
I would like to apologize.
Michael is on vacation and no access to the Internet.
I got back from vacation today.
I do not know what happened with the forum. I am also surprised. I will try to fix it. Meanwhile, please write on this forum and I will try to help.

Sorry.

hotslot
07-12-2010, 08:05 PM
The dude does not help at all on installations etc. I had to pay him twice! for the paid installation or he wasn't going to do it. Really the software is overrated and full of issues and Google webmaster errors.

Benefit has not been that great either.

I wish I never got in on this. $5000 to remove his illegal footer is crazy! lol

+1 to anthony parsons

kamilkurczak
07-12-2010, 08:51 PM
The dude does not help at all on installations etc. I had to pay him twice! for the paid installation or he wasn't going to do it. Really the software is overrated and full of issues and Google webmaster errors.

Benefit has not been that great either.

I wish I never got in on this. $5000 to remove his illegal footer is crazy! lol

+1 to anthony parsons

When you paid for it? the $ 5,000? Now the forum is inactive (not our fault) but we try to fix it

anthony parsons
07-12-2010, 10:17 PM
He can't charge anyone $5000 for a thing. He has no legal powers to issue fines, as my lawyer has annotated. Only a court has those powers, not an individual, business or company.

linuxututs
07-13-2010, 07:03 AM
Don't who's fault what ( sorry, don't really care ), but I been knowing about that code being there since I was running vB3.8.4. I donated to remove the link, and removed the code.
Same with paid full version, with purchased branding fee.

Love the mod and its benefits myself, and hope ( more like praying now ) for an update/upgrade soon.

Thanks,

P.S. So many links in the file is really a little over-kill, but he coded it, so what the hell. ( It was/is HIS.

Ramsesx
07-13-2010, 09:27 AM
Just for information, site is on again.

anthony parsons
07-13-2010, 09:48 AM
That's good actually, as even I thought VPS.net were a bit harsh closing his site without first consulting with him, if it was for that matter that is. I would expect any host to first engage their client before taking any action.

linuxututs
07-13-2010, 11:47 AM
Glad to hear it.

Think the sites faster to now for some reason. ( Maybe not that many people and/or bots hitting it at the moment since the downtime. )

Thanks,

cyc
07-13-2010, 12:34 PM
Glad to hear it.

Think the sites faster to now for some reason. ( Maybe not that many people and/or bots hitting it at the moment since the downtime. )

Thanks,

Ok, anyway I'm eating ice cream right now, my seat is coping with more weight.

cyc
07-13-2010, 12:37 PM
That's good actually, as even I thought VPS.net were a bit harsh closing his site without first consulting with him, if it was for that matter that is. I would expect any host to first engage their client before taking any action.

anyway

linuxututs
07-15-2010, 02:52 PM
cyc

Go find some other forum to spam.

Thanks,

Mods, ban this jerk.

tbl33
07-15-2010, 10:43 PM
Once their website was back in action I was able to get the mod installed. It seems to work pretty well except that it still has the brand info on it which I paid extra to not have.
I'm sure that I'll get that resolved and will start using it again.

Footman
07-18-2010, 04:05 PM
Too bad about all the drama surrounding this mod and the developer.

I have just installed the mod (on my test site) and voted anyway. Still a very good mod. Going to try out the free version for sometime and see if getting the paid version is worth the $ for me.

enzoscafuri
07-21-2010, 12:11 PM
Hi, I have a problem with the installation of 2.4.3 version .
When I load the xml file, i can not finish the installation because the system says it has no valid file.
All this after loading the folder "upload" in the root of the forum and trying to load the file "bitfield_vbenterprisetranslator.xml" by product management.
May I have your help?
Thank you.

kamilkurczak
07-24-2010, 09:03 AM
Hi, I have a problem with the installation of 2.4.3 version .
When I load the xml file, i can not finish the installation because the system says it has no valid file.
All this after loading the folder "upload" in the root of the forum and trying to load the file "bitfield_vbenterprisetranslator.xml" by product management.
May I have your help?
Thank you.
Are you sure that you load .xml file from do-not-upload folder?

kamilkurczak
07-24-2010, 09:04 AM
Once their website was back in action I was able to get the mod installed. It seems to work pretty well except that it still has the brand info on it which I paid extra to not have.
I'm sure that I'll get that resolved and will start using it again.

Just write about it on our main forum and I will give you a solution.

enzoscafuri
07-31-2010, 09:58 AM
Are you sure that you load .xml file from do-not-upload folder?

thanks for your help, but after loading the .xml file from do-not-upload folder and i have set the parameters as in the instructions, the system gives me this error: "Warning: require_once([path]/includes/vbenterprisetranslator_url_functions.php) [function.require-once]: failed to open stream: No such file or directory in [path]\global.php(29) : eval()'d code on line 2

Fatal error: require_once() [function.require]: Failed opening required 'D:\inetpub\webs\napolibonsaiclubit\forum/includes/vbenterprisetranslator_url_functions.php' (include_path='.;c:\php\includes') in D:\inetpub\webs\napolibonsaiclubit\forum\global.ph p(29) : eval()'d code on line 2". What should i do?

NLP-er
08-04-2010, 07:05 PM
thanks for your help, but after loading the .xml file from do-not-upload folder and i have set the parameters as in the instructions, the system gives me this error: "Warning: require_once([path]/includes/vbenterprisetranslator_url_functions.php) [function.require-once]: failed to open stream: No such file or directory in [path]\global.php(29) : eval()'d code on line 2

Fatal error: require_once() [function.require]: Failed opening required 'D:\inetpub\webs\napolibonsaiclubit\forum/includes/vbenterprisetranslator_url_functions.php' (include_path='.;c:\php\includes') in D:\inetpub\webs\napolibonsaiclubit\forum\global.ph p(29) : eval()'d code on line 2". What should i do?

Please fallow installation instructions and first upload appropriate vBET files to your forum directory and then import product file :)

djeryk
08-05-2010, 11:49 AM
I uninstalled this plugin. Will but still displayed in Google Webmaster links. How can I remove it clean?

/opticum-faq/61-cccam-setup-opticum-hd-9600-hd-ts-9600-s20-ts20.html?language=sl

anthony parsons
08-06-2010, 08:19 AM
except that it still has the brand info on it which I paid extra to not have.

For licensed users who have branding free, how to remove brand: http://www.vbenterprisetranslator.info/component/content/article/1-vb-enterprise-translator/13-how-to-remove-branding-notice-for-branding-free-versions.html

caciocode
08-17-2010, 07:22 PM
Tagged

Blackbeard02
08-18-2010, 01:41 PM
Great mod, thank you

skol
08-18-2010, 05:43 PM
For licensed users who have branding free, how to remove brand: http://www.vbenterprisetranslator.info/component/content/article/1-vb-enterprise-translator/13-how-to-remove-branding-notice-for-branding-free-versions.html

You missed your buddy a couple of posts up..Looks as though you guys have come to an amicable agreement...No more handbangs at dawn...

Twikitero
08-19-2010, 01:38 PM
Thanks but I have a problem.
When active the mod shows me the following error.

Parse error: syntax error, unexpected $end in /web/htdocs/www.twikiteros.com/home/includes/class_core.php(4099) : eval()'d code on line 81

Any solution? I need this hack

Xeyn
08-25-2010, 09:03 AM
pro version no longer available?

NLP-er
09-03-2010, 09:38 AM
I uninstalled this plugin. Will but still displayed in Google Webmaster links. How can I remove it clean?

/opticum-faq/61-cccam-setup-opticum-hd-9600-hd-ts-9600-s20-ts20.html?language=sl

Add .htaccess rule which will redirect all links with ?language to page without it. You can see simplar rule in first post of this thread - just modify a little.

NLP-er
09-03-2010, 09:46 AM
Thanks but I have a problem.
When active the mod shows me the following error.

Parse error: syntax error, unexpected $end in /web/htdocs/www.twikiteros.com/home/includes/class_core.php(4099) : eval()'d code on line 81

Any solution? I need this hack

Please give me more information. Expecially - give me code around line 4099 in file includes/class_core.php. Most probably there will be some hook. So we need to know what is the name of this hook and then look for conflicts. I cannot do it myself, because I do not know what vB version are you using.

Bee cool - I will help you to run vBET :)

NLP-er
09-03-2010, 09:49 AM
pro version no longer available?

It is, it is better and better in each release: fasetr, new features...

Just.. we are not allowed to give links there. Moderators send us warnings for that. In fact I'm not even sure can I answer your question the way I just did... Hope this will be ok for them :o

Casmos
09-06-2010, 08:21 PM
How can I add a new language and flag for Portuguese.
Using VB 4.0.3 also working good for read threads and post. The main feature I like.

But it hangs up in posting / editing or in moderator functions in translation mode.
But working 100% in normal forum language.

NLP-er
09-08-2010, 07:27 AM
How can I add a new language and flag for Portuguese.
Using VB 4.0.3 also working good for read threads and post. The main feature I like.

But it hangs up in posting / editing or in moderator functions in translation mode.
But working 100% in normal forum language.

Please note taht vBET doesn't care at all about moderation or administration - moderators and administrators know lorum language and there is no sense for them to do its tasks in translated view, so there is no sense to support it by vBET.

Abour adding language - vBET supports those languages which are fully supported by Google (so supports translation any to any). Portuguese is supported by vBET - flag should be shown by default - maybe you disabled it by mistake. Take look on flags configuration.

newsoftw
09-14-2010, 04:50 PM
i removed this mod coz it is not properly working with vb4.0.6 + vbseo 5.2.3...

don't install this mod coz not good working and neither vbet team support for free version.

thanks

MOGmartin
09-15-2010, 04:35 PM
<i>REPOSTED from the vb3.x version, I should have posted it here in the first place.....</i>

Hi,

Ive got the paid version of your script, and have had to create a custom flag list (my theme is highly customised).

The base language of my site is set to english, and on the template that I created I set the english flag to go to:

domain.com/

When a user is viewing the site in for instance, Spanish, that same link on the English flag goes to domain.com/es/

I NEED that flag to go to the site root. how do I achieve this please?

thanks

MOGmartin

Twikitero
09-15-2010, 08:30 PM
Please give me more information. Expecially - give me code around line 4099 in file includes/class_core.php. Most probably there will be some hook. So we need to know what is the name of this hook and then look for conflicts. I cannot do it myself, because I do not know what vB version are you using.

Bee cool - I will help you to run vBET :)

Ok,sorry...my version Is Vbulletin 4.0.6 PL1

Regards

GONUMBER6
09-17-2010, 12:42 AM
Great thank you, pro version installed and working good so far :)

lubbie
09-23-2010, 10:17 AM
vbet side down?

NLP-er
09-24-2010, 04:35 PM
i removed this mod coz it is not properly working with vb4.0.6 + vbseo 5.2.3...

don't install this mod coz not good working and neither vbet team support for free version.

thanks

This is completly not true. Please do not set here false statements. We support booth free and pro versions.

NLP-er
09-24-2010, 04:36 PM
REPOSTED from the vb3.x version, I should have posted it here in the first place.....

Hi,

Ive got the paid version of your script, and have had to create a custom flag list (my theme is highly customised).

The base language of my site is set to english, and on the template that I created I set the english flag to go to:

domain.com/

When a user is viewing the site in for instance, Spanish, that same link on the English flag goes to domain.com/es/

I NEED that flag to go to the site root. how do I achieve this please?

thanks

MOGmartin

Please do not spam. You wrote about this in booth vBET free versions and on vBET pro forum. And on forum it was solved. Please keep pro issues on pro forum :)

NLP-er
09-24-2010, 04:38 PM
Ok,sorry...my version Is Vbulletin 4.0.6 PL1

Regards

I asked for code... Also I already do not know what was our issue. So pelase give full description of issue (link will be enought) with ALL requested informations :)

NLP-er
09-24-2010, 04:39 PM
vbet side down?

Yesterday we made server restart during maintenance work, so yes - it was down for several minutes :)

VonDoom
09-24-2010, 08:35 PM
Sorry im sure this has been gone over in the past, But i just discovered the premium version of this plugin.. Could somebody direct me to a comparison list?

NLP-er
09-25-2010, 01:03 PM
Sorry im sure this has been gone over in the past, But i just discovered the premium version of this plugin.. Could somebody direct me to a comparison list?

See here for fast comparision: http://www.vbenterprisetranslator.com/forum/vbet-announcements/3-vb-enterprise-translator-3-x-4x.html
And here for detailed features comparition: http://www.vbenterprisetranslator.com/forum/vbet-announcements/4-vb-enterprise-translator-features.html

Enjoy vBET! :D:up:

AfterWorldForum
10-19-2010, 07:58 PM
Well, after installing this Mod to forum I lost all my styles I had there and it looks like below attachment

What can I do to fix that?
Any ideas please

Any resolution to this? The problem is the link tags in the HTML. Default language:


<link rel="alternate" type="application/rss+xml" title="EntropiaPlanets.com - Entropia Universe information, wiki and tools RSS Feed" href="http://www.entropiaplanets.com/forums/external.php?type=RSS2" /> <link rel="stylesheet" type="text/css" href="clientscript/vbulletin_css/style00015l/main-rollup.css?d=1287515777" /> <script type="text/javascript" src="http://www.entropiaplanets.com/forums/vbstatus/mootools.js"></script>

Translated:


<link rel="alternate" type="application/rss+xml" title="EntropiaPlanets.com - Entropia Universe information, wiki and tools RSS Feed" href="http://www.entropiaplanets.com/forums/da/external.php?type=RSS2" />
<link rel="stylesheet" type="text/css" href="/forums/da/clientscript/vbulletin_css/style00015l/main-rollup.css?d=1287515777" />


I also am curious as to exactly what it would require to remove that rotating link snippet that's in /includes/vbenterprisetranslator_url_functions.php?

Thanks :)

sticky
10-20-2010, 12:23 PM
I'm considering installing this and sorry if this is a stupid question, but what does this offer that Google Translate does not?

Czezc, tez jestem polakiem ale za dobzie nie pisze po Polsku :)

MikeF
10-21-2010, 04:39 PM
@NLP-er I am a big fan of your work here. This is brilliance. However, I am concerned about lack of updates since February before I buy the pro version. Will it work with 4.0.8?

OldSchoolDSL
10-21-2010, 06:07 PM
Thank you so much. Works flawlessly on 4.0.7 and also 4.0.8 (so far on our test page)

bposner
11-11-2010, 03:44 PM
where is the XML file, I don't show it in the root. Nothing to import

bposner
11-11-2010, 06:06 PM
Found in the Do Not Upload Folder, which is different than I'm use to finding the XML file. Sorry. Seems to work very well. Nice mod thanks

where is the XML file, I don't show it in the root. Nothing to import

RichieBoy67
11-12-2010, 06:55 AM
I cannot believe I missed this!! This is what I have been wanting to do for the longest time for clients! Thank you soo much.. This is great..

Great Work!!!

kamilkurczak
11-19-2010, 09:10 AM
I'm considering installing this and sorry if this is a stupid question, but what does this offer that Google Translate does not?

Czezc, tez jestem polakiem ale za dobzie nie pisze po Polsku :)

Cześć,

vBET works on google engine ;)

nack
12-08-2010, 02:36 PM
I get a bunch of Database Error notifications after upgraded to 4.1.0 in all the languages. Does anyone have this problem?

nack
12-13-2010, 01:48 PM
I get this error. Can someone help me please?

Database error in vBulletin 4.1.0: Invalid SQL: REPLACE INTO vb_cacheevent (cacheid, event) VALUES ('vb_types.types', 'vb_types.type_updated'), ('vb_types.types', 'vb_types.package_updated'), ('vb_types.types', 'vb_types.contenttype_updated'), ('vbcms_types.types', 'vb_types.type_updated'), ('vbcms_types.types', 'vb_types.package_updated'), ('vbcms_types.types', 'vb_types.contenttype_updated'), ('vbcms_types.types', 'vbcms_types.widgettype_updated'); MySQL Error : MySQL server has gone away Error Number : 2006

Alaaalol
12-17-2010, 03:00 PM
very good work, thank you man

megagold
12-18-2010, 08:21 AM
very cool tool.

but i found this problem after click on Flag

Fatal error: Call to undefined function iconv() in /home/xxxxxx/public_html/includes/vbenterprisetranslator_functions.php on line 246

How to do next?

Thank you

bposner
12-18-2010, 01:54 PM
We use this for only a few languages for our different offices throughout the world, works great.

lmgc
12-28-2010, 07:43 AM
its just a great hack but vbseo sayed to me that creating another different links/urls for the same thread/forum crash the SEO structure for the vbseo users, i am not talking for the vbulletin4 standard urls, they prefer to use in this cas only the thread/forum IDs in the urls and not a new urls.

OldSchoolDSL
02-18-2011, 10:21 PM
Un-installed

Noticed my site didn't just speed up a little after un-installed.... It JUMPED up 40% faster. :eek: :cool:

NLP-er
02-24-2011, 09:38 PM
vBET 2.4.4 RELEASED!

Hi :) We have next release of free version. This time we added new parameter so you can earn using vBET :) New parameter allows you to start in our Affiliate Program and allows to earn having vBET credit link which you must have anyway (if you didn't make donation). So if you have credit link anyway why not have a chance to earn on it?... :)
Details in parameter description in your Admin CP.

Enjoy vBET! :)

onehost
02-25-2011, 01:52 AM
vBET 2.4.4 RELEASED!

Hi :) We have next release of free version. This time we added new parameter so you can earn using vBET :) New parameter allows you to start in our Affiliate Program and allows to earn having vBET credit link which you must have anyway (if you didn't make donation). So if you have credit link anyway why not have a chance to earn on it?... :)
Details in parameter description in your Admin CP.

Enjoy vBET! :)

Not interested ...

I would like to see the product working which it does not on my forum...

I can see while I been busying trying to figure out why this is not working.
I can see what is most important too you...setting up affiliate links...

maybe you should stop thinking about money, and look through
some of your threads to fix the problems rather then thinking of $$

never mind...

(uninstalled)

OldSchoolDSL
02-25-2011, 03:24 AM
Not interested ...

I would like to see the product working which it does not on my forum...

I can see while I been busying trying to figure out why this is not working.
I can see what is most important too you...setting up affiliate links...

maybe you should stop thinking about money, and look through
some of your threads to fix the problems rather then thinking of $$

never mind...

(uninstalled)

There is already a FREE alternative anyways. ;)

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

kamilkurczak
02-25-2011, 09:07 AM
very cool tool.

but i found this problem after click on Flag

Fatal error: Call to undefined function iconv() in /home/xxxxxx/public_html/includes/vbenterprisetranslator_functions.php on line 246

How to do next?

Thank you

You must have installed ICONV in your php. Most servers already have it. If not an error will occur or blank page for translations.
so please contact your host provider and ask about ICONV

kamilkurczak
02-25-2011, 09:08 AM
its just a great hack but vbseo sayed to me that creating another different links/urls for the same thread/forum crash the SEO structure for the vbseo users, i am not talking for the vbulletin4 standard urls, they prefer to use in this cas only the thread/forum IDs in the urls and not a new urls.

vBET is good for google. In sitemap you have indexed a links in SEO form with language code inside.

kamilkurczak
02-25-2011, 09:10 AM
I get this error. Can someone help me please?

Database error in vBulletin 4.1.0: Invalid SQL: REPLACE INTO vb_cacheevent (cacheid, event) VALUES ('vb_types.types', 'vb_types.type_updated'), ('vb_types.types', 'vb_types.package_updated'), ('vb_types.types', 'vb_types.contenttype_updated'), ('vbcms_types.types', 'vb_types.type_updated'), ('vbcms_types.types', 'vb_types.package_updated'), ('vbcms_types.types', 'vb_types.contenttype_updated'), ('vbcms_types.types', 'vbcms_types.widgettype_updated'); MySQL Error : MySQL server has gone away Error Number : 2006

is this a Mysql has gone away error? if yes:
Is that the server timed out and closed the connection.
Set variable wait_timeout for mysql server to higher value.

Here you can find a full solution:
MySQL server gone away error explained (http://www.vbulletin.com/forum/showthread.php?43505-MySQL-server-gone-away-error-explained)

NLP-er
02-25-2011, 10:40 AM
Not interested ...

I would like to see the product working which it does not on my forum...

I can see while I been busying trying to figure out why this is not working.
I can see what is most important too you...setting up affiliate links...

maybe you should stop thinking about money, and look through
some of your threads to fix the problems rather then thinking of $$

never mind...

(uninstalled)

When did you ask for help?... As you can see in this long thread - we support our users for free - booth users of free and paid version :) So we welcome you to ask us about any issue you have with vBET - we will gladly help you just as anyone else. Still if you choose to loose your time doing things wrong it is your decision, but please do not blame us for your own choices.

Booth vBET free versions are also free from any known bugs - there was no single bug reported for months!!! :) Users have issues because they do installation or configuration wrong and we are here to help them with it. Of course users of paid version have priority (anyone who do not understand it will still not understand it, because I will not loose my time to explain obvious things), but finally free version users got our support too :)

So enjoy vBET to all our great users! :)

onehost
02-25-2011, 03:28 PM
When did you ask for help?... As you can see in this long thread - we support our users for free - booth users of free and paid version :) So we welcome you to ask us about any issue you have with vBET - we will gladly help you just as anyone else. Still if you choose to loose your time doing things wrong it is your decision, but please do not blame us for your own choices.

Booth vBET free versions are also free from any known bugs - there was no single bug reported for months!!! :) Users have issues because they do installation or configuration wrong and we are here to help them with it. Of course users of paid version have priority (anyone who do not understand it will still not understand it, because I will not loose my time to explain obvious things), but finally free version users got our support too :)

So enjoy vBET to all our great users! :)

I have uninstalled your mod.

So therefore, I must know what I am doing, even though you are
telling everyone they do not know what they are doing, even though
I am not a coder, if a coder has done their job correctly, it is very
rare that I have an issue with a mod, so I do know what I am doing,
and I have between 50-75 mods installed, so why dont you tell me
again that I do not know what I am doing, would like to hear it again,
I do not think I can get enough, so tell us again how stupid we are.....

bobber
03-05-2011, 09:49 PM
Hi I'm totally new.
I have also downloaded the free version here once and tried to install.
Although I've read something about a file, but it is nowhere hatcces how or where to install the.

But now the problem, I get the following error message:

Parse error: syntax error, unexpected $ end in / var/xxxxxxxx/includes/class_core.php (4432): eval () 'd code on line 124

Warning: Can not modify header information - headers already sent (output started at [path] / includes / class_core.php (4432): eval () 'd code: 124) in [path] / includes / vbenterprisetranslator_functions.php (line 147 )


What did I do wrong to the hack is running?

What is the difference between the free version and affordable?
I would be happy to answer
thank you
should run the hack I am also willing to donate something!

Greeting bobber

bobber
03-06-2011, 03:41 PM
what happens to the htaccess file where should these be installed?
where it is not written down.

bobber
03-07-2011, 05:16 PM
hmm how long it usually takes until a response preserves the boldness?
get even a free version of the?

as I said am also willing to donate something.
i am also happy to pay the large $ 90
i test only one or the other before you buy something.

'm a beginner with no knowledge, unfortunately.
my english is very bad, so use a transator.
greeting bobber

mandingo
03-11-2011, 01:36 PM
I uninstalled this a while ago, however I've
been getting these sorts of db errors frequently:
Database error in vBulletin :

mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: Too many connections
/home/*************/forum/includes/class_core.php on line 314

On the "script" line it always has a language appended
&language=sr
Thinking it has something to do with this mod.

rosmac54
03-16-2011, 02:34 AM
It does have something to do with this MOD. Totally F's mySQL and will take your whole server down. MARK AS UNINSTALLED! This is Pimp Wear!

kamilkurczak
03-17-2011, 07:15 PM
hmm how long it usually takes until a response preserves the boldness?
get even a free version of the?

as I said am also willing to donate something.
i am also happy to pay the large $ 90
i test only one or the other before you buy something.

'm a beginner with no knowledge, unfortunately.
my english is very bad, so use a transator.
greeting bobber

hello. are you sure that you upgrade all vbet files into good forum folder?
if you use vBSEO - you should have a htaccess with vBSEO rules - just paste rules for users with vBSEO form here:
https://vborg.vbsupport.ru/showpost.php?p=1949580&postcount=2
if you don't user vbseo - you probably don't have any htaccess. just make the new one .htaccess file in forum folder and paste rules for users without vBSEO.

Of course you don't need htaccess to use vBET if you have not SEO links (you have in vBET options urls with parameter setted)

mandingo
03-25-2011, 02:52 PM
I uninstalled this a while ago, however I've
been getting these sorts of db errors frequently:


On the "script" line it always has a language appended

Thinking it has something to do with this mod.

Obviously the appended language stuff is from this mod and I want it gone if anyone knows how,really don't want to screw up the wrong table doing it myself.
The errors however were unrelated,I had persistent connections on, but thanks to those errors I found the mod wasn't completely uninstalled.

TheLastSuperman
03-31-2011, 07:39 PM
Having issues uninstalling... not looking good from my perspective.

Edit: This modification does not uninstall properly, it leaves plugins and more present. I'm not sure if the site I was working on had free or pro however due to what I just went through with this on one site, I must warn others to be careful and check your forum for still present and active plugins after uninstall.

If you have major issues the only way to bypass is by adding in disable hooks to the config.php file and uninstalling afterwords. Now manually delete all vbenterprisetranslator plugins, after that check your database in phpmyadmin (use search function and search for enterprisetranslator to see what it comes up in) and remove all files associated from your server as well.

Using https://vborg.vbsupport.ru/showthread.php?t=258009 as a replacement, simple to install and nothing that will conflict imo.

kamilkurczak
05-01-2011, 07:30 AM
hello,

I would like to invite you to join to vBET main forum to make posts in subforum for vBET free version.
url: http://www.vbenterprisetranslator.com/forum/free-version-vbet2-4-x/
(http://www.vbenterprisetranslator.com/forum/free-version-vbet2-4-x/)
thanks:)

sweetpotato
05-01-2011, 05:02 PM
How to fix this error?

Parse error: syntax error, unexpected $end in D:\WEBSITES\AppServ\www\dav\includes\class_core.ph p(4444) : eval()'d code on line 131
Thanks,

sweetpotato
05-02-2011, 02:46 AM
I am interested in one feature that this mod offer, use different languague communities. I Mistake it from that I can set different languages for certain forums but now I realise it wrong.
I go to your site to buy a license for Pro version but you still want to keep your credit for pro version, and ask for 135 $ for removing it

Your mod still using googe translate tool but you set so hight price and seem that you only want to make money not coding.

I have vbulletin for only 285 $. How can you compare your mod with vbulletin?

I found below thread on vb.com and decide to not pay you money for your mod.

http://www.vbulletin.com/forum/showthread.php/352370

TheLastSuperman
05-03-2011, 01:50 AM
hello,

I would like to invite you to join to vBET main forum to make posts in subforum for vBET free version.
url: www.vbenterprisetranslator.com/forum
(http://vbenterprisetranslator.com/forum)
thanks:)

No sir I say :p it says supported i.e. HERE otherwise ask NLPer to update the modification settings accordingly :).

I am interested in one feature that this mod offer, use different languague communities. I Mistake it from that I can set different languages for certain forums but now I realise it wrong.
I go to your site to buy a license for Pro version but you still want to keep your credit for pro version, and ask for 135 $ for removing it

Your mod still using googe translate tool but you set so hight price and seem that you only want to make money not coding.

I have vbulletin for only 285 $. How can you compare your mod with vbulletin?

I found below thread on vb.com and decide to not pay you money for your mod.

http://www.vbulletin.com/forum/showthread.php/352370

I'm going to re-iterate what Wayne said! Also to be fair most "coders" are here to make money and a few are not plain and simple.

This isn't the appropriate place to discuss third-party disputes.

So as with any and all modifications you must do a little "homework" first to make a well informed decision, if it is for you and your forum.

NLP-er
05-03-2011, 04:23 PM
How to fix this error?

Parse error: syntax error, unexpected $end in D:\WEBSITES\AppServ\www\dav\includes\class_core.ph p(4444) : eval()'d code on line 131
Thanks,

Please write here: http://www.vbenterprisetranslator.com/forum/free-version-vbet2-4-x/
we moved support completely to our forum.

NLP-er
05-03-2011, 04:32 PM
I am interested in one feature that this mod offer, use different languague communities. I Mistake it from that I can set different languages for certain forums but now I realise it wrong.
I go to your site to buy a license for Pro version but you still want to keep your credit for pro version, and ask for 135 $ for removing it

Your mod still using googe translate tool but you set so hight price and seem that you only want to make money not coding.

I have vbulletin for only 285 $. How can you compare your mod with vbulletin?

I found below thread on vb.com and decide to not pay you money for your mod.


Please note that this is forum about free version. You can discuss paid version on our forum: http://www.vbenterprisetranslator.com/forum/
About your post - please keep in mind that vBET license costs only $90 and id is up to every client will they extend license to branding free or not - there is no obligatory for this.
And article which you pointed is written by software pirate who even asks us himself to charge him for his license violation and now this software piracy try to act like harmed child and spams wherever he can. Also he is still charming our license nad copyrights - best example he illegally copied our code what is not allowed: "You may not redistribute this file or its derivatives without written permission." He is simply software pirate and trys to show it in different way, when in same message he illegally redistributes our code... Nothing more to say.

NLP-er
05-03-2011, 05:14 PM
No sir I say :p it says supported i.e. HERE otherwise ask NLPer to update the modification settings accordingly :).

Thanks for note :) We are still giving free support of course, just ask to write questions on our forum, because here it is really easy to get lost when several issues cross each other. The mod is just too big right now and have too many users to be able to manage all issues in 1 thread.

So support is 100% free. If someone ask here we ask him to do it again on our fourm in separate thread. This is simply administrative decision which we believe will allow to faster and better support :)

TheLastSuperman
05-04-2011, 06:08 PM
Thanks for note :) We are still giving free support of course, just ask to write questions on our forum, because here it is really easy to get lost when several issues cross each other. The mod is just too big right now and have too many users to be able to manage all issues in 1 thread.

So support is 100% free. If someone ask here we ask him to do it again on our fourm in separate thread. This is simply administrative decision which we believe will allow to faster and better support :)

I can understand that however think about it... that bypasses the entire reason we use the "Supported" system, meaning that it should be supported here or not because if we do what your doing then it's more work for each of our valued members here. If one mod says their flying free support under that "Banner" per say then everyone else will attempt to follow suite and we'll have nothing more then 100% supported mods when in actuality they're not supported here see my point? I can fully understand not arguing that point simply saying that understanding is null and void in this instance despite your point because no one wants to take additional steps for free support when it's labeled as such imo.

Sincerely,

Mike

NLP-er
05-04-2011, 07:34 PM
"Supported" makr means that mod is supported - it doesn't means that here it is supported exactly here.

If we turn off "Supported" mark potential users will not know that it is supported and it is, so we show that it is supported. By mowing support to separate thread for each issue we give it in better way that it is possible in only one thread on this forum :)

I respect your opinion and I guarantee you that each user asking for support will get it :)

BadgerDog
05-04-2011, 08:04 PM
Interesting mod ... :)

Can the language selection bar be placed somewhere else so it's less obvious at the top of the forum? For example, displayed across the bottom of the footer?

Does the Pro version come with installation assistance?

Thanks ...

Regards,
Doug

Paul M
05-04-2011, 09:37 PM
I can understand that however think about it... that bypasses the entire reason we use the "Supported" system, meaning that it should be supported here or not because if we do what your doing then it's more work for each of our valued members here. If one mod says their flying free support under that "Banner" per say then everyone else will attempt to follow suite and we'll have nothing more then 100% supported mods when in actuality they're not supported here see my point? I can fully understand not arguing that point simply saying that understanding is null and void in this instance despite your point because no one wants to take additional steps for free support when it's labeled as such imo.

Sincerely,

Mike
Just to clarify, "Supported" means just that - there is no requirement that the support be in the thread here - coders are free to support it on their own site if that is their preference.

TheLastSuperman
05-05-2011, 04:51 AM
Just to clarify, "Supported" means just that - there is no requirement that the support be in the thread here - coders are free to support it on their own site if that is their preference.

Ohh no... :erm: then seems my opinion ended up sticking my foot --> in mouth so my apologies NLP-er for not knowing the specifics about "supported" here and by goodness that's been dually noted Paul!

runs off faster than a speeding bullet... :lolz:

8thos
05-14-2011, 09:01 PM
Hey everyone, is this worth $90?

NLP-er
05-22-2011, 01:24 PM
Hey everyone, is this worth $90?

This one here is free :) Paid version is on other forum and hundreds of sold licenses shows that many forum owners think that it is worth $90. Still if you want to discuss paid version please go to paid version forum: http://www.vbenterprisetranslator.com/forum/

Administration here disallowed to discuss paid version on this forum because it is forum about free mods. We already got infraction for discussing here paid version and some posts where removed by administration. So please go to paid version forum to discuss paid version of vBET.

8thos
05-22-2011, 02:31 PM
Alright.

stained
05-31-2011, 07:37 PM
Hi,

Now that Google has decided to deprecate the translate API do you have a 'Plan B' NLP-er? It would be a shame to see your excellent mod killed by Google's stupid decision...

8thos
06-03-2011, 05:58 AM
Hi,

Now that Google has decided to deprecate the translate API do you have a 'Plan B' NLP-er? It would be a shame to see your excellent mod killed by Google's stupid decision...

Damn I was just about to buy this.

NLP-er
06-03-2011, 11:56 AM
Hi,

Now that Google has decided to deprecate the translate API do you have a 'Plan B' NLP-er? It would be a shame to see your excellent mod killed by Google's stupid decision...

Hi. Whole discussion, plans how to keep vBET alive, propositions, alternative solutions, progress and so on - everything about the issue you will find here:
http://www.vbenterprisetranslator.com/forum/vbet4-general-discussions/1900-google-translate-api-shut-off-2011-12-01-a-2.html#post8766

Please go there to discuss the issue.

NLP-er
06-05-2011, 08:34 AM
There is a rumor that translation API will not be closed, but changed to paid one. For details see the link in previous message.

NLP-er
06-16-2011, 04:17 PM
Hello :)

Great news: vBET Pro supports other translations API! You do not have to worry anymore that Google will close it's API or make it paid.

For all details please see here:
http://www.vbenterprisetranslator.com/forum/vbet-announcements/1972-vbet-4-4-0-released.html

8thos
06-16-2011, 04:32 PM
Hello :)

Great news: vBET Pro supports other translations API! You do not have to worry anymore that Google will close it's API or make it paid.

For all details please see here:
http://www.vbenterprisetranslator.com/forum/vbet-announcements/1972-vbet-4-4-0-released.htmlGreat news!

*puts it back on shopping list*

NLP-er
06-17-2011, 12:01 PM
For all our users. Please to not believe vBSEO team. They are hypocrites and working against vBET just for rule. They use their forum for campaign against vBET with lies. To those who didn’t read – you can check first this post: https://vborg.vbsupport.ru/showpost.php?p=2208792&postcount=1347

The same scam Dave Hybrid wrote on vBSEO forum (http://www.vbseo.com/f2/take-note-all-users-running-vbet-translate-mod-47071/) on 15th December 2010 year. And vBSEO team use those lies as their propaganda against vBET - in every post they wrote to people to not use vBET they put link to this fake thread. And when I replied today (same reply as I gave you here in first link - you can check does it still exist on vBSEO forum: http://www.vbseo.com/f2/take-note-all-users-running-vbet-translate-mod-47071/index2.html#post313234). So when I replied today they immediately closed thread responding:
Please take up any issues elsewhere as this is not the place for it. vbseo.com is for discussing vbseo ONLY. This is directed for all involved. Any issues with other mods should be addressed at the mod's site.

Thank you.

This is who are you dealing on vBSEO forum. This is their truth about vBET. For half year they used lies against vBET. They send thanks to Dave for this post:
Thanks again for taking the time of posting this, we really appreciate it.
They send thanks him for his lies, they promote this thread in many other threads and the very moment when I as owner defend myself they closed thread telling that vbseo.com is for discussing vbseo ONLY
Don’t you wonder why this thread was open for half year if vbseo.com is for discussing vbseo ONLY?...

So that how it is - vBET is great for your SEO and your traffic and gives lot of advantages to your forum. vBSEO has no arguments against vBET, so first they use others lies and suddenly they remember that this is forum only about vBSEO. Great LOL. Also when someone is asking vBSEO team why they to not advise vBET they always repeat that it was already discussed and going do discussion from years.

The truth is: vBET is completely different product now with lot of new features. Especially in PRO version which even translates links. YEARS AGO we used all vBSEO team arguments to improve vBET and now it is great for your forum and your SEO :)

tareqbd
06-17-2011, 03:08 PM
Very nice and cute mod. Thanks for this.

Zachery
06-17-2011, 04:57 PM
How are they lieing?
Why do you believe you can charge someone 5,000 dollars for violating the terms of your service?
Why do you use blackhat seo techniques in your software to display your backlinks to search engines?

8thos
06-17-2011, 11:44 PM
For all our users. Please to not believe vBSEO team. They are hypocrites and working against vBET just for rule. They use their forum for campaign against vBET with lies. To those who didn?t read ? you can check first this post: https://vborg.vbsupport.ru/showpost.php?p=2208792&postcount=1347

The same scam Dave Hybrid wrote on vBSEO forum (http://www.vbseo.com/f2/take-note-all-users-running-vbet-translate-mod-47071/) on 15th December 2010 year. And vBSEO team use those lies as their propaganda against vBET - in every post they wrote to people to not use vBET they put link to this fake thread. And when I replied today (same reply as I gave you here in first link - you can check does it still exist on vBSEO forum: http://www.vbseo.com/f2/take-note-all-users-running-vbet-translate-mod-47071/index2.html#post313234). So when I replied today they immediately closed thread responding:


This is who are you dealing on vBSEO forum. This is their truth about vBET. For half year they used lies against vBET. They send thanks to Dave for this post:

They send thanks him for his lies, they promote this thread in many other threads and the very moment when I as owner defend myself they closed thread telling that vbseo.com is for discussing vbseo ONLY
Don?t you wonder why this thread was open for half year if vbseo.com is for discussing vbseo ONLY?...

So that how it is - vBET is great for your SEO and your traffic and gives lot of advantages to your forum. vBSEO has no arguments against vBET, so first they use others lies and suddenly they remember that this is forum only about vBSEO. Great LOL. Also when someone is asking vBSEO team why they to not advise vBET they always repeat that it was already discussed and going do discussion from years.

The truth is: vBET is completely different product now with lot of new features. Especially in PRO version which even translates links. YEARS AGO we used all vBSEO team arguments to improve vBET and now it is great for your forum and your SEO :)LOL @ how fast they closed your thread. I almost got vbSEO but they don't seem to offer much in their vb4 versions. vbulletin already comes with Friendly URLs.
How are they lieing?
Why do you believe you can charge someone 5,000 dollars for violating the terms of your service?
Why do you use blackhat seo techniques in your software to display your backlinks to search engines?What kind of Black Hat SEO techniques?

8thos
06-17-2011, 11:47 PM
Suing someone for 5,000 where?

Zachery
06-18-2011, 09:05 PM
http://www.ptsdforum.org/c/threads/vb-enterprise-translator-the-legal-challenge.10807/

Has part of the information.


Because within the file /includes/vbenterprisetranslator_functions_url.php he has a rotating keyword campaign contained, randomly linking keyword phrases to his website at intervals.
Here is what he is deceptively running within his file without disclosure to the purchaser:





function vbenterprisetranslator_creditlink() {
$address = 'http://www.vbenterprisetranslator.com/';
if ($_REQUEST['language']) {
$address .= $_REQUEST['language'].'/';
}
static $vbet_LinkTitles = array(
'vBulletin automatic translations supported by vB Enterprise Translator (vBET 4.2.2)',
'vBulletin automatic translations made by vB Enterprise Translator (vBET 4.2.2)',
'vBulletin automatic translations thanks to vB Enterprise Translator (vBET 4.2.2)',
'vBulletin automatic translations supported by vBET - vB Enterprise Translator 4.2.2',
'vBulletin automatic translations made by vBET - vB Enterprise Translator 4.2.2',
'vBulletin automatic translations thanks to vBET - vB Enterprise Translator 4.2.2',
'Translations for vBulletin supported by vBET - vB Enterprise Translator 4.2.2',
'Translations for vBulletin supported by vB Enterprise Translator (vBET 4.2.2)',
'Automatic translations for vBulletin supported by vBET - vB Enterprise Translator 4.2.2',
'Automatic translations for vBulletin supported by vB Enterprise Translator (vBET 4.2.2)',
'Translations for vBulletin made by vBET - vB Enterprise Translator 4.2.2',
'Translations for vBulletin made by vB Enterprise Translator (vBET 4.2.2)',
'Automatic translations for vBulletin made by vBET - vB Enterprise Translator 4.2.2',
'Automatic translations for vBulletin made by vB Enterprise Translator (vBET 4.2.2)',
'Translations for vBulletin thanks to vBET - vB Enterprise Translator 4.2.2',
'Translations for vBulletin thanks to vB Enterprise Translator (vBET 4.2.2)',
'Automatic translations for thanks to vBET - vB Enterprise Translator 4.2.2',
'Automatic translations for thanks to vB Enterprise Translator (vBET 4.2.2)'
);
$title = $vbet_LinkTitles[abs(crc32($_SERVER['REQUEST_URI']) % sizeof($vbet_LinkTitles))];
$links = array(
'Translations by <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">vB Enterprise Translator</a> 4.2.2',
'Translations <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">by vB Enterprise Translator</a> 4.2.2',
'Translations <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">made by vB Enterprise Translator</a> 4.2.2',
'Translations <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">supported by vB Enterprise Translator</a> 4.2.2',
'Translations <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">delivered by vB Enterprise Translator</a> 4.2.2',
'vBET 4.2.2 gives <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">automatic translations</a>',
'vBET 4.2.2 <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">gives automatic translations</a>',
'vBET 4.2.2 <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">supports automatic translations</a>',
'vBET 4.2.2 <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">brings automatic translations</a>',
'Integration with Google <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">translations by vB Enterprise Translator</a> 4.2.2',
'Thanks to vBET 4.2.2 <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">enjoy automatic translations</a>',
'Thanks to vBET 4.2.2 you <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">can enjoy automatic translations</a>',
'Thanks to vBET 4.2.2 <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">you can enjoy automatic translations</a>',
'Translated to other <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">languages thanks to vB Enterprise Translator</a> 4.2.2',
'Translated to <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">other languages thanks to vB Enterprise Translator</a> 4.2.2',
'Translated to other <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">languages supported by vB Enterprise Translator</a> 4.2.2',
'Translated to <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">other languages supported by vB Enterprise Translator</a> 4.2.2',
'Translations by <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">vBET translator</a> 4.2.2',
'Translations <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">by vBET Translator</a> 4.2.2',
'Translations <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">made by vBET Translator</a> 4.2.2',
'Translations <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">supported by vBET Translator</a> 4.2.2',
'Translations <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">delivered by vBET Translator</a> 4.2.2',
'Integration with Google <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">translations by vBET Translator</a> 4.2.2',
'Translated to other <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">languages thanks to vBET Translator</a> 4.2.2',
'Translated to <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">other languages thanks to vBET Translator</a> 4.2.2',
'Translated to other <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">languages supported by vBET Translator</a> 4.2.2',
'Translated to <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">other languages supported by vBET Translator</a> 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Multilingual community</a> supported by vBET Translator 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Multilingual forum</a> supported by vBET Translator 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Languages translations</a> supported by vBET 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Languages translations supported</a> by vBET 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Languages translations delivered</a> by vBET 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Languages translations made</a> by vBET Translator 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Languages translations supported by</a> vBET 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Languages translations delivered by</a> vBET 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Languages translations made by</a> vBET 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Translations</a> supported by vBET 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Translations supported</a> by vBET 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Translations delivered</a> by vBET 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Translations made</a> by vBET 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Translations supported by</a> vBET 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Translations delivered by</a> vBET 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Translations made by</a> vBET 4.2.2'
);

8thos
06-18-2011, 10:00 PM
WTF

dmm2020
06-19-2011, 03:23 AM
I really like this mod, but one suggestion is ability of somone using a foreign language to translate their input to the default language before it gets entered into the database. On my website, I have to have all posts in English. Manual translations will get overwhelming if we ever get busy.

TheLastSuperman
06-19-2011, 04:54 AM
http://www.ptsdforum.org/c/threads/vb-enterprise-translator-the-legal-challenge.10807/

Has part of the information.







function vbenterprisetranslator_creditlink() {
$address = 'http://www.vbenterprisetranslator.com/';
if ($_REQUEST['language']) {
$address .= $_REQUEST['language'].'/';
}
static $vbet_LinkTitles = array(
'vBulletin automatic translations supported by vB Enterprise Translator (vBET 4.2.2)',
'vBulletin automatic translations made by vB Enterprise Translator (vBET 4.2.2)',
'vBulletin automatic translations thanks to vB Enterprise Translator (vBET 4.2.2)',
'vBulletin automatic translations supported by vBET - vB Enterprise Translator 4.2.2',
'vBulletin automatic translations made by vBET - vB Enterprise Translator 4.2.2',
'vBulletin automatic translations thanks to vBET - vB Enterprise Translator 4.2.2',
'Translations for vBulletin supported by vBET - vB Enterprise Translator 4.2.2',
'Translations for vBulletin supported by vB Enterprise Translator (vBET 4.2.2)',
'Automatic translations for vBulletin supported by vBET - vB Enterprise Translator 4.2.2',
'Automatic translations for vBulletin supported by vB Enterprise Translator (vBET 4.2.2)',
'Translations for vBulletin made by vBET - vB Enterprise Translator 4.2.2',
'Translations for vBulletin made by vB Enterprise Translator (vBET 4.2.2)',
'Automatic translations for vBulletin made by vBET - vB Enterprise Translator 4.2.2',
'Automatic translations for vBulletin made by vB Enterprise Translator (vBET 4.2.2)',
'Translations for vBulletin thanks to vBET - vB Enterprise Translator 4.2.2',
'Translations for vBulletin thanks to vB Enterprise Translator (vBET 4.2.2)',
'Automatic translations for thanks to vBET - vB Enterprise Translator 4.2.2',
'Automatic translations for thanks to vB Enterprise Translator (vBET 4.2.2)'
);
$title = $vbet_LinkTitles[abs(crc32($_SERVER['REQUEST_URI']) % sizeof($vbet_LinkTitles))];
$links = array(
'Translations by <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">vB Enterprise Translator</a> 4.2.2',
'Translations <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">by vB Enterprise Translator</a> 4.2.2',
'Translations <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">made by vB Enterprise Translator</a> 4.2.2',
'Translations <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">supported by vB Enterprise Translator</a> 4.2.2',
'Translations <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">delivered by vB Enterprise Translator</a> 4.2.2',
'vBET 4.2.2 gives <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">automatic translations</a>',
'vBET 4.2.2 <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">gives automatic translations</a>',
'vBET 4.2.2 <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">supports automatic translations</a>',
'vBET 4.2.2 <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">brings automatic translations</a>',
'Integration with Google <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">translations by vB Enterprise Translator</a> 4.2.2',
'Thanks to vBET 4.2.2 <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">enjoy automatic translations</a>',
'Thanks to vBET 4.2.2 you <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">can enjoy automatic translations</a>',
'Thanks to vBET 4.2.2 <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">you can enjoy automatic translations</a>',
'Translated to other <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">languages thanks to vB Enterprise Translator</a> 4.2.2',
'Translated to <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">other languages thanks to vB Enterprise Translator</a> 4.2.2',
'Translated to other <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">languages supported by vB Enterprise Translator</a> 4.2.2',
'Translated to <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">other languages supported by vB Enterprise Translator</a> 4.2.2',
'Translations by <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">vBET translator</a> 4.2.2',
'Translations <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">by vBET Translator</a> 4.2.2',
'Translations <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">made by vBET Translator</a> 4.2.2',
'Translations <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">supported by vBET Translator</a> 4.2.2',
'Translations <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">delivered by vBET Translator</a> 4.2.2',
'Integration with Google <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">translations by vBET Translator</a> 4.2.2',
'Translated to other <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">languages thanks to vBET Translator</a> 4.2.2',
'Translated to <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">other languages thanks to vBET Translator</a> 4.2.2',
'Translated to other <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">languages supported by vBET Translator</a> 4.2.2',
'Translated to <a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">other languages supported by vBET Translator</a> 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Multilingual community</a> supported by vBET Translator 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Multilingual forum</a> supported by vBET Translator 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Languages translations</a> supported by vBET 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Languages translations supported</a> by vBET 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Languages translations delivered</a> by vBET 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Languages translations made</a> by vBET Translator 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Languages translations supported by</a> vBET 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Languages translations delivered by</a> vBET 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Languages translations made by</a> vBET 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Translations</a> supported by vBET 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Translations supported</a> by vBET 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Translations delivered</a> by vBET 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Translations made</a> by vBET 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Translations supported by</a> vBET 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Translations delivered by</a> vBET 4.2.2',
'<a rel="novbseo" title="'.$title.'" target="_blank" href="'.$address.'">Translations made by</a> vBET 4.2.2'
);


Confirmed :confused:.

Paul M
06-19-2011, 12:04 PM
Getting a bit tired of the constant drama in this thread. Take it elsewhere, this is a SUPPORT thread, nothign more.

We will also be taking a closer look at the above code, since we have standards about covert code in modifications.

Zachery
06-19-2011, 01:05 PM
Didn't mean to start drama (didn't even know there was other drama tbh). Was just curious about how he stood.

Sorry!

8thos
06-19-2011, 11:48 PM
Getting a bit tired of the constant drama in this thread. Take it elsewhere, this is a SUPPORT thread, nothign more.

We will also be taking a closer look at the above code, since we have standards about covert code in modifications.
Thank you Paul!

tareqbd
06-23-2011, 01:34 PM
Hi,
I want to add one more language in my forum with this mod, the language recently added in google dictionary, how can I get that please help.

thanks.

hilfe-forum
06-23-2011, 07:39 PM
For SEO links

//additional code
$alanguages = array ('af','sq','ar','be','bg','ca','zh-CN','hr','cs','da','nl','en','pl','et','tl','fi',' fr','gl','de','el','iw','hi','hu','is','id','ga',' it','ja','ko','lv','lt','mk','ms','mt','no','fa',' pt','ro','ru','sr','sk','sl','es','sw','sv','zh-TW','th','tr','uk','vi','cy','yi');
if(!$archived) {
$strlenhost = strlen($vbseo_vars['bburl']."/");
$currentthreadurl = vbseo_url_thread($threadrow, 1, $archived);
$currentthreadurl_before = substr($currentthreadurl,0,$strlenhost);
$currentthreadurl_after = "/".substr($currentthreadurl,$strlenhost);
$lastpost =& $threadrow['lastpost'];
$vbseo_stat['t'] += sizeof($alanguages);
foreach($alanguages as $language) {
vbseo_add_url($currentthreadurl_before.$language.$ currentthreadurl_after, $prior, $lastpost, $freq);
}
}
//end additional code



this works only for tread url?s can u make this work for Forum url?s please???

NLP-er
06-26-2011, 11:17 AM
To all who needs support with vBET: please go to vBET forum and open new thread for your issue in section for free version. Here is the link: http://www.vbenterprisetranslator.com/forum/free-version-vbet2-4-x/

This will allow us to keep whole issue history in one place (without dozens of other cases) and give you better support :) So please go there (support free) - as I wrote it is only to give better support and facilitate other users witch similar issues. Here where everything is in one place it is just big mess - we have already 30 pages of responses here and no possibility to find similar issue to your one.

Hope everyone who has forum understands the idea of keeping one discussion in one thread :)

8thos
06-26-2011, 03:42 PM
I just found out that this modification automatically translate's a post someone made in a different language, to the default language of your forum. OMG that is awesome. I bought the branding-free version. I can't wait to install this. I have people on my site from all over the world and some of em speak different languages.

Zachery
06-26-2011, 10:55 PM
To all who needs support with vBET: please go to vBET forum and open new thread for your issue in section for free version. Here is the link: http://www.vbenterprisetranslator.com/forum/free-version-vbet2-4-x/

This will allow us to keep whole issue history in one place (without dozens of other cases) and give you better support :) So please go there (support free) - as I wrote it is only to give better support and facilitate other users witch similar issues. Here where everything is in one place it is just big mess - we have already 30 pages of responses here and no possibility to find similar issue to your one.

Hope everyone who has forum understands the idea of keeping one discussion in one thread :)

If I buy a branding free version of the software, do you still show backlinks to your site to search engines?

8thos
06-26-2011, 11:42 PM
If I buy a branding free version of the software, do you still show backlinks to your site to search engines?I bought a branding-free version.

How do I check?

Well... I haven't received it yet. It's been a couple of days since I bought it.

NLP-er
06-27-2011, 11:52 AM
I bought a branding-free version.

How do I check?

Well... I haven't received it yet. It's been a couple of days since I bought it.

Please keep in mind that you paid by Western Union and send us wrong payment data. Reals one was send at weekend so this is first day we cna check it in bank.

Please note that you have your license instantly when you pay by Paypal.

NLP-er
06-27-2011, 11:54 AM
If I buy a branding free version of the software, do you still show backlinks to your site to search engines?

If you buy branding free version then there is no credit link :) This is branding free idea ;)

8thos
06-27-2011, 04:10 PM
Please keep in mind that you paid by Western Union and send us wrong payment data. Reals one was send at weekend so this is first day we cna check it in bank.

Please note that you have your license instantly when you pay by Paypal.My bad.

hilfe-forum
06-27-2011, 06:19 PM
this works only for tread url?s can u make this work for Forum url?s please???

To all who needs support with vBET: please go to vBET forum and open new thread for your issue in section for free version. Here is the link: http://www.vbenterprisetranslator.com/forum/free-version-vbet2-4-x/

This will allow us to keep whole issue history in one place (without dozens of other cases) and give you better support :) So please go there (support free) - as I wrote it is only to give better support and facilitate other users witch similar issues. Here where everything is in one place it is just big mess - we have already 30 pages of responses here and no possibility to find similar issue to your one.

Hope everyone who has forum understands the idea of keeping one discussion in one thread :)

ur site is down since 2 days ;)
&it is not possible to post without registration ;)

Oops! Google Chrome could not connect to www.vbenterprisetranslator.com
Try reloading: www.+vbenterprisetran+slator.+com
Additional suggestions:
Access a cached copy of www.+vbenterprisetran+slator.+com
Search on Google:

please answer my question here ;)

NLP-er
06-29-2011, 05:04 PM
My bad.

No problem - you already have it with bonus free installation service (which normally costs $30) as apologies for waiting time :)

NLP-er
06-29-2011, 05:07 PM
ur site is down since 2 days ;)
&it is not possible to post without registration ;)



please answer my question here ;)

Yes it was down, but not 2 days - just several hours (here is announcement about this crash: http://www.vbenterprisetranslator.com/forum/vbet-announcements/2041-temporary-serwer-issue-june-27-a.html)

Here it is also not possible to post without registration ;)

Please write on our forum where we will happily support you for free. Registration is also free. As I wrote it is just to keep one thread per one issue, what will facility managing the issue for us and future users. We provide free support for vBET only by vBET forum :)

tareqbd
06-30-2011, 09:46 AM
I have reinstalled forum and installed vbet again but now vbet not works in my forum. It shows all blank except user names in english when I click on any country flag. e.g. http://www.myforum.com/?language=id
Please help me to fix it.

SuperDude
06-30-2011, 08:10 PM
got the error:

Warning: require_once([path]/includes/vbenterprisetranslator_url_functions.php) [function.require-once]: failed to open stream: No such file or directory in [path]/global.php(29) : eval()'d code on line 11

8thos
07-09-2011, 10:08 PM
My site had good traffic increase the first 4 days then tapered off to the way it was before.

mickknutson
07-10-2011, 03:14 PM
This plugin ROCKS!!!!!!

But I do want to get VBSEO working please.
I installed this plugin and work without the SEO enabled but I want to use VBSEO.

I used these rules at the top of my .htaccess:

#---------------------------------------------------------#
# For Translator
# https://vborg.vbsupport.ru/showpost.php?p=1867267&postcount=2
#---------------------------------------------------------#
RewriteRule ^/?(af|sq|ar|be|bg|ca|zh-CN|hr|cs|da|nl|en|et|tl|fi|fr|gl|de|el|iw|hi|hu|is |id|ga|it|ja|ko|lv|lt|mk|ms|mt|no|fa|pl|pt|ro|ru|s r|sk|sl|es|sw|sv|zh-TW|th|tr|uk|vi|cy|yi)/$ vbenterprisetranslator_seo.php?vbet_lang=$1&redirected=/forum/ [L,QSA]
RewriteRule ^/?(af|sq|ar|be|bg|ca|zh-CN|hr|cs|da|nl|en|et|tl|fi|fr|gl|de|el|iw|hi|hu|is |id|ga|it|ja|ko|lv|lt|mk|ms|mt|no|fa|pl|pt|ro|ru|s r|sk|sl|es|sw|sv|zh-TW|th|tr|uk|vi|cy|yi)/(.*)?$ vbenterprisetranslator_seo.php?vbet_lang=$1&redirected=/forum/$2 [L,QSA]

RewriteCond %{REQUEST_URI} !(admincp/|modcp/|vbseo_sitemap/|cron)
RewriteRule ^((archive/)?(.*\.php(/.*)?))$ vbenterprisetranslator_seo.php [L,QSA]

... more Vault wiki and VBSEO rules...



Then I get the pages broken up:
blinc-translate-off.png

But the original should be like:
blinc-translate-no-seo.png

My Site:
http://www.blincmagazine.com/forum/forum.php


here is my full .htaccess
RewriteEngine On

#---------------------------------------------------------#
# Valut WIKI
#---------------------------------------------------------#
RewriteBase /forum/

RewriteRule ^wiki.php$ showwiki.php [L,QSA]
RewriteRule ^showwiki.php?title=(.*)$ wiki/$1 [L,R=301]
RewriteRule ^wiki/Wiki:(.*)$ wiki/$1 [L,R=301]

RewriteRule ^wiki$ wiki/ [L,QSA,R=301]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^wiki/(.*)?$ showwiki_proxy.php [L,QSA]


#---------------------------------------------------------#
# For Translator
# https://vborg.vbsupport.ru/showpost.php?p=1867267&postcount=2
#---------------------------------------------------------#
RewriteRule ^/?(af|sq|ar|be|bg|ca|zh-CN|hr|cs|da|nl|en|et|tl|fi|fr|gl|de|el|iw|hi|hu|is |id|ga|it|ja|ko|lv|lt|mk|ms|mt|no|fa|pl|pt|ro|ru|s r|sk|sl|es|sw|sv|zh-TW|th|tr|uk|vi|cy|yi)/$ vbenterprisetranslator_seo.php?vbet_lang=$1&redirected=/forum/ [L,QSA]
RewriteRule ^/?(af|sq|ar|be|bg|ca|zh-CN|hr|cs|da|nl|en|et|tl|fi|fr|gl|de|el|iw|hi|hu|is |id|ga|it|ja|ko|lv|lt|mk|ms|mt|no|fa|pl|pt|ro|ru|s r|sk|sl|es|sw|sv|zh-TW|th|tr|uk|vi|cy|yi)/(.*)?$ vbenterprisetranslator_seo.php?vbet_lang=$1&redirected=/forum/$2 [L,QSA]

RewriteCond %{REQUEST_URI} !(admincp/|modcp/|vbseo_sitemap/|cron)
RewriteRule ^((archive/)?(.*\.php(/.*)?))$ vbenterprisetranslator_seo.php [L,QSA]

#---------------------------------------------------------#
# Comment the following line (add '#' at the beginning)
# to disable mod_rewrite functions.
# Please note: you still need to disable the hack in
# the vBSEO control panel to stop url rewrites.
#---------------------------------------------------------#
# Some servers require the Rewritebase directive to be
# enabled (remove '#' at the beginning to activate)
# Please note: when enabled, you must include the path
# to your root vB folder (i.e. RewriteBase /forums/)
#RewriteBase /

#RewriteCond %{HTTP_HOST} !^www\.yourdomain\.com
#RewriteRule (.*) http://www.yourdomain.com/forums/$1 [L,R=301]

RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]

RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|vbseo_sitemap)
RewriteCond %{REQUEST_URI} !showwiki_proxy.php
RewriteRule ^((archive/)?(.*\.php(/.*)?))$ vbseo.php [L,QSA]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !/(admincp|modcp|clientscript|cpstyles|images)/
RewriteRule ^(.+)$ vbseo.php [L,QSA]

NLP-er
07-11-2011, 01:02 PM
For all support please write on vBET forum: http://www.vbenterprisetranslator.com/forum/free-version-vbet2-4-x/

tareqbd
07-17-2011, 02:21 PM
Bro I tried much and tired. It's not working with me. Can you please help me. When I am clicking on any flag it shows blank as below. I already tried adding Google api key and my doesn't have any sub-domain as it is working from root.

NLP-er
07-18-2011, 08:56 AM
Looks like you do not get translations from Google.

For all issues please go to vBET forum where we will support you for free: http://www.vbenterprisetranslator.com/forum/free-version-vbet2-4-x/

fwulfers
07-25-2011, 08:38 PM
I installed this last night and got about 20 of these errors since. Any idea what could be causing this?

Database error in vBulletin 4.1.4:

Invalid SQL:
SELECT cache.originaltext as originaltext, cache.translated as translated FROM vbenterprisetranslator_cache_medium help, vbenterprisetranslator_cache_medium cache WHERE help.originaltext='Satisfying+Wants+and+Meeting+Ne eds+The+9-3+Sport+Sedan+and+SportCombi+range+is+focused+on+d elivering+a+unique%2C+%26%23145%3Bfun+to+drive%26% 23146%3B+experience+that+places' AND help.tl='fr' AND cache.serie=help.serie;

MySQL Error : MySQL server has gone away
Error Number : 2006
Request Date : Monday, July 25th 2011 @ 09:08:14 PM
Error Date : Monday, July 25th 2011 @ 09:08:54 PM
Script : http://saabworld.net/f98/2008-new-saab-9-3-sport-sedan-sportcombi-press-release-325/
Referrer :
IP Address : 66.249.72.182
Username : <!--START vBET NOT TRANSLATED AREA-->Unregistered<!--END vBET NOT TRANSLATED AREA-->
Classname : vB_Database
MySQL Version :

NLP-er
07-30-2011, 11:36 AM
I installed this last night and got about 20 of these errors since. Any idea what could be causing this?

http://www.vbenterprisetranslator.com/forum/vbet4-troubleshooting/413-faq-2.html#post3105

For all vBET support (also for free version - please go to vBET forum) :)

NLP-er
07-31-2011, 10:52 PM
To all vBET users.

Please note that vBET forum (http://www.vbenterprisetranslator.com/) is down at this moment. We are during vBulletin upgrade from 3.8 to 4.1.5 and we have some difficulties (like: https://www.vbulletin.com/forum/showthread.php/385014-ERROR-Could-not-create-file-system-directory-to-hold-your-attachment.?p=2190817#post2190817)

We cannot tell how long it will take before vBET forum will be online again. It is big update, but hope it will be very fast and withour future accidents like actual one :)

NLP-er
08-03-2011, 08:19 AM
Hi :)

We just moved vBET forum from vBulletin 3.x to vBulletin 4.x
It took much more time that we thought it will, because we got some issues with vBulletin. In fact we are still configuring some things, but at this moment we can open the forum again :)

So sorry it took so long, and hope you will enjoy new forum :)

Scalemotorcars
08-05-2011, 12:26 PM
Will you be releasing the updated vbet with Microsoft API here on vb.org?

I see the Google API is deprecated and will go to a paid API.

victorvu
08-06-2011, 05:35 AM
Thank you for this mod. I like it much. I have question: how can I put a link in navbar, as Translation with a map besides it? I could not find anything in the option setup. See screenshot below:

131723

I want to hide the display flags in header and just use the link in the navbar. How can I co that? Thanks.

Installed, voted and nominated.

Victor

NLP-er
08-07-2011, 05:04 PM
Will you be releasing the updated vbet with Microsoft API here on vb.org?

I see the Google API is deprecated and will go to a paid API.

We already support it in vBET pro version. At this moment we are not sure will it be included to free one or not. First we must know exact Google conditions to make the decision. As long as it will not be sure we cannod made changes, otherwise it would cost us possible lot of changes in case if Google will made changes on their side experimenting with solutions.

NLP-er
08-07-2011, 05:06 PM
Thank you for this mod. I like it much. I have question: how can I put a link in navbar, as Translation with a map besides it? I could not find anything in the option setup. See screenshot below:

131723

I want to hide the display flags in header and just use the link in the navbar. How can I co that? Thanks.

Installed, voted and nominated.

Victor

This is supported only in full version. Here you can find main differences between full and free version: http://www.vbenterprisetranslator.com/forum/vbet-announcements/3-vb-enterprise-translator-3-x-4x.html

And here detailed informations about features differences: http://www.vbenterprisetranslator.com/forum/vbet-announcements/4-vb-enterprise-translator-features.html

Scalemotorcars
09-21-2011, 09:46 PM
Well I gave it a good try but my host complained about the huge overload to the servers and kept shutting down my site. It did increase my traffic but Ill have to hold off until I have a dedicated server.

bosken
10-02-2011, 01:21 PM
My page is suddenly blank in other languages. Did work until some days ago. Not all and not every time.


https://vborg.vbsupport.ru/external/2011/10/68.jpg

8thos
10-02-2011, 02:56 PM
A couple months later.

This modification made no difference in traffic and my members complained that it was translating their posts unnecessarily. Basically, this mod is only good if you have a lot of foreign language speakers on your site who don't like to speak English. That is all it's good for. With that said, I'm deactivating it for now due to all the complaints. I should've stuck with the free version but you hyped this up so much I was sold. You're a good salesmen I can say that much.

r.dziadusz
10-03-2011, 11:24 AM
Google api v1 will be closed by 1 December 2011, therefore free versions of vBET - 2.3.x/2.4.x will stop working after this time

Right now google api v1 sets its new, more strict, limits, so if You see blank page, there are some translations missing, You have probably reached your requests/translation limits.

Furtheremore it is not vBET bug/error, if you face this problem please read this :FAQ (http://www.vbenterprisetranslator.com/forum/vbet4-troubleshooting/413-faq-2.html#post1729)


Full version of vBET supports Google API v2(paid) and till march free translations provided by Microsoft translation API !


For anu questions, please visit our site: http://www.vbenterprisetranslator.com


@bosken: please read, and please note that this problem can be avoided by upgrade your vBET to latest full version

Lee G
10-05-2011, 01:00 PM
According to the google website

officially deprecated on May 26, 2011; it will be shut off completely on December 1, 2011
http://code.google.com/apis/language...reference.html

The courtesy limit for existing Translate API v2 projects created prior to August 24, 2011 will be reduced to zero on Dec 1, 2011. In addition, the number of requests your application can make per http://code.google.com/apis/language...tarted.htmlday will be limited. For website translations,

Its basically a case of uninstalling the mod unless you intend to pay google $20 per 2m characters being translated with the paid version of this

I dread to think what the resulting google penalty will be with all the 404's you get until all pages are deindexed

bosken
10-05-2011, 04:15 PM
DAMN! Payed V2 API from Googe! EXPENSIVE!

WARNING and BEWARE.

Installed the payed Google API V2 code last night (swedish time), not even 18hours ago and Google already billed me $25 for translation of my forum!

Had to close it down or it will ruin my economy real fast!

My forum is quiet new and not that big, have around 15.000 posts. I only have like 12 languages support.

This is crazy. Hoping we will come up with a solution when they close V1.

Scalemotorcars
10-05-2011, 07:33 PM
@bosken I checked out your site with the Microsoft translation but it doesn't seem to work. It only translates the one page and doesn't carry over to any linked pages.

And dont turn your back on Google. You got off luck with only $25.:D

Update, in fact every page behind your forums homepage is void of text. Nothing but graphics.

1F42
10-08-2011, 04:05 PM
I have uninstalled it anyway as it was making too many msql querries on my site but i am going to try the google web translate

<div id="google_translate_element"></div><script>
function googleTranslateElementInit() {
new google.translate.TranslateElement({
pageLanguage: 'en',
layout: google.translate.TranslateElement.InlineLayout.SIM PLE
}, 'google_translate_element');
}
</script><script src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit"></script>

techanalyst
10-12-2011, 03:35 PM
I had high hopes of having this plugin working for my forums however a number of issues:

1.) Plugin required code manipulation of vbseo, thats not a fix and its not integration, the code manipulation could rick the reliablity of VBSeo, as I cannot get vbseo to state the changes are approved
2.) Propose I basically disable 20 -30 plugins which all work perfect together, if you introduce a plugin that causes other to break.........20 - 30 to 1 is the math, its your plugins issue

Because it causes major plugins and functions to fail, I requested a refund, was told no, and that Im denying their support, only stipulation I put is no code or option manipulation of third part plugins, and they didnt agree

I dont want a forum that when upgrades for plugins come out I need to go through 100s of pages of code to make changes, period

I run all dragonbyte plugins currently, all work perfect, I use the advanced voice tool, photopost pro, vbtube etc etc etc none of those causing me any problem.

NLP-er
10-12-2011, 07:55 PM
I had high hopes of having this plugin working for my forums however a number of issues:

1.) Plugin required code manipulation of vbseo, thats not a fix and its not integration, the code manipulation could rick the reliablity of VBSeo, as I cannot get vbseo to state the changes are approved
2.) Propose I basically disable 20 -30 plugins which all work perfect together, if you introduce a plugin that causes other to break.........20 - 30 to 1 is the math, its your plugins issue

Because it causes major plugins and functions to fail, I requested a refund, was told no, and that Im denying their support, only stipulation I put is no code or option manipulation of third part plugins, and they didnt agree

I dont want a forum that when upgrades for plugins come out I need to go through 100s of pages of code to make changes, period

I run all dragonbyte plugins currently, all work perfect, I use the advanced voice tool, photopost pro, vbtube etc etc etc none of those causing me any problem.

Please note that there is no needed to disable other plugins to work with vBET.

Also please note that techieanalyst didn't have to and he really didn't go through 100s of pages of code to make changes.

Please also note that vBET has confirmed and working instructions to integrate with vbseo, photopost and some other plugin and for most plugins any integration is not necessary at all (only for those which are breaking vBulletin architecture - for example do not use global_complete hook).

This post is just SCAM which is SPAMMEd in many places on this forum by one angry man who many times wrote false statements screaming to force us fore refound when there was no reason for that at all.

We hope administration here do not allows for lies and SPAM - his message is SPAMmed:
https://vborg.vbsupport.ru/showthread.php?p=2256345#post2256345
https://vborg.vbsupport.ru/showthread.php?p=2256338&posted=1#post2256338
https://www.vbulletin.com/forum/showthread.php/389350-Experience-with-VBet?p=2219264#post2219264

We already notified this post to administration here and we are waiting this SPAM + SCAM thread to be removed. Hopefully we will not have to show all lies from this guy here.

techanalyst
10-12-2011, 08:26 PM
They Deleted the Below as Spam

You did offer support, but I cant risk code manipulation, as is my forums works perfect, no errors under my errors.log etc, and of course it would work if I disabled all other plugins :P that defeats the purpose of my forums, right now 20 to 30 plugins are working like clockwork, never an issue, I introduce a new one, SOME seem to have "problems" its like a vote, 20 - 30 to 1, the other 20 - 30 are working, the one introduced causes issues, and these issues remain until what you call Modification of Code (I call if manipulation of code) is done, not saying ALL didnt work, Im saying 20 - 30 worked in harmony, 5/6 once VBet was enabled showed signs of abnormal behavior, upon disabling VBet the behavior was gone.

Upon upgrades, I need to make sure code is set again, your response to that was "Its part of maintanence" you know I did 6 dragon byte updates and all i did was extract them, overrite files and they worked without me having to login, modify etc, i expect plugins to work like that

VBSEO sure gave me some issues at first but these were all out in the open settings, there were no opening php files and replacing variables (Code) with something else. Does VBSEO suppose the changes? Considering VBSEO is responsible for a massively important function of my site (SEO Optimization) I cant risk them not supporting me

This statement is honest, and its from the viewpoint of me the customer, I do not want code modifications that risk support agreements on another modification, this cant be argued.

Im not insulting your product, personally I want something like this, but its currently not going to blend well with our forums. Not blaming software :P

My understanding before purchasing was "Integration with VBSEO" means change some options under control panel, this requires changes to the PHP files, I didnt go looking in the forums, I went to the Buy Now link, if i knew what I knew now I would have waited at a different time to try again.

I would accept support on the following conditions:

1.) No code changes on any other plugins or vbulletin
2.) No disabling other plugins

Btw How is this Spam? How is that a scam, you got over 200 out of me and what I got in return wasnt what I had expected, its fairly simple, i removed it all from my site, I cant and dont want to use it, period, again NOT a scam

Lee G
10-15-2011, 10:29 AM
If any of you guys uninstalling this use vbseo, there are some htaccess rewrite rules on their forum to help limit the damage from any 404's

Touch wood, in ten + days since disabling this mod, my errors have been going down on my google webmasters account

Zachery
10-15-2011, 04:39 PM
Please note that there is no needed to disable other plugins to work with vBET.

Also please note that techieanalyst didn't have to and he really didn't go through 100s of pages of code to make changes.

Please also note that vBET has confirmed and working instructions to integrate with vbseo, photopost and some other plugin and for most plugins any integration is not necessary at all (only for those which are breaking vBulletin architecture - for example do not use global_complete hook).

This post is just SCAM which is SPAMMEd in many places on this forum by one angry man who many times wrote false statements screaming to force us fore refound when there was no reason for that at all.

We hope administration here do not allows for lies and SPAM - his message is SPAMmed:
https://vborg.vbsupport.ru/showthread.php?p=2256345#post2256345
https://vborg.vbsupport.ru/showthread.php?p=2256338&posted=1#post2256338
https://www.vbulletin.com/forum/showthread.php/389350-Experience-with-VBet?p=2219264#post2219264

We already notified this post to administration here and we are waiting this SPAM + SCAM thread to be removed. Hopefully we will not have to show all lies from this guy here.
I'd think it'd be easier to give the guy who is upset and unhappy a refund for his software instead of trying to combat his bad worth of mouth.

techanalyst
10-15-2011, 05:07 PM
I'd think it'd be easier to give the guy who is upset and unhappy a refund for his software instead of trying to combat his bad worth of mouth.

Simply put if I knew what I knew now I wouldnt have bought it, I own every dragon byte plugin, (Life Time and Branding Free), with them I notice that I know before I buy what Im getting into before I buy the plugin. I understand bugs Ive had them many times with other plugins and dont mind working with the developer.

When I bought Photopost Pro, VBTube, and every other plugin I knew what was needed before buying.

Calling me a scammer? and a liar?

I found dragon byte plugins through vBulletin.org and I purchased everyone of their plugins and I can tell you I have never once asked them for a refund on anything, they have been amazing to deal with and work with.

My refund request only came after the insults, arrogance :P Teling me I have no valid reason for a refund request? Id like to know what a valid reason is to him.

NLP-er
10-17-2011, 12:01 PM
Hello this post refers to SCAM messages SPAMmed by techanalyst in those places:
https://vborg.vbsupport.ru/showt...45#post2256345
https://vborg.vbsupport.ru/showt...=1#post2256338
https://www.vbulletin.com/forum/show...64#post2219264
We do not know why Administration of vBulletin, which was already informed that it is a SCAM, decided to use their forums for 3rd parties conflicts. But we see that it is completely OK here, so we would like to write the truth about techanalyst's messages.

Please not that whole situation is described originally in vBET forum (the right place for it, but vbulletin decided it is OK to put it here). We will give links so everyone can see and judge himself about what happened:
http://www.vbenterprisetranslator.com/forum/vbet4-troubleshooting/2501-vbulleting-4-7-vbseo-3-6-a.html
Where techanalyst had issue with vBET because of wrong configuration and integration. He was supported for the beginning. He got mad because as he wrote he just didn't like the way of integration with vbseo and that is why he asked for refund. He was informed that "just because" is not a reason for refund. And since then he started to write lies and blackmail us just to get refund.

So when he wrote here: https://www.vbulletin.com/forum/showthread.php/389350-Experience-with-VBet?p=2219280&viewfull=1#post2219280
I did just that, but I want it here as well for future references, people should go through this kind of thing, these kinds of experiences with vb 3rd party developers puts a bad taste in my mouth for VB
He just lies. The reason is - he blackmailed us that he will write bad things about us. And after that he BKACKMAIL us again that he will not remove those SPAM and SCAM messages if we will not refund him. So his messages are stuck of lies.

He SCAM by suggesting that vBET needs 100pages of code changes:
I dont want a forum that when upgrades for plugins come out I need to go through 100s of pages of code to make changes, period
He knows perfectly that this is not needed, because we informed him about this several times before (see original issue link), that vBET do not need any changes for most other mods and no changes at all to use it with vBulletin. And vbseo integration needs code changes in 2 files. So as you see yourself what techanalyst is writing is just a SCAM

Also probably he tried to use FRAUD when he claimed he has other issue:
http://www.vbenterprisetranslator.com/forum/vbet4-troubleshooting/2507-reply-qoute-stopped-working.html
Where he claims that he has issue with vBET which never was find in any customer, newer was seen on his forum by vBET team, and it is not reproducible on vBET test forums. Asked for access details he started to made up any possible excuses and just start write lies and made up reasons for refund, where there was no any reason for refund. At the end he opened another thread:
http://www.vbenterprisetranslator.com/forum/vbet4-troubleshooting/2509-support-under-circunstances-all-others-follow.html
Where he wrote that he will give us access giving conditions which we already confirmed him before that we will respect it (see previous thread). And when he was assured that all those conditions will be onored, he claimed that he can predict the future and he knows for sure that we will break those conditions. At this moment his issue is considered as possible FRAUD just to swindle refund because it is issue which is not confirmed that it even exists and he was just making excuses to not show it even after he claimd that he agree to show it.

So as all can see techanalyst is person who use terror, blackmail and lies just get what he want. techanalyst is also very VULGAR and VAILENT person we had to remove from his threads vulgar words and acts of valiance (like description about splitting our staff in face...).

And this whole thing with SCAM messages is nothing just a tool for blackmail. He lies that he is doing it for other users.
There is nothing we are shame about. We are proud that we offer him support ALL THE TIME even after blackmails, lies and insults. We will not allow to use TERROR and fraud just to get refund. We have no idea why vbulletin staff decided that it is OK to use their forum for SCAM, but we have to accept it since it is their forum and only thing we can do there is to write true. We hope that if vbulletin staff allows for SCAM about 3rd party issues then it will allow for true about it.

kall
10-17-2011, 03:06 PM
He knows perfectly that this is not needed, because we informed him about this several times before (see original issue link), that vBET do not need any changes for most other mods and no changes at all to use it with vBulletin. And vbseo integration needs code changes in 2 files. So as you see yourself what techanalyst is writing is just a SCAM

So you was already several times confirmed that we will made NO CODE or OPTION CHANGES to and other plugins running. Also we will DISSABLE NOTHING. Just as you wanted.


So once again - WE WILL NOT CHANGE other plugins configuration nor code nor disable anything.

So.. when you told him (twice or more) that there would be no code or plugin changes, did you have a reason to lie?

techanalyst
10-18-2011, 12:23 AM
Hello this post refers to SCAM messages SPAMmed by techanalyst in those places:
https://vborg.vbsupport.ru/showt...45#post2256345
https://vborg.vbsupport.ru/showt...=1#post2256338
https://www.vbulletin.com/forum/show...64#post2219264
We do not know why Administration of vBulletin, which was already informed that it is a SCAM, decided to use their forums for 3rd parties conflicts. But we see that it is completely OK here, so we would like to write the truth about techanalyst's messages.

Please not that whole situation is described originally in vBET forum (the right place for it, but vbulletin decided it is OK to put it here). We will give links so everyone can see and judge himself about what happened:
http://www.vbenterprisetranslator.com/forum/vbet4-troubleshooting/2501-vbulleting-4-7-vbseo-3-6-a.html
Where techanalyst had issue with vBET because of wrong configuration and integration. He was supported for the beginning. He got mad because as he wrote he just didn't like the way of integration with vbseo and that is why he asked for refund. He was informed that "just because" is not a reason for refund. And since then he started to write lies and blackmail us just to get refund.

So when he wrote here: https://www.vbulletin.com/forum/showthread.php/389350-Experience-with-VBet?p=2219280&viewfull=1#post2219280

He just lies. The reason is - he blackmailed us that he will write bad things about us. And after that he BKACKMAIL us again that he will not remove those SPAM and SCAM messages if we will not refund him. So his messages are stuck of lies.

He SCAM by suggesting that vBET needs 100pages of code changes:

He knows perfectly that this is not needed, because we informed him about this several times before (see original issue link), that vBET do not need any changes for most other mods and no changes at all to use it with vBulletin. And vbseo integration needs code changes in 2 files. So as you see yourself what techanalyst is writing is just a SCAM

Also probably he tried to use FRAUD when he claimed he has other issue:
http://www.vbenterprisetranslator.com/forum/vbet4-troubleshooting/2507-reply-qoute-stopped-working.html
Where he claims that he has issue with vBET which never was find in any customer, newer was seen on his forum by vBET team, and it is not reproducible on vBET test forums. Asked for access details he started to made up any possible excuses and just start write lies and made up reasons for refund, where there was no any reason for refund. At the end he opened another thread:
http://www.vbenterprisetranslator.com/forum/vbet4-troubleshooting/2509-support-under-circunstances-all-others-follow.html
Where he wrote that he will give us access giving conditions which we already confirmed him before that we will respect it (see previous thread). And when he was assured that all those conditions will be onored, he claimed that he can predict the future and he knows for sure that we will break those conditions. At this moment his issue is considered as possible FRAUD just to swindle refund because it is issue which is not confirmed that it even exists and he was just making excuses to not show it even after he claimd that he agree to show it.

So as all can see techanalyst is person who use terror, blackmail and lies just get what he want. techanalyst is also very VULGAR and VAILENT person we had to remove from his threads vulgar words and acts of valiance (like description about splitting our staff in face...).

And this whole thing with SCAM messages is nothing just a tool for blackmail. He lies that he is doing it for other users.
There is nothing we are shame about. We are proud that we offer him support ALL THE TIME even after blackmails, lies and insults. We will not allow to use TERROR and fraud just to get refund. We have no idea why vbulletin staff decided that it is OK to use their forum for SCAM, but we have to accept it since it is their forum and only thing we can do there is to write true. We hope that if vbulletin staff allows for SCAM about 3rd party issues then it will allow for true about it.

Im am awesome scammer :) I said keep my money just make sure going forward to tell the people they MAY NEED to make changes.

You keep calling it a scam buddy but its not, ask any other plugin maker if they had an issue with me, none have except you, what does that tell you?

You deleted all my posts on your forum when I attempted to get a clarification, you edited the messages to make it sound worse but my end arguement was this:

1.) I had some plugins that were having issues once VBET was enabled
2.) Integration vs CODE manipulation, the code CHANGES YOU told me to make, I created a ticket with VBSEO and I was told they possibly wouldnt support me going forward if I have issue, I pointed out VBSEO is essential to my site.
3.) I pointed out each time I did an upgrade on a plugin that was manually edited, I would have to manually edit it after an upgrade, which isnt convenient, meaning ANY plugin requiring a change would run into the same issue

Thats not a lie, thats not a scam, KEEP MY MONEY just simply PUT THOSE WORDS in a message before people hit buy now! Why is it Dragon Byte, VBTube, Photopost pro etc etc etc all put these as notes, links or SOMETHING before you hit BUY SOFTWARE

Thats not a scam, thats not a lie :P

I will tell you what a lie and scam is, editing the posts on your own forum, manipulating them to make it sound like I ignored all your posts, you removed all your insulting posts about seeing a therapist for anger issues etc seriously man not only are you the largest sack of **** ive met online or had a business dealing with but your also the most pathetic

EDIT - You did offer support, but of course you deleted most of the responses where you said "You might have to make TEMP code changes etc to other plugins". My worry here was that Id give you access, then youd look for reason to blame the other mods made by other devs, which you seemed to try and do before seeing the actual problem. Im sorry but I dont want to chance you changing things, VBSEO, VBulletin, Dragon Byte, my SEO guy my ThemeMaker all have god rights to the forums and I dont even blink at considering they would manipulate code of anything else, with you after ORIGINALLY RESPONDING (you deleted all those posts), you constantly used the term "Temp changes" "May have to" etc etc my other plugins work awesome man, WHY would I want to pssibly affect them for your, 20/30 working in perfection, introduce your and a number of them had issues, are they at fault? Three months running no issues vs VBet installed instant problems?

I never said you didnt offer support, Im just not going to risk the integrity of reputation of the other plugins I purchased. Your ATTITUDE is what triggered my demand for refund, your arrogance, ignorance, insulting etc etc, simply put as a customer, if I dont WANT TO DO BUSINESS WITH YOU I can take my money and go elsewhere. Instead you have my 200+ USDs and I literally have nothing to show for it :P Ive even deleted the emails etc, look at my site do you see it installed? A scammer usually tries to get something out of it for themselves, I was asking for "MY" money back

Keep my money man, but in the future just do what others do, reference a link with config changes required, possible problems etc, If i know I save ONE PERSON from this bs then my stupidity for not researching more before hand and loosing 200+ is worth it.

BTW is I was a scammer why wouldnt I just do a chargeback :P I havent and wont, again Im such a scammer and blackmailer. Paypal does that "Not As Expected" for reasons I can use as a charge back, which I can do, however its my own fault for not resaerching more, you as the vendor clearly think I shouldnt get a refund, so all Im asking now is to make people aware of the facts, you ask them to make a code change without warning them that VBSEO will not support it :P Come on, thats a common sense thing that the other plugin developers do, why cant you? Are you above everyone else?

Here was my MAIN POINT for Refund, you DIDNT WARN that the INTEGRATION requirements MAY VOID SUPPORT FROM VBSEO
I asked

"Ok how about the fact that VBSeo finally replied to me stating they would not support my VBSeo anymore by making those changes

VBSeo is an essential plugin of my site, so I want a refund because VBSeo wont support my install if I make changes to their code, you dont state the support issue in your license agreement either"

You responded

"Refusing support from vBSEO is not a reason for refound their service license says clearly:

We reserve the right to limit support services under any condition for any reason Basically they can refuse you support just because ("under any condition") - now you should write about them how bad they are and so on... Isn't it your way of handling issues?..."

They refused you support not us. We will be glad to support you and once again our support is free"

Integration means to work together and as such would be supported, code manipulation = no support :P that was my arguement

Just to clarify, I said if you and I were face to face and you talked to like like you did "Seek a therapist" I would spit in your face :P I dont deny saying that, I said "Your Face" your staff wasnt rude and arrogant, just you.

TheLastSuperman
10-18-2011, 12:49 AM
Gentlemen,

I believe you can both agree this has simply gotten out of hand. Do not make another post on the matter referencing each other or hinting in the least, stick to private messages if you must and in a worst case scenario use the ignore user feature if desired.

Princeton
10-18-2011, 11:08 AM
WARNING: This is not the place to discuss support for a paid add-on.

Manoel J?nior
10-18-2011, 11:45 AM
If any of you guys uninstalling this use vbseo, there are some htaccess rewrite rules on their forum to help limit the damage from any 404's

Touch wood, in ten + days since disabling this mod, my errors have been going down on my google webmasters account
What is this htaccess rule I can use to fix 404 flaws?

Lee G
10-19-2011, 09:50 PM
I asked over at vbseo and Andrés made a set up to help out.
In all honesty I have not used them
Since the 5th when I realised what could happen, daily monitoring of my google webmasters account, not one 404 has shown up
If you search my user name on vbseo, you will see the thread. Posted about the same time I found a fault with google webmaters

NLP-er
10-20-2011, 12:31 PM
Free versions of vBET can be considered dead, because Google Translation API v1 which is used by free vBET will be closed December 1st 2011.

We are really sorry to close free vBET version. We would like to still provide free translations services, but this is not up to us. vBET uses 3rd party translators and Google Translation API v1 will be paid soon. At this moment we do not know free translations API which will stay this way, so we are not able to switch provider in free vBET version. There is no sense to use paid translator provider in free vBET version - free is not optimized.

We hope that some free translation provider will be available on the market (we are still looking for other possibilities) and we will be able to reopen free vBET version again.

At this moment Full vBET version (http://www.vbenterprisetranslator.com/) supports already Google Translation API v1, Google Translation API v2 (paid) and Microsoft Translation API (free till March 2012). Full vBET version will be still available and developed.
Indeed free versions of vBET can be considered dead, because Google Translation API v1 which is used by free vBET will be closed December 1st 2011.

We are really sorry to close free vBET version. We would like to still provide free translations services, but this is not up to us. vBET uses 3rd party translators and Google Translation API v1 will be paid soon. At this moment we do not know free translations API which will stay this way, so we are not able to switch provider in free vBET version. There is no sense to use paid translator provider in free vBET version - free is not optimized.

We hope that some free translation provider will be available on the market (we are still looking for other possibilities) and we will be able to reopen free vBET version again.

At this moment Full vBET version (http://www.vbenterprisetranslator.com/) supports already Google Translation API v1, Google Translation API v2 (paid) and Microsoft Translation API (free till March 2012). Full vBET version will be still available and developed.

Paul M
10-20-2011, 01:32 PM
As per the above, moved to GY at developers request.

NLP-er
10-20-2013, 11:49 PM
FREE translations are available again!
Paid Google API is changed to FREE Yandex translation API. It supports less language pairs, but gives 1 000 000 FREE characters/DAY to translate. To compare Google gives 0 and Microsoft only 2M/month.

Of course all 53 languages - each to each are still supported in full PRO version (http://www.vbenterprisetranslator.com/).

Heldenverband
12-01-2013, 12:59 PM
Its so funny to read a russian webside for api key :down:

Marcin Kalak
12-03-2013, 06:52 PM
To get API key to Yandex in English, go to http://api.yandex.com/key/form.xml?service=trnsl. If page will redirect you to the Russian side, please replace .ru on .com. We will change the link in our product, thanks for report.

NLP-er
12-07-2013, 12:26 PM
New release today - just updated link to Yandex API key.
If you already have 2.4.5 installed - no need to update.

w00fy
12-15-2013, 04:25 PM
Installed with 4.2.2 working just fine..Cool mod.

Thank you!

xony
01-15-2014, 06:50 AM
Hello, after uninstalling the mod, templates remain in the subject, how can I completely remove from appearing in the list of templates?

Marcin Kalak
01-16-2014, 10:49 AM
Hi. In case issues with vBET please write in our forum (vBulletin Enterprise Translator (vBET) - machine translation and manual translation support (http://www.vbenterprisetranslator.com/forum/forum.php)).
Yes, if it was removed vBET then you can delete these templates. These templates are needed only to vBET as its name indicates.

Powerlynx
01-22-2014, 03:36 AM
can I place your row of flags to any part of my vB 4.2.1 website but not in just the footer or header templates? I have a coder which is having some difficulties with it. I want to place the flag images and translator function on my main webpage template and make it a global setting, is this possible?

Marcin Kalak
01-22-2014, 11:13 AM
Hi. In case issues with vBET please write in our forum (vBulletin Enterprise Translator (vBET) - machine translation and manual translation support (http://www.vbenterprisetranslator.com/forum/free-version-vbet2-4-x/)).

Powerlynx
01-22-2014, 06:20 PM
Marcin...I sent an email through your Contact page there earlier, did you get it? I can re-submit it.

Marcin Kalak
01-23-2014, 10:43 AM
Please do not send e-mails related to issues vBET, they can not pass through the spam filter. Please register on our forum and create a new thread in the appropriate section (vBulletin Enterprise Translator (vBET) - machine translation and manual translation support (http://www.vbenterprisetranslator.com/forum/free-version-vbet2-4-x/)). A thread can disappear in moderation, do not worry about it. vBET staff approves the topic and answer it.

highlander29
05-23-2014, 05:38 PM
How well does this product work with and support DragonByte SEO? I think I want to install this but can't if that integration doesn't work.

highlander29
05-23-2014, 07:31 PM
Actually, I just saw this link (http://www.vbenterprisetranslator.com/forum/vbet4-integration-other-plugins/3962-dbseo-support.html). It seems there are no plans to integrate with DragonByte SEO.

Can you even install it or use it on a Forum that uses DragonByte SEO?

Powerlynx
06-18-2014, 07:59 PM
I've had someone install this mod and it seems to be broken, I've just had someone evaluate it whom told me that it has bugs in it. I've tried to contact the creator in the past and gotten no reply back. Is it possible to make this mod work, or is there a working comparable mod out there?

Marcin Kalak
06-20-2014, 05:59 AM
If you have a issues then please contact us through our forum. Please you register on our forum and create a new thread in the appropriate section (vBulletin Enterprise Translator (vBET) - machine translation and manual translation support (http://www.vbenterprisetranslator.com/forum/free-version-vbet2-4-x/)). A thread can disappear in moderation, do not worry about it. vBET staff approves the topic and answer it.

NLP-er
06-22-2014, 09:46 AM
Actually, I just saw this link (http://www.vbenterprisetranslator.com/forum/vbet4-integration-other-plugins/3962-dbseo-support.html). It seems there are no plans to integrate with DragonByte SEO.

Can you even install it or use it on a Forum that uses DragonByte SEO?


It should be no problem to use it with DragonByte SEO if you configure it to have links with language attribute and without supporting translation of URL.

You can try free version, which do not translates URL's.

You can also try to use SEO links (language included in URL like /en/ not by parameter language=en), but this requires changes in .htaccess and can be tricky - in example for vBSEO we had to create additional facade file which set some vBSEO internal variables.

Still using vBET with any SEO engine should have no issues if links are with language attribute. I'm writing should, because we cannot guarantee without checking it.