by Luc411 » Mon Mar 24, 2014 10:38 pm
Hi,
i don't want to write a script which is checking the license.dat file every 5 days.
My Provider is Hosteurope and I'm using the newest Joomla Version.
.htaccess secures every neccessary folder.
Additionally we block some HTTP User Agents after the gtranslate config like this:
RewriteEngine On
# 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]
RewriteCond %{REQUEST_FILENAME} !-f
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]
##
RewriteCond %{HTTP_USER_AGENT} ^Zeus
RewriteRule .* - [F]
Maybe that would be the problem?
Thanks in advance