Re: url redirected in chrome/chromium, but working fine, according to ping/traceroute, lynx, w3m, iceweasel.

2016-10-26 Thread Lisi Reisz
On Friday 07 October 2016 19:00:12 Tony Baldwin wrote:
> I have a little business card website up for my big brother's media
> consulting side-business at http://playomatic.myownsite.me.
> Now, at the moment, if I try to load it in Google-Chrome-Stable, I'm
> getting redirected to a yahoo! search for "create web",

It works fine here.  Chrome 54 on Jessie.  Both fully updated.

Lisi



Re: url redirected in chrome/chromium, but working fine, according to ping/traceroute, lynx, w3m, iceweasel.

2016-10-26 Thread Lisi Reisz
On Sunday 09 October 2016 12:28:03 Tony Baldwin wrote:
> I kind of think Montenegro should be .Mn, really (or that for the US
> stat of  Minnesota).

Except that it is Mongolia.  Country TLDs have to be unique.

Lisi



Re: Linux source address selection (Was Re: url redirected in chrome/chromium, but working fine, according to ping/traceroute, lynx, w3m, iceweasel.)

2016-10-12 Thread rhkramer
Hi Andy,

Thanks very much!  It looks like quite a comprehensive answer (including 
links) that I'll surely have to read more than once to absorb.  (At that 
point, I'll ask more questions if I feel the need.)

regards,
Randy Kramer


On Tuesday, October 11, 2016 10:18:38 PM Andy Smith wrote:
> On Sun, Oct 09, 2016 at 04:23:45PM -0400, rhkra...@gmail.com wrote:
> > I'm not the OP, and I'm sort of piggybacking and going somewhat (or a
> > lot?) OT,
> 
> In that case it would be good to change the subject of the email.
> I've done so here.
> 
> > but I am curious about how old inet4 (right term?) and the new
> > inet6 addresses interact.

Other good stuff elided.



Linux source address selection (Was Re: url redirected in chrome/chromium, but working fine, according to ping/traceroute, lynx, w3m, iceweasel.)

2016-10-11 Thread Andy Smith
Hi rhkramer,

On Sun, Oct 09, 2016 at 04:23:45PM -0400, rhkra...@gmail.com wrote:
> I'm not the OP, and I'm sort of piggybacking and going somewhat (or a lot?) 
> OT,

In that case it would be good to change the subject of the email.
I've done so here.

> but I am curious about how old inet4 (right term?) and the new
> inet6 addresses interact.

As the address family for IPv4 is "inet" (vs "inet6"), you could say
"inet", but then it may not be so obvious that you were intending to
make a distinction between IPv4 and IPv6. So, perhaps "inet4" is not
so bad, or IPv4. Some go as far as to say "legacy". :)

> When I do ifconfig, I see that eth0 has both a 32 bit (e.g., 192.168.1.19) 
> and 
> an inet6 address assigned.

On Linux, it would be best to get used to using the "ip" command
rather than "ifconfig". Issuing an "ip address" command will get you
all the configured addresses of the various families.

> Can anybody point me to a fairly short document that explains things like 
> which gets used under what circumstances

If we restrict the domain of this question to source address
selection then reading around from this point may help:

http://linux-ip.net/html/routing-saddr-selection.html

> does one have precedence over the other,

Clearly if there is just one inet address and one inet6 address,
then which will be chosen depends on which family the destination
address comes from. i.e., if the destination is an inet6 address
then the source address will have to be an inet6 address as well,
otherwise no communication will be possible¹.

If the destination address has been directly specified then that's
simple enough to predict.

Usually though, we are just dealing with host names that we wish to
communicate with. A host name is going to be presented to the
system's hostname resolution system, which may return a result from
/etc/hosts or some other database. More usually though it's going to
go out to DNS.

The DNS may contain both A (IPv4) and  (IPv6) addresses with no
regard as to whether the client actually has a source address of the
matching family. That is, if you had a host with only inet6
addresses and you did a DNS query, you would still receive A records
as answers. If amongst the answers there were no  records then
you'd have no way to communicate with the destination when the
application tried to do that.

It's the getaddrinfo() function of GNU libc that decides which
destination address to select for use. You can find more details
about that with "man getaddrinfo".

By default, if there are both inet and inet6 family addresses to
choose from, getaddrinfo will choose the inet6 one. So, if your host
has at least one configured global inet6 address then your
applications will tend to try to connect to inet6 destination
addresses, where available.

You can configure getaddrinfo's address selection in /etc/gai.conf.
A very common desire is to prefer inet addresses over inet6 ones,
and so on Debian the configuration required to do that is shown in
/etc/gai.conf commented out.

