First of all, congrats on your amazing product. I am not a technical person, so I had to hire somebody to install it for me, and now I am taking care of the details.
I have GTranslate PRO, and I am experiencing several problems, please bear with me:
- GT runs fine only with the “On the fly” option (does not add the /de, or /fr, etc. depending on language chosen)
- When I do FTP, I can see the cache folder, with all the other languages there, but no files inside.
- I am not able to edit translated languages.
- The cache folder is set to read/write .
- When I select “direct” method, it adds the /de/ or /fr (depending on language), but then it either says “Not Found Error 404” or does not do anything.
- GTranslate is using Redirect translation method and Operate with Pro option is on.[img][img]
Any idea about what I am doing wrong? What should I do to fix it?
I am running everything in the latest version of WordPRess. Please see attached file for settings I am using.
Here is my .htaccess file (I am not allowing indexing of search engines for now):
AuthType Basic
AuthName "Access to /QUANTMETHOD"
AuthUserFile /kunden/homepages/7/d291798097/htpasswd
Require user
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
AddType x-mapp-php5 .php
AddHandler x-mapp-php5 .php
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
# gtranslate config
RewriteRule ^([a-z]{2}|zh-CN|zh-TW)/([a-z]{2}|zh-CN|zh-TW)/(.*)$ /$1/$3 [R=301,L]
RewriteRule ^([a-z]{2}|zh-CN|zh-TW)/([a-z]{2}|zh-CN|zh-TW)$ /$1/ [R=301,L]
RewriteRule ^([a-z]{2}|zh-CN|zh-TW)/(.*)$ /gtranslate/translate.php?lang=$1&url=$2 [L,QSA]
RewriteRule ^([a-z]{2}|zh-CN|zh-TW)$ /gtranslate/translate.php?lang=$1 [L,QSA]
#end
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress