The MASM Forum Archive 2004 to 2012

Miscellaneous Forums => The Orphanage => Topic started by: Magnum on March 13, 2011, 01:49:53 PM

Title: Tired of google redirects
Post by: Magnum on March 13, 2011, 01:49:53 PM
I have scanned and found no virus or malware.

I am sick of these Google redirects.

FF has a plugin that works but I haven't found anything similar for Opera.

Title: Re: Tired of google redirects
Post by: dedndave on March 13, 2011, 02:14:42 PM
QuoteI am sick of these Google redirects

not sure what you are refering to
if you are talking about the normal google "prefered placement" stuff - just don't click on those   :P

but, if you are talking about the virus that redirects you to something called "gogoogle" - that is a different beast
Title: Re: Tired of google redirects
Post by: Magnum on March 13, 2011, 04:34:00 PM
Go to alt.comp.freeware and start clicking on some of the links.

The problem occurs on both FF and Opera
Title: Re: Tired of google redirects
Post by: jj2007 on March 13, 2011, 04:47:53 PM
FF: Tools/Options/Advanced/General/Warn me...

Your redirection "problem" is an important feature. If a site uses it, it means that you don't get content if you switch redirection off. The option to get a warning is useful if you hang around on certain sites that have nothing to do with programming :wink
Title: Re: Tired of google redirects
Post by: Magnum on March 13, 2011, 04:53:46 PM
It only happens when I am reading Google newsgroups.

Title: Re: Tired of google redirects
Post by: dedndave on March 13, 2011, 05:37:21 PM
specifically which link did you click on to get that redirect ?
it looks like it may be the end target for the discussion - i.e. a valid redirection
part of the html equation is to allow hyperlinks in pages   :P

at any rate - if that target is a real problem - simply create an AdBlock filter and block it
Title: Re: Tired of google redirects
Post by: Magnum on March 13, 2011, 06:41:05 PM
It's multiple links. I will see if happens with safari. Someone gave me a fist generation iPod
Title: Re: Tired of google redirects
Post by: Gunner on March 13, 2011, 07:44:14 PM
Well, if you are tired of the redirects, then use a newsreader to read newsgroups!  That is what they are for...  What google is doing is for your own protection.... so nobody can hide a redirect in a link to point you to a bad place... this way you can see the real url that you are going to...  Does the same on the Android browser
Title: Re: Tired of google redirects
Post by: Magnum on March 13, 2011, 08:59:32 PM
How would you know it's a bad url ?

It could be named anything.

Title: Re: Tired of google redirects
Post by: Gunner on March 13, 2011, 09:07:49 PM
Your missing the point.... Click to go to Google! (http://www.yahoo.com)

Where did that take you too? that is bbc code but just as easy with html code
Title: Re: Tired of google redirects
Post by: drizz on March 13, 2011, 09:46:06 PM
You want direct links instead of redirects? Here's how:
//<?php // this line is for syntax highlighting on this forum only

if( location.hostname.indexOf('groups.google.') != -&& window.opera)
{
window.opera.addEventListener('AfterEvent.load',GoogleGroupsLoaded,false);

function GoogleGroupsLoaded(e)
{
var hrefs document.links;
const query_url "http://www.google.com/url?sa=D&q=";

for (var 0hrefs.lengthi++)
{
var el hrefs[i];
if (el.href.indexOf(query_url)!=-1)
{
el.href el.href.replace(query_url,"");
}
}
}

}
Save this as "googlegroups.js" in you user javascript folder (create one and set it in "Settings > Preferences > Advanced > Content > JavaScript"  if it doesn't exist)
Title: Re: Tired of google redirects
Post by: Magnum on March 13, 2011, 11:57:04 PM
Thanks a lot drizz, works like a champ.  :bg