An application can be told to use a specific source address, but it
is more common for applications to be allowed to use any address. In
that case for inet it will generally be a reasonably simple case of
using the routing table to determine which source address is
"closest" to the destination.

For example, suppose you have an interface that has the addresses
192.168.1.1/24 and 192.168.1.175/25 on it. When attempting to
communicate with 192.168.1.180 the routing table will show that this
is in the same network as 192.168.1.175/25 and that that is the most
specific address.

When it comes to inet6 it can get a bit more complicated, especially
as it is much more common to have several inet6 addresses, and
you've got whole new concepts like privacy addresses and deprecated
addresses. But, it's all covered by RFC 6724, and this may help as a
summary:

http://biplane.com.au/blog/?p=22

> do they both use DNS,

As hopefully made clear by the above, it is not the addresses on
your system which "use DNS". It's more like your system uses DNS,
and the DNS may contain both inet and inet6 addresses, thus your
system decides which to communicate with based on which families of
address you have.

> and similar things which might let me make sense of the situation?

Hopefully that helped. It's quite a large topic, so some reading
will be required in many places to fully understand it.

Cheers,
Andy

¹ This ignores the various translation mechanisms that may in place
  to allow IPv4 networks and IPv6 networks to inter-operate. These
  can involve various kinds of NAT and DNS rewriting. Look into
  things like "NAT64" and "DNS64" for more information about these.

-- 
https://bitfolk.com/ -- No-nonsense VPS hosting



Re: url redirected in chrome/chromium, but working fine, according to ping/traceroute, lynx, w3m, iceweasel.

2016-10-09 Thread rhkramer
I'm not the OP, and I'm sort of piggybacking and going somewhat (or a lot?) 
OT, but I am curious about how old inet4 (right term?) and the new inet6 
addresses interact.

When I do ifconfig, I see that eth0 has both a 32 bit (e.g., 192.168.1.19) and 
an inet6 address assigned.

Can anybody point me to a fairly short document that explains things like 
which gets used under what circumstances, does one have precedence over the 
other, do they both use DNS, and similar things which might let me make sense 
of the situation?

On Sunday, October 09, 2016 03:02:25 PM Tony Baldwin wrote:
> On 10/09/2016 11:54 AM, claude juif wrote:
> > Are you logged in with a google account on that chrome/chromium ? By
> > the way, how did you install them ?
>



Re: url redirected in chrome/chromium, but working fine, according to ping/traceroute, lynx, w3m, iceweasel.

2016-10-09 Thread Tony Baldwin

On 10/09/2016 11:54 AM, claude juif wrote:
Are you logged in with a google account on that chrome/chromium ? By 
the way, how did you install them ?


I WAS logged into my google account when I had the problem,  in fact, 
but eventually determined that when I logged out, I could load the 
proper page for the url, oddly.
I installed chromium with aptitude, google-chrome-stable by downloading 
google's .deb pkg and doing sudo dpkg -i $said-google-pkg.deb


To resume :
On your debian computer, only for this website, you get redirect to 
ads only with chrome/chromium ?


That is correct, Iceweasel, w3m, lynx and e-links all load the proper 
page/site.
Chrome and dolphin on my android phone do fine, as well, but apparently 
chrome on iOS (what my brother was using when he found the problem), 
does not.


I would try these :

purge chromium and chrome.
Install chromium and go to your website. (do not log in before).

The only things i can think of is broken extension. I've never see 
this happening, it's really strange. If that happens on windows i 
would have say, search for malware and delete them.




2016-10-09 15:00 GMT+02:00 Tony Baldwin >:




On 10/09/2016 07:36 AM, Richard Hector wrote:

On 10/10/16 00:28, Tony Baldwin wrote:



But we're getting a bit off-topic :-)

Richard


Indeed we are, but I thank you for humoring my curiosity.
Thanks,

Tony
-- 
http://tonybaldwin.me

all tony, all the time





--
http://tonybaldwin.me
all tony, all the time



Re: url redirected in chrome/chromium, but working fine, according to ping/traceroute, lynx, w3m, iceweasel.

2016-10-09 Thread Joe Pfeiffer
Richard Hector  writes:
>
> It appears that Montenegro only came into existence (most recently) in
> 2006 - it was part of Yugoslavia, then 'Serbia and Montenegro'. So all
> the 'good' codes were presumably taken.

I'd imagine .me would, like .tv (Tuvalo) be one that a small country
could use to bolster their income quite a bit...

> I'm looking here:
> http://www.domainsherpa.com/country-code-top-level-domains/
>
> But we're getting a bit off-topic :-)
>
> Richard



Re: url redirected in chrome/chromium, but working fine, according to ping/traceroute, lynx, w3m, iceweasel.

