can someone help me i tried everything as far as i know
I have the script installed my server has all the requierements needed but it does not translate the page at all (well the text)
https://www.investmentscorner.com/index-3.php
Printable View
can someone help me i tried everything as far as i know
I have the script installed my server has all the requierements needed but it does not translate the page at all (well the text)
https://www.investmentscorner.com/index-3.php
I think it's due to secure server layers, since you're on a https connection.
Maybe you should enable the https into the rcript, or maybe to move on an http connection if you'r site's subject/content doesn't need a secure connection.
Just my tought...
how can i enable https?
No, its not from https - same happens with http site here
Im also looking for help on this issue...
I've also had this problem.. I'm not sure, but it seems that the .php pages aren't translated because of this rule at \translate\.htaccess :
I'm still temp banned from Google, so I can't test and tell if removing php from the rule solves this.Code:# Various extentions that are not translated
RewriteRule ^[^/]+/[^/]+/(.*)\.(exe|gz|zip|rar|asp|js|jsp|php|pdf|xls|mp3|avi|mpg|mpeg|wmv|gif|png|jpg|bmp|css|ico|GIF|JPG|PNG|feed|trackback)$ ../$1.$2 [L]
Anyway, I managed to solve this problem using this rule at my website root .htaccess:
Example URL: www.example.com/test.php
With my solution you now have to type www.example.com/test
Code:Options +FollowSymLinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME}\.php -f
RewriteRule ^(.*)$ $1.php
Let me know how it went.
Kind regards,
floydax
@floydax
Thank you dude, you save my life :)
Problem solved as simply removed php from excluded filetypes
I'm glad I could help :)
You should consider using that last rule, removing the .php usage improves your SEO.
Regards
was trying it out but i got the below what does that mean?
Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set in /home/investme/public_html/translate/translate.php on line 62
Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set in /home/investme/public_html/translate/translate.php on line 62
Warning: curl_setopt() [function.curl-setopt]: CURLOPT_FOLLOWLOCATION cannot be activated when in safe_mode or an open_basedir is set in /home/investme/public_html/translate/translate.php on line 62
We are experiencing a temporary problem with the foreign language section. Please try again later. We apologize for the inconvenience.
Scuzi / Perdon / Pardon / Das is Nicht Gud / Sori / Nay canne doo tha laddy
the below message i get now on the following url when you try another language
https://www.investmentscorner.com/index-3.php
my host disabled open_basedir and safe_mode for me.
We are experiencing a temporary problem with the foreign language section. Please try again later. We apologize for the inconvenience.
Scuzi / Perdon / Pardon / Das is Nicht Gud / Sori / Nay canne doo tha laddy
Code: -2
As u said safe_mode is disabled. but you also have oper_basedir set . I will try removing that