Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

another Chrome thing

0 views
Skip to first unread message

Dale

unread,
Aug 11, 2022, 5:16:30 PM8/11/22
to
Hi,

Does this link ...

<p><a href="https://www.wondrium.com/">Wondrium</a></p>

work for you in Chrome Browser?

I get an error.

That link is in the "Links" menu option on my website ...

https://www.dalekelly.org/links.html

Works fine in Edge Browser.

When I try Internet Explorer I get a page saying the website no longer
supports use in Internet Explorer.




--
Mystery? -> https://www.dalekelly.org/

Ray_Net

unread,
Aug 11, 2022, 7:24:29 PM8/11/22
to
In article <td3rjb$291vk$1...@dont-email.me>, da...@dalekelly.org says...
>
> Hi,
>
> Does this link ...
>
> <p><a href="https://www.wondrium.com/">Wondrium</a></p>
>
> work for you in Chrome Browser?
>
> I get an error.
>
> That link is in the "Links" menu option on my website ...
>
> https://www.dalekelly.org/links.html
>
> Works fine in Edge Browser.
>
> When I try Internet Explorer I get a page saying the website no longer
> supports use in Internet Explorer.

Works perfectly with Seamonkey

Dale

unread,
Aug 11, 2022, 7:58:49 PM8/11/22
to
Thank YOU !!!!

That may imply it works with Firefox.

Arno Welzel

unread,
Aug 12, 2022, 9:09:16 AM8/12/22
to
Dale, 2022-08-11 23:16:

> Hi,
>
> Does this link ...
>
> <p><a href="https://www.wondrium.com/">Wondrium</a></p>
>
> work for you in Chrome Browser?

Yes. Windows 10 Pro x64, Chrome 104.0.5112.81


--
Arno Welzel
https://arnowelzel.de

JJ

unread,
Aug 12, 2022, 10:44:42 AM8/12/22
to
On Thu, 11 Aug 2022 17:16:30 -0400, Dale wrote:
> Hi,
>
> Does this link ...
>
> <p><a href="https://www.wondrium.com/">Wondrium</a></p>
>
> work for you in Chrome Browser?
>
> I get an error.
>
> That link is in the "Links" menu option on my website ...
>
> https://www.dalekelly.org/links.html
>
> Works fine in Edge Browser.
>
> When I try Internet Explorer I get a page saying the website no longer
> supports use in Internet Explorer.

That is a message coming from the website. Websites, mostly the "modern"
ones, tend to behave differently based on users' web browser. This also mean
that, websites can refuse to serve content for web browsers they don't
support.

Dale

unread,
Aug 12, 2022, 12:51:46 PM8/12/22
to
On 8/12/2022 9:09 AM, Arno Welzel wrote:
> Dale, 2022-08-11 23:16:
>
>> Hi,
>>
>> Does this link ...
>>
>> <p><a href="https://www.wondrium.com/">Wondrium</a></p>
>>
>> work for you in Chrome Browser?
>
> Yes. Windows 10 Pro x64, Chrome 104.0.5112.81
>
>


a webpage link or just a link?

Dale

unread,
Aug 13, 2022, 11:32:05 AM8/13/22
to
On 8/12/2022 12:51 PM, Dale wrote:
> On 8/12/2022 9:09 AM, Arno Welzel wrote:
>> Dale, 2022-08-11 23:16:
>>
>>> Hi,
>>>
>>> Does this link ...
>>>
>>> <p><a href="https://www.wondrium.com/">Wondrium</a></p>
>>>
>>> work for you in Chrome Browser?
>>
>> Yes. Windows 10 Pro x64, Chrome 104.0.5112.81
>>
>>
>
>
> a webpage link  or just a link?
>


if I put this link ...

https://www.wondrium.com/

... in the Chrome browser address bar it works.

If I press on the "Wondrium" link on this page ...

https://www.dalekelly.org/links.html

... I get an error.

Here is the code to the "Wondrium" link on that page ...