2016-10-09 Thread claude juif
Are you logged in with a google account on that chrome/chromium ? By the
way, how did you install them ?

To resume :
On your debian computer, only for this website, you get redirect to ads
only with chrome/chromium ?

I would try these :

purge chromium and chrome.
Install chromium and go to your website. (do not log in before).

The only things i can think of is broken extension. I've never see this
happening, it's really strange. If that happens on windows i would have
say, search for malware and delete them.



2016-10-09 15:00 GMT+02:00 Tony Baldwin :

>
>
> On 10/09/2016 07:36 AM, Richard Hector wrote:
>
>> On 10/10/16 00:28, Tony Baldwin wrote:
>>
>
>
>> But we're getting a bit off-topic :-)
>>
>> Richard
>>
>>
> Indeed we are, but I thank you for humoring my curiosity.
> Thanks,
>
> Tony
> --
> http://tonybaldwin.me
> all tony, all the time
>
>


Re: url redirected in chrome/chromium, but working fine, according to ping/traceroute, lynx, w3m, iceweasel.

2016-10-09 Thread Tony Baldwin



On 10/09/2016 07:36 AM, Richard Hector wrote:

On 10/10/16 00:28, Tony Baldwin wrote:




But we're getting a bit off-topic :-)

Richard



Indeed we are, but I thank you for humoring my curiosity.
Thanks,
Tony
--
http://tonybaldwin.me
all tony, all the time



Re: url redirected in chrome/chromium, but working fine, according to ping/traceroute, lynx, w3m, iceweasel.

2016-10-09 Thread Richard Hector
On 10/10/16 00:28, Tony Baldwin wrote:
> 
> 
> On 10/09/2016 07:23 AM, Richard Hector wrote:
>> On 10/10/16 00:20, Tony Baldwin wrote:
>>> What country is .me? here in th US, of course, it could be the
>>> State of Maine.
>> 
>> Montenegro, apparently. According to a quick web search ;-)
>> 
>> Richard
>> 
> 
> Thanks, I was curious, couldn't think of anything, all the Ms I
> could think of were thins like Maroc, Moçambique, Macao, and the
> like, where .ma, .mc, .mo, or some such think would make more
> sense. I kind of think Montenegro should be .Mn, really (or that
> for the US stat of  Minnesota).

That's Mongolia :-)

It appears that Montenegro only came into existence (most recently) in
2006 - it was part of Yugoslavia, then 'Serbia and Montenegro'. So all
the 'good' codes were presumably taken.

I'm looking here:
http://www.domainsherpa.com/country-code-top-level-domains/

But we're getting a bit off-topic :-)

Richard



Re: url redirected in chrome/chromium, but working fine, according to ping/traceroute, lynx, w3m, iceweasel.

2016-10-09 Thread Lars Noodén
On 10/09/2016 02:28 PM, Tony Baldwin wrote:
> 
> 
> On 10/09/2016 07:23 AM, Richard Hector wrote:
>> On 10/10/16 00:20, Tony Baldwin wrote:
>>> What country is .me? here in th US, of course, it could be the State of
>>> Maine.
>>
>> Montenegro, apparently. According to a quick web search ;-)
>>
>> Richard
>>
> 
> Thanks, I was curious, couldn't think of anything, all the Ms I could
> think of were thins like Maroc, Moçambique, Macao, and the like, where
> .ma, .mc, .mo, or some such think would make more sense.
> I kind of think Montenegro should be .Mn, really (or that for the US
> stat of  Minnesota).
> Tony
> 

The complete list is all in ISO-3166.  It has two-letter codes as well
as three-letter codes.  ISO 639, in contrast, covers languages.  I'd
seen some sites mix them up.

Regards,
Lars



Re: url redirected in chrome/chromium, but working fine, according to ping/traceroute, lynx, w3m, iceweasel.

2016-10-09 Thread Tony Baldwin



On 10/09/2016 07:23 AM, Richard Hector wrote:

On 10/10/16 00:20, Tony Baldwin wrote:

What country is .me? here in th US, of course, it could be the State of
Maine.


Montenegro, apparently. According to a quick web search ;-)

Richard



Thanks, I was curious, couldn't think of anything, all the Ms I could 
think of were thins like Maroc, Moçambique, Macao, and the like, where 
.ma, .mc, .mo, or some such think would make more sense.
I kind of think Montenegro should be .Mn, really (or that for the US 
stat of  Minnesota).

Tony

--
http://tonybaldwin.me
all tony, all the time



Re: url redirected in chrome/chromium, but working fine, according to ping/traceroute, lynx, w3m, iceweasel.

