The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
|
vB Global Translator - Multiply your indexed pages & put search traffic on autopilot Details »» | |||||||||||||||||||||||||||
vB Global Translator - Multiply your indexed pages & put search traffic on autopilot
Developer Last Online: Dec 2013
**Text Removed**
Show Your Support
|
Comments |
#192
|
||||
|
||||
v2.3 should be fully tested soon. False database error emails gone, finally. So far so good.
|
#193
|
||||
|
||||
Agreed, it's on the to do list. Thanks.
|
#194
|
|||
|
|||
For those who has a blank page .
After 3 days working with NLP-er .. This maybe becuase : Firewall blocked google IP . Curl functions disable on " disable_functions " On PHP .. This functions must be enabled : curl_exec and curl_init Thanks Dave ... Thanks NLP-er ... my best regards |
#195
|
|||
|
|||
One more suggestion for this mod ..
for example : In arabic , pages direction is rtl In english its ltr it's nice if the mod make the page direction Based on the langauge . Sorry about my poor english :$ . |
#196
|
||||
|
||||
Quote:
Code:
$output = str_replace("NOT_TRANSLATED_TEXT", "<NOT_TRANSLATED_TEXT>", $output); Code:
$output=callback($output); Code:
$output = str_replace("<NOT_TRANSLATED_TEXT>", "NOT_TRANSLATED_TEXT", $output); |
#197
|
||||
|
||||
Still making fun with cache by improving it so get new issue here
During spidering my site I realized, that sometimes google translation returns just empty result. And right now those empty results are included in cache, so If once filled - used forever... To avoid this you must do 3 things. 1. Made change described under link - approptiate handling of non breaking spaces (not sure does necessary but I'm already working on correted code, and it works this way) https://vborg.vbsupport.ru/showpost....&postcount=189 2. In translate.php change: Code:
/* Save to cache */ if ($enablecache) { Code:
/* Save to cache */ if ($enablecache && (strlen($ttext)>0)) { Dave - it would be good to include it in new release 3. get rid of already cached dummy content by executing those queries: Code:
delete from wt_cache where translated='' or translated is null; delete from wt_cache_medium where translated='' or translated is null; delete from wt_cache_short where translated='' or translated is null; Note that I'm still working improving cache so future changes are possible Who don't like to mess in code - just wait till Dave made new official release with changes included For others - installing this will give me feedback about possible issues which I don't have on my forum. Also - Dave I noted you was asking to wrote changes proposals as PM - I prefere this way because I have a chance that someone will use it and maybe discover some additional issues before official release. |
#198
|
|||
|
|||
the 2 tables medium and short are increasing, but nothing is in the translated fields of the tables....its just empty on my end. the site isnt translating. ill be uninstalling this i guess untill a later date.
|
#199
|
||||
|
||||
v2.3 Official Release
* More change to database optimization. To Upgrade Upload the new translate.php and run the following MySQL query on your DB. Code:
delete from wt_cache where translated='' or translated is null; delete from wt_cache_medium where translated='' or translated is null; delete from wt_cache_short where translated='' or translated is null; |
#200
|
||||
|
||||
Quote:
I'm still trying to sort the few remaining DB errors, it's a PITA to fix, I can get rid of them but the DB has to be opened and closed twice to avoid timeout so it makes everything slow... Grrrr. Ha. I'll keep trying. |
#201
|
|||
|
|||
Quote:
Firewall blocked google IP . Curl functions disable on " disable_functions " On PHP .. This functions must be enabled : curl_exec and curl_init |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|