<p><a href="https://www.wondrium.com/">Wondrium</a></p>

Dale

unread,
Aug 13, 2022, 11:40:55 AM8/13/22
to
Interestingly enough "Wondrium" used to be called "The Great Courses
Plus" and there is no issue with a similar link on the page to "The
Great Courses"

https://www.dalekelly.org/links.html

Jonathan N. Little

unread,
Aug 25, 2022, 11:49:33 AM8/25/22
to
Dale wrote:
> Hi,
>
> Does this link ...
>
> <p><a href="https://www.wondrium.com/">Wondrium</a></p>
>
> work for you in Chrome Browser?
>
> I get an error.
>
> That link is in the "Links" menu option on my website ...
>
> https://www.dalekelly.org/links.html
>
> Works fine in Edge Browser.
>
> When I try Internet Explorer I get a page saying the website no longer
> supports use in Internet Explorer.
>
>
>
>

Works in Brave as well another Chrome based browser. I don't have and
answer for you but this is what I found. In Chrome if you use the
developer tools when you traverse from your site's link this GET error
occurs:

<log>
GET
https://www.wondrium.com/lp/t5/nonlog-home?adobe_mc_sdid=SDID%3D49B55DDA3B13E721-3AD7E53B88534B85%7CMCORGID%3D5C26123F5245AF160A490D45%40AdobeOrg%7CTS%3D1661440200&adobe_mc_ref=https%3A%2F%2Fwww.dalekelly.org%2F
403 (Forbidden)
</log>

Which reverse to some JavaScript on the Wondrium home page:

<code>
var utag_data = {
page_name: "Stream Entertaining Nonfiction Learning",
page_type: "cms-nonlog-home",
product_id: "",
product_sku: "",
collection: "",
format: "",
blacklist: "",
restriction: "",
partner: "",
instructor_title: "",
wondrium_marketing_subject: "",
product_subject: [],
country_id: "US|ROW"
};

require(['jquery'], function ($) {
$.get('/tealium/ajax/utagdata', function(data){
$.extend(utag_data, data);
}).always(function(){
(function(a,b,c,d){

a='//tags.tiqcdn.com/utag/teachingcompany/tgc-plus/prod/utag.js';

b=document;c='script';d=b.createElement(c);d.src=a;d.type='text/java'+c;d.async=true;

a=b.getElementsByTagName(c)[0];a.parentNode.insertBefore(d,a);
})();
});
});
</code>

Which later is referenced in some code with GET request:

<code>
<script type="text/x-magento-init">
{
"body": {
"pageCache":
{"url":"https:\/\/www.wondrium.com\/page_cache\/block\/render\/","handles":["default","cms_index_index","cms_page_view","cms_index_index_id_nonlog-home"],"originalRequest":{"route":"cms","controller":"index","action":"index","uri":"\/"},"versionCookieName":"private_content_version"}
}
}
</script>
</code>

Which references "magento" which is some Adobe commerce whatever. Since
the GET error references both "adobe" and your site as a referring URL,
probably it has some special issue with Google and Adobe...

The same error does not occur with Chrome-based browsers like Edge and
Brave...

--
Take care,

Jonathan
-------------------
LITTLE WORKS STUDIO
http://www.LittleWorksStudio.com

Dale

unread,
Oct 21, 2022, 6:00:31 PM10/21/22
to
On 8/11/2022 5:16 PM, Dale wrote:
> Hi,
>
> Does this link ...
>
> <p><a href="https://www.wondrium.com/">Wondrium</a></p>
>
> work for you in Chrome Browser?
>
> I get an error.
>
> That link is in the "Links" menu option on my website ...
>
> https://www.dalekelly.org/links.html
>
> Works fine in Edge Browser.
>
> When I try Internet Explorer I get a page saying the website no longer
> supports use in Internet Explorer.
>
>
>
>


This works now!

Nothing changed ...

Dale

unread,
Jan 30, 2023, 9:21:16 PM1/30/23
to
forgot to say THANK YOU for this !!!!
0 new messages