2016-10-09 Thread Richard Hector
On 10/10/16 00:20, Tony Baldwin wrote:
> What country is .me? here in th US, of course, it could be the State of
> Maine.

Montenegro, apparently. According to a quick web search ;-)

Richard



Re: url redirected in chrome/chromium, but working fine, according to ping/traceroute, lynx, w3m, iceweasel.

2016-10-09 Thread Tony Baldwin



On 10/09/2016 07:11 AM, Richard Hector wrote:

On 08/10/16 07:00, Tony Baldwin wrote:

I have a little business card website up for my big brother's media
consulting side-business at http://playomatic.myownsite.me.
Now, at the moment, if I try to load it in Google-Chrome-Stable, I'm
getting redirected to a yahoo! search for "create web",
If I try to load it in the floss chromium, I get a spammy landing page,


This is probably a long shot ... is it a recent chrome/chromium? It
seems to work fine for me in jessie.

Just wondering if it sees a url that doesn't start with www, and ends
with a slightly unusual '.me', and tries to 'autocorrect'. But .me is a
country code TLD, not one of the new ones as I first thought, so it
shouldn't be that.



my chromium is Version 53.0.2785.113 Built on 8.5, running on Debian 8.5 
(64-bit)
and my chrome is google's latest stable install within this past week, 
two weeks at most . Version53.02785.143 (64-bit)


What country is .me? here in th US, of course, it could be the State of 
Maine.


Tony


--
http://tonybaldwin.me
all tony, all the time



Re: url redirected in chrome/chromium, but working fine, according to ping/traceroute, lynx, w3m, iceweasel.

2016-10-09 Thread Richard Hector
On 08/10/16 07:00, Tony Baldwin wrote:
> I have a little business card website up for my big brother's media
> consulting side-business at http://playomatic.myownsite.me.
> Now, at the moment, if I try to load it in Google-Chrome-Stable, I'm
> getting redirected to a yahoo! search for "create web",
> If I try to load it in the floss chromium, I get a spammy landing page,

This is probably a long shot ... is it a recent chrome/chromium? It
seems to work fine for me in jessie.

Just wondering if it sees a url that doesn't start with www, and ends
with a slightly unusual '.me', and tries to 'autocorrect'. But .me is a
country code TLD, not one of the new ones as I first thought, so it
shouldn't be that.

Richard



Re: url redirected in chrome/chromium, but working fine, according to ping/traceroute, lynx, w3m, iceweasel.

2016-10-08 Thread tomas
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Sat, Oct 08, 2016 at 11:35:21AM -0400, Tony Baldwin wrote:

[...]

> >Can you use the chrome developper tools to see what's going on ? (Press
> >the F12 key while chrome is open) Select the network tab, and type the
> >url in your address bar.
> >The network panel should show you what happens
> 
> That doesn't seem to tell me anything traceroute doesn't, except
> trqacerout doesn't get redirect to a Yahoo! search like chrome does,
> but nothing I see there seems ot clarify WHY or HOW it's getting
> redirected, it's just showing me that it IS being led though some
> circolocuitous route to where it should not.

A shot in the dark, but worth a try anyway: IPV4 vs IPV6?

But I'd rather suspect Chrome doing something weird to the URL before
resolving (or -- who knows! having its own built-in resolver).

Perhaps looking at the traffic with tcpdump/wireshark can give you
an idea.

Regards
- -- tomás
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.12 (GNU/Linux)

iEYEARECAAYFAlf5NeoACgkQBcgs9XrR2kZ+PQCeOsGFniEXtN/uNxh7xpHmc5jg
SG0AmgMz751oR58+BwBJEKN5RP60UsGK
=NsR2
-END PGP SIGNATURE-



Re: url redirected in chrome/chromium, but working fine, according to ping/traceroute, lynx, w3m, iceweasel.

2016-10-08 Thread Tony Baldwin



On 10/08/2016 11:28 AM, claude juif wrote:


2016-10-08 3:53 GMT+02:00 Anthony Baldwin >:



On 10/07/2016 06:42 PM, david...@freevolt.org
 wrote:

On Fri, 7 Oct 2016, Tony Baldwin wrote:

I have a little business card website up for my big
brother's media
consulting side-business at http://playomatic.myownsite.me.
Now, at the moment, if I try to load it in
Google-Chrome-Stable, I'm
getting redirected to a yahoo! search for "create web",
If I try to load it in the floss chromium, I get a spammy
landing page,
But in all of Iceweasel, lynx, w3m, elinks it loads fine,
and nothing
has changed on my server (no redirect added to my vhost by
an intruder
or any such thing), also neither ping nor traceroute seem to
indicate
anything untoward or fishy.
The only thing I haven't tried is Epiphany, Konqueror,
Safari, or IE.
Oddly, it seems to work fine in chrome on my android phone,
though.

