Finally, after removing the Google-API and inserting a new BING-API key) I´ve deleted the wohle "cache" folder and uploaded a new, fresh one. Also deleted "limits.txt". Furthermore, I´ve created a new BING-API-key (but in config you write, that the "PHP SOAP client is required", I´m not sure if I´ve choosen the right one, but I just can´t find any alternative Bing-API-keys at
http://www.bing.com/developers/createapp.aspx). All just related to the topic above,
but the site doesn´t translate anymore. What´s on?
My config.php:
- Code: Select all
<?php
define('API_KEY', ''); // You need to get your Google Translate API key from https://code.google.com/apis/console/?api=translate
define('MAIN_LANG', 'de'); // en, ar, bg, hr, cn, ct, cs, da, et, tl, fi, fr, gl, el, iw, hi, es, nl, id, ja, ca, ko, lt, lv, mt, de, no, pt, ru, ro, sr, sk, sl, sv, th, tr, uk, hu, vi, it, pl, sq
define('AUTO_DETECT_LANG', false); // set to true if you have mixed language content
define('CACHE_TIME', 365*24*60*60); // 1 year by default, no need to decrease
define('LICENSE', 'license.dat');
define('SSL_VERIFY_PEER', true); // disable if you get CA certificate error and cannot reconfigure your server to solve the issue
define('FOLLOW_LOCATION', false); // if your site have redirects for some URLs and for that reason you see blank pages, you need to enable this feature
define('USE_BING_TRANSLATOR', true); // Enable it to use Bing Translotor instead of Google Translate
define('BING_API_KEY', 'BDAD75xxnotyoursxxxxx434E'); // If the option above is enabled you need to get your Bing API key from http://www.bing.com/developers/createapp.aspx (PHP SOAP client is required)
define('DEBUG', false); // turn on for debug mode
// username and password to edit translations, please change for security reasons,
// this is not your google login/pass, you need to think something new
define('USER', 'myuserishere');
define('PASS', 'mypassishere');
Best regards and once again thanks for your professional support!
alt_f4