• Welcome to Tux Reports: Where Penguins Fly. We hope you find the topics varied, interesting, and worthy of your time. Please become a member and join in the discussions.

problem with url on internet explorer

N

Netman

Flightless Bird
R

rob^_^

Flightless Bird
Hi,

Google issue. The link is malformed.

"Netman" <netman@poczta.onet.pl> wrote in message
news:hiq4af$osb$1@news.onet.pl...
> Hello!
>
> I try to run such url on Internet Explorer 8.0.6.:
>
> http://www.translate.google.pl/#de|...0Fahrzeug%20ben%F6tigt%20keine%20Lackarbeiten.
>
> Unfortunately this url is redirected into:
>
> http://translate.google.pl/#
>
> and I don`t know why.
>
> Because of this redirection my translation on my webpage is unuseful
> Please help me.
> The same url runs without any problems on Firefox.
>
> What should I do to make it work
> My web page is created on html, php, smarty
>
> hugs
> netman
>
>
 
N

Netman

Flightless Bird
Uzytkownik "rob^_^" <iecustomizer@hotmail.com> napisal w wiadomosci
news:EF97CEF0-4694-4124-85FB-D1F9CD354740@microsoft.com...
> Hi,
>
> Google issue. The link is malformed.
>
> "Netman" <netman@poczta.onet.pl> wrote in message
> news:hiq4af$osb$1@news.onet.pl...
>> Hello!
>>
>> I try to run such url on Internet Explorer 8.0.6.:
>>
>> http://www.translate.google.pl/#de|...0Fahrzeug%20ben%F6tigt%20keine%20Lackarbeiten.
>>
>> Unfortunately this url is redirected into:
>>
>> http://translate.google.pl/#
>>
>> and I don`t know why.
>>
>> Because of this redirection my translation on my webpage is unuseful
>> Please help me.
>> The same url runs without any problems on Firefox.
>>
>> What should I do to make it work
>> My web page is created on html, php, smarty
>>
>> hugs
>> netman
>>
>>



Hello!

Can you write me what I should do?

I have such code in PHP language:

$link_opis=stripslashes($row["description"]);
$link_opis=str_replace("\"","",$link_opis);
$link_opis=str_replace("\\","",$link_opis);
$link_opis = str_replace(chr(10).chr(13), ' ',$link_opis);
$link_opis = str_replace(chr(10), ' ', $link_opis);
$link_opis = str_replace(chr(13), ' ', $link_opis);

$link_tlumaczenie["link"]=rawurlencode($link_opis);
$link_tlumaczenie["link"]="http://www.translate.google.pl/translate_t#de|pl|"."test";

What`s wrong with it?

thank you
netman
 
R

rob^_^

Flightless Bird
Hi,

Go to your translate.google.pl page and use a DOM explorer to examine the
parameters of the submittal form on that page.

If it uses the Post method you may not be able to use the same for action
parameters. (depends on Google's server side code processing of Post
parameters)

Your link href must look like the Form Get action query.

OR

Go to developers.google.com and find the translation services API.

IE8 visitors to your site can use Accelerators to translate your pages to
the language of their choosing. The common practice is to place a Google
Translate button (see Googles' Webmaster tools) on your page (see
Bablefish.org)

Regards.

"Netman" <netman@poczta.onet.pl> wrote in message
news:hiqfi3$n3i$1@news.onet.pl...
>
> Uzytkownik "rob^_^" <iecustomizer@hotmail.com> napisal w wiadomosci
> news:EF97CEF0-4694-4124-85FB-D1F9CD354740@microsoft.com...
>> Hi,
>>
>> Google issue. The link is malformed.
>>
>> "Netman" <netman@poczta.onet.pl> wrote in message
>> news:hiq4af$osb$1@news.onet.pl...
>>> Hello!
>>>
>>> I try to run such url on Internet Explorer 8.0.6.:
>>>
>>> http://www.translate.google.pl/#de|...0Fahrzeug%20ben%F6tigt%20keine%20Lackarbeiten.
>>>
>>> Unfortunately this url is redirected into:
>>>
>>> http://translate.google.pl/#
>>>
>>> and I don`t know why.
>>>
>>> Because of this redirection my translation on my webpage is unuseful
>>> Please help me.
>>> The same url runs without any problems on Firefox.
>>>
>>> What should I do to make it work
>>> My web page is created on html, php, smarty
>>>
>>> hugs
>>> netman
>>>
>>>

>
>
> Hello!
>
> Can you write me what I should do?
>
> I have such code in PHP language:
>
> $link_opis=stripslashes($row["description"]);
> $link_opis=str_replace("\"","",$link_opis);
> $link_opis=str_replace("\\","",$link_opis);
> $link_opis = str_replace(chr(10).chr(13), ' ',$link_opis);
> $link_opis = str_replace(chr(10), ' ', $link_opis);
> $link_opis = str_replace(chr(13), ' ', $link_opis);
>
> $link_tlumaczenie["link"]=rawurlencode($link_opis);
> $link_tlumaczenie["link"]="http://www.translate.google.pl/translate_t#de|pl|"."test";
>
> What`s wrong with it?
>
> thank you
> netman
>
>
 
Top