How can I determine what's interfering with this page
loading in some
browsers, and not others? or what's redirecting my traffic,
and how I
can stop it or prevent future re-occurrence?


This problem sounds bizarre to me.

One less-than-obvious conceivable factor that occurs to me is that
some webmail interfaces (looking at you, gmx.com
) will point urls in
email text at creepy redirects (presumably so that your email
provider
can log what you read).


But I'm typing the url directly into the browser, and not clicking
on a link in an e-mail.
Also, when I sign out of chrome/chromium-sync, it works fine again.
so yeah, definitely something very odd going on.


For example, a link labeled

 http://playomatic.myownsite.me 

will point to

 
https://deref-gmx.com/mail/client/[Some-Alpha-Numeric-Code]/dereferrer/?redirectUrl=http%3A%2F%2Fplayomatic.myownsite.me




If one of those redirects happens to be broken, through no fault of
yours, then following such links in emails might result in
unexpected
behaviour not unlike what you are seeing.

A shot in the dark, for what its worth.



As soon as I type in the url, it goes to 
http://bridge.sf.admarketplace.net/bounce?click_id=1475940640200100010_width=1680_height=1050_width=624_height=860_top=5_left=33_iframe=0
whereas traceroute shows it going to my modem-> a local hub-> Comcast's 
DNS server in Boston, then to New York, then jumping to Frankfurt -> 
Munich, then the server I rent from Contabo which is in Munich, afaik.


Thanks,
Tony




--
http://tonybaldwin.me
all tony, all the time



Re: url redirected in chrome/chromium, but working fine, according to ping/traceroute, lynx, w3m, iceweasel.

2016-10-08 Thread Tony Baldwin



On 10/08/2016 11:28 AM, claude juif wrote:


2016-10-08 3:53 GMT+02:00 Anthony Baldwin >:



On 10/07/2016 06:42 PM, david...@freevolt.org
 wrote:

On Fri, 7 Oct 2016, Tony Baldwin wrote:

I have a little business card website up for my big
brother's media
consulting side-business at http://playomatic.myownsite.me.
Now, at the moment, if I try to load it in
Google-Chrome-Stable, I'm
getting redirected to a yahoo! search for "create web",
If I try to load it in the floss chromium, I get a spammy
landing page,
But in all of Iceweasel, lynx, w3m, elinks it loads fine,
and nothing
has changed on my server (no redirect added to my vhost by
an intruder
or any such thing), also neither ping nor traceroute seem to
indicate
anything untoward or fishy.
The only thing I haven't tried is Epiphany, Konqueror,
Safari, or IE.
Oddly, it seems to work fine in chrome on my android phone,
though.

How can I determine what's interfering with this page
loading in some
browsers, and not others? or what's redirecting my traffic,
and how I
can stop it or prevent future re-occurrence?


This problem sounds bizarre to me.

One less-than-obvious conceivable factor that occurs to me is that
some webmail interfaces (looking at you, gmx.com
) will point urls in
email text at creepy redirects (presumably so that your email
provider
can log what you read).


But I'm typing the url directly into the browser, and not clicking
on a link in an e-mail.
Also, when I sign out of chrome/chromium-sync, it works fine again.
so yeah, definitely something very odd going on.


For example, a link labeled

 http://playomatic.myownsite.me 

will point to

 
https://deref-gmx.com/mail/client/[Some-Alpha-Numeric-Code]/dereferrer/?redirectUrl=http%3A%2F%2Fplayomatic.myownsite.me




If one of those redirects happens to be broken, through no fault of
yours, then following such links in emails might result in
unexpected
behaviour not unlike what you are seeing.

A shot in the dark, for what its worth.



Can you use the chrome developper tools to see what's going on ? (Press
the F12 key while chrome is open) Select the network tab, and type the
url in your address bar.
The network panel should show you what happens


That doesn't seem to tell me anything traceroute doesn't, except 
trqacerout doesn't get redirect to a Yahoo! search like chrome does,
but nothing I see there seems ot clarify WHY or HOW it's getting 
redirected, it's just showing me that it IS being led though some 
circolocuitous route to where it should not.








--
http://www.baldwinlinguas.com
translations, localization,
multilingual web development
EN, ES, FR, PT




--
http://tonybaldwin.me
all tony, all the time



Re: url redirected in chrome/chromium, but working fine, according to ping/traceroute, lynx, w3m, iceweasel.

2016-10-08 Thread claude juif
2016-10-08 3:53 GMT+02:00 Anthony Baldwin :

>
>
> On 10/07/2016 06:42 PM, david...@freevolt.org wrote:
>
>> On Fri, 7 Oct 2016, Tony Baldwin wrote:
>>
>> I have a little business card website up for my big brother's media
>>> consulting side-business at http://playomatic.myownsite.me.
>>> Now, at the moment, if I try to load it in Google-Chrome-Stable, I'm
>>> getting redirected to a yahoo! search for "create web",
>>> If I try to load it in the floss chromium, I get a spammy landing page,
>>> But in all of Iceweasel, lynx, w3m, elinks it loads fine, and nothing
>>> has changed on my server (no redirect added to my vhost by an intruder
>>> or any such thing), also neither ping nor traceroute seem to indicate
>>> anything untoward or fishy.
>>> The only thing I haven't tried is Epiphany, Konqueror, Safari, or IE.
>>> Oddly, it seems to work fine in chrome on my android phone, though.
>>>
>>> How can I determine what's interfering with this page loading in some
>>> browsers, and not others? or what's redirecting my traffic, and how I
>>> can stop it or prevent future re-occurrence?
>>>
>>
>> This problem sounds bizarre to me.
>>
>> One less-than-obvious conceivable factor that occurs to me is that
>> some webmail interfaces (looking at you, gmx.com) will point urls in
>> email text at creepy redirects (presumably so that your email provider
>> can log what you read).
>>
>
> But I'm typing the url directly into the browser, and not clicking on a
> link in an e-mail.
> Also, when I sign out of chrome/chromium-sync, it works fine again. so
> yeah, definitely something very odd going on.
>
>>
>> For example, a link labeled
>>
>>  http://playomatic.myownsite.me
>>
>> will point to
>>
>>  https://deref-gmx.com/mail/client/[Some-Alpha-Numeric-Code]
>> /dereferrer/?redirectUrl=http%3A%2F%2Fplayomatic.myownsite.me
>> 
>>
>>
>> If one of those redirects happens to be broken, through no fault of
>> yours, then following such links in emails might result in unexpected
>> behaviour not unlike what you are seeing.
>>
>> A shot in the dark, for what its worth.
>>
>

Can you use the chrome developper tools to see what's going on ? (Press the
F12 key while chrome is open) Select the network tab, and type the url in
your address bar.
The network panel should show you what happens



>
>>
> --
> http://www.baldwinlinguas.com
> translations, localization,
> multilingual web development
> EN, ES, FR, PT
>
>


Re: url redirected in chrome/chromium, but working fine, according to ping/traceroute, lynx, w3m, iceweasel.

2016-10-07 Thread Anthony Baldwin



On 10/07/2016 06:42 PM, david...@freevolt.org wrote:

On Fri, 7 Oct 2016, Tony Baldwin wrote:


I have a little business card website up for my big brother's media
consulting side-business at http://playomatic.myownsite.me.
Now, at the moment, if I try to load it in Google-Chrome-Stable, I'm
getting redirected to a yahoo! search for "create web",
If I try to load it in the floss chromium, I get a spammy landing page,
But in all of Iceweasel, lynx, w3m, elinks it loads fine, and nothing
has changed on my server (no redirect added to my vhost by an intruder
or any such thing), also neither ping nor traceroute seem to indicate
anything untoward or fishy.
The only thing I haven't tried is Epiphany, Konqueror, Safari, or IE.
Oddly, it seems to work fine in chrome on my android phone, though.

How can I determine what's interfering with this page loading in some
browsers, and not others? or what's redirecting my traffic, and how I
can stop it or prevent future re-occurrence?


This problem sounds bizarre to me.

One less-than-obvious conceivable factor that occurs to me is that
some webmail interfaces (looking at you, gmx.com) will point urls in
email text at creepy redirects (presumably so that your email provider
can log what you read).


But I'm typing the url directly into the browser, and not clicking on a 
link in an e-mail.
Also, when I sign out of chrome/chromium-sync, it works fine again. so 
yeah, definitely something very odd going on.


For example, a link labeled

 http://playomatic.myownsite.me

will point to

 
https://deref-gmx.com/mail/client/[Some-Alpha-Numeric-Code]/dereferrer/?redirectUrl=http%3A%2F%2Fplayomatic.myownsite.me


If one of those redirects happens to be broken, through no fault of
yours, then following such links in emails might result in unexpected
behaviour not unlike what you are seeing.

A shot in the dark, for what its worth.



--
http://www.baldwinlinguas.com
translations, localization,
multilingual web development
EN, ES, FR, PT



Re: url redirected in chrome/chromium, but working fine, according to ping/traceroute, lynx, w3m, iceweasel.

2016-10-07 Thread davidson

On Fri, 7 Oct 2016, david...@freevolt.org wrote:


On Fri, 7 Oct 2016, Tony Baldwin wrote:

I have a little business card website up for my big brother's media 
consulting side-business at http://playomatic.myownsite.me.
Now, at the moment, if I try to load it in Google-Chrome-Stable, I'm 
getting redirected to a yahoo! search for "create web",

If I try to load it in the floss chromium, I get a spammy landing page,
But in all of Iceweasel, lynx, w3m, elinks it loads fine, and nothing has 
changed on my server (no redirect added to my vhost by an intruder or any 
such thing), also neither ping nor traceroute seem to indicate anything 
untoward or fishy.

The only thing I haven't tried is Epiphany, Konqueror, Safari, or IE.
Oddly, it seems to work fine in chrome on my android phone, though.

How can I determine what's interfering with this page loading in some 
browsers, and not others? or what's redirecting my traffic, and how I can 
stop it or prevent future re-occurrence?


This problem sounds bizarre to me.

One less-than-obvious conceivable factor that occurs to me is that
some webmail interfaces (looking at you, gmx.com) will point urls in
email text at creepy redirects (presumably so that your email provider
can log what you read).

For example, a link labeled

http://playomatic.myownsite.me

will point to

https://deref-gmx.com/mail/client/[Some-Alpha-Numeric-Code]/dereferrer/?redirectUrl=http%3A%2F%2Fplayomatic.myownsite.me

If one of those redirects happens to be broken, through no fault of
yours, then following such links in emails might result in unexpected
behaviour not unlike what you are seeing.

A shot in the dark, for what its worth.


My point here, which I may not have made clear, is that when you test
the site in each browser, make sure you are really requesting
http://playomatic.myownsite.me, not the redirect some email provider
may have replaced it with.



Re: url redirected in chrome/chromium, but working fine, according to ping/traceroute, lynx, w3m, iceweasel.

2016-10-07 Thread davidson

On Fri, 7 Oct 2016, Tony Baldwin wrote:

I have a little business card website up for my big brother's media 
consulting side-business at http://playomatic.myownsite.me.
Now, at the moment, if I try to load it in Google-Chrome-Stable, I'm getting 
redirected to a yahoo! search for "create web",

If I try to load it in the floss chromium, I get a spammy landing page,
But in all of Iceweasel, lynx, w3m, elinks it loads fine, and nothing has 
changed on my server (no redirect added to my vhost by an intruder or any 
such thing), also neither ping nor traceroute seem to indicate anything 
untoward or fishy.

The only thing I haven't tried is Epiphany, Konqueror, Safari, or IE.
Oddly, it seems to work fine in chrome on my android phone, though.

How can I determine what's interfering with this page loading in some 
browsers, and not others? or what's redirecting my traffic, and how I can 
stop it or prevent future re-occurrence?


This problem sounds bizarre to me.

One less-than-obvious conceivable factor that occurs to me is that
some webmail interfaces (looking at you, gmx.com) will point urls in
email text at creepy redirects (presumably so that your email provider
can log what you read).

For example, a link labeled

 http://playomatic.myownsite.me

will point to

 
https://deref-gmx.com/mail/client/[Some-Alpha-Numeric-Code]/dereferrer/?redirectUrl=http%3A%2F%2Fplayomatic.myownsite.me

If one of those redirects happens to be broken, through no fault of
yours, then following such links in emails might result in unexpected
behaviour not unlike what you are seeing.

A shot in the dark, for what its worth.



Re: url redirected in chrome/chromium, but working fine, according to ping/traceroute, lynx, w3m, iceweasel.

2016-10-07 Thread Anthony Baldwin



On 10/07/2016 02:32 PM, claude juif wrote:



2016-10-07 20:04 GMT+02:00 Anthony Baldwin >:

I can now also verify that the page loads fine n Dolphin browser on
my android device.

On 10/07/2016 02:00 PM, Tony Baldwin wrote:

I have a little business card website up for my big brother's media
consulting side-business at http://playomatic.myownsite.me.
Now, at the moment, if I try to load it in Google-Chrome-Stable, I'm
getting redirected to a yahoo! search for "create web",
If I try to load it in the floss chromium, I get a spammy
landing page,
But in all of Iceweasel, lynx, w3m, elinks it loads fine, and
nothing
has changed on my server (no redirect added to my vhost by an
intruder
or any such thing), also neither ping nor traceroute seem to
indicate
anything untoward or fishy.
The only thing I haven't tried is Epiphany, Konqueror, Safari,
or IE.
Oddly, it seems to work fine in chrome on my android phone, though.


Hi, it works well in my Chrome Browser.

May be you have some proxy between, or a misconfigured /etc/hosts entry.

Did you try to load it with all plugins disabled ?


Thanks,
I use no proxy/ies, neither at home, nor on the remote server.
My brother, who brought the matter to my attention was also using chrome
. disabling my extensions doesn't seem to make any difference.
There appears no mention of the url in any of my hosts files (neither at 
home, nor on the server), nor anything that would redirect the IP 
address, since I can load other sites on the same server (and the 
myownsite.me domain) without troubles.

What else can I do?




How can I determine what's interfering with this page loading in
some
browsers, and not others? or what's redirecting my traffic, and
how I
can stop it or prevent future re-occurrence?

tia
tony


--
http://www.baldwinlinguas.com
translations, localization,
multilingual web development
EN, ES, FR, PT




--
http://www.baldwinlinguas.com
translations, localization,
multilingual web development
EN, ES, FR, PT



Re: url redirected in chrome/chromium, but working fine, according to ping/traceroute, lynx, w3m, iceweasel.

2016-10-07 Thread claude juif
2016-10-07 20:04 GMT+02:00 Anthony Baldwin :

> I can now also verify that the page loads fine n Dolphin browser on my
> android device.
>
> On 10/07/2016 02:00 PM, Tony Baldwin wrote:
>
>> I have a little business card website up for my big brother's media
>> consulting side-business at http://playomatic.myownsite.me.
>> Now, at the moment, if I try to load it in Google-Chrome-Stable, I'm
>> getting redirected to a yahoo! search for "create web",
>> If I try to load it in the floss chromium, I get a spammy landing page,
>> But in all of Iceweasel, lynx, w3m, elinks it loads fine, and nothing
>> has changed on my server (no redirect added to my vhost by an intruder
>> or any such thing), also neither ping nor traceroute seem to indicate
>> anything untoward or fishy.
>> The only thing I haven't tried is Epiphany, Konqueror, Safari, or IE.
>> Oddly, it seems to work fine in chrome on my android phone, though.
>>
>
Hi, it works well in my Chrome Browser.

May be you have some proxy between, or a misconfigured /etc/hosts entry.

Did you try to load it with all plugins disabled ?


>> How can I determine what's interfering with this page loading in some
>> browsers, and not others? or what's redirecting my traffic, and how I
>> can stop it or prevent future re-occurrence?
>>
>> tia
>> tony
>>
>>
> --
> http://www.baldwinlinguas.com
> translations, localization,
> multilingual web development
> EN, ES, FR, PT
>
>


Re: url redirected in chrome/chromium, but working fine, according to ping/traceroute, lynx, w3m, iceweasel.

2016-10-07 Thread Anthony Baldwin
I can now also verify that the page loads fine n Dolphin browser on my 
android device.


On 10/07/2016 02:00 PM, Tony Baldwin wrote:

I have a little business card website up for my big brother's media
consulting side-business at http://playomatic.myownsite.me.
Now, at the moment, if I try to load it in Google-Chrome-Stable, I'm
getting redirected to a yahoo! search for "create web",
If I try to load it in the floss chromium, I get a spammy landing page,
But in all of Iceweasel, lynx, w3m, elinks it loads fine, and nothing
has changed on my server (no redirect added to my vhost by an intruder
or any such thing), also neither ping nor traceroute seem to indicate
anything untoward or fishy.
The only thing I haven't tried is Epiphany, Konqueror, Safari, or IE.
Oddly, it seems to work fine in chrome on my android phone, though.

How can I determine what's interfering with this page loading in some
browsers, and not others? or what's redirecting my traffic, and how I
can stop it or prevent future re-occurrence?

tia
tony



--
http://www.baldwinlinguas.com
translations, localization,
multilingual web development
EN, ES, FR, PT



url redirected in chrome/chromium, but working fine, according to ping/traceroute, lynx, w3m, iceweasel.

2016-10-07 Thread Tony Baldwin
I have a little business card website up for my big brother's media 
consulting side-business at http://playomatic.myownsite.me.
Now, at the moment, if I try to load it in Google-Chrome-Stable, I'm 
getting redirected to a yahoo! search for "create web",

If I try to load it in the floss chromium, I get a spammy landing page,
But in all of Iceweasel, lynx, w3m, elinks it loads fine, and nothing 
has changed on my server (no redirect added to my vhost by an intruder 
or any such thing), also neither ping nor traceroute seem to indicate 
anything untoward or fishy.

The only thing I haven't tried is Epiphany, Konqueror, Safari, or IE.
Oddly, it seems to work fine in chrome on my android phone, though.

How can I determine what's interfering with this page loading in some 
browsers, and not others? or what's redirecting my traffic, and how I 
can stop it or prevent future re-occurrence?


tia
tony

--
http://tonybaldwin.me
all tony, all the time