iEntry 10th Anniversary Forum Rules Search
WebProWorld
Register FAQ Calendar Mark Forums Read
Search Engine Optimization Forum SEO is much easier with help from peers and experts! The WebProWorld SEO forum is for the discussion and exploration of various search engine optimization topics. Any non (engine) specific SEO or SEM topics should go here.

Share Thread: & Tags

Share Thread:

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 11-20-2008, 08:17 AM
chandrika's Avatar
WebProWorld Veteran
 
Join Date: Oct 2005
Location: Cambridge, UK
Posts: 371
chandrika RepRank 4chandrika RepRank 4chandrika RepRank 4
Default odd search results

I am seeing a strange search result in google

findallsorts site:tohid.jamroll.net - Google Search

findallsorts is my site, but there is this site tohid jamroll, that has some cgi script that seems to show my pages. Actually it is not just my site, it displays many other sites this way and I just wondered what it is about and whether it will affect my seo.

I first spotted it in copyscape, so wondered if them using this script would be a dupe content problem for my site?
__________________
2009 Hairstyles - Pictures of 2009 hairstyles and a virtual hairstyler demo.
Price Comparison Site - Compare prices of well known brands and products.
Reply With Quote
  #2 (permalink)  
Old 11-20-2008, 10:22 AM
wige's Avatar
Moderator
WebProWorld Moderator
 
Join Date: Jun 2006
Location: United States
Posts: 2,629
wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9
Default Re: odd search results

They are a proxy service. This could cause you to have a duplicate content issue. I know of a method that will break their display of your content, however, I am trying to figure out the best implementation that will benefit your site...

First, to make sure this would work in the first place, is your site on Apache, and are you able to edit your .htaccess file, and create custom error documents? Also, do you have PHP?
__________________
The best way to learn anything, is to question everything.
Reply With Quote
  #3 (permalink)  
Old 11-20-2008, 03:58 PM
dozzn's Avatar
WebProWorld Member
 
Join Date: Oct 2008
Location: Danville Va
Posts: 47
dozzn RepRank 1
Default Re: odd search results

Hey! ,
I would like to add a little comment to the question. ./ comment...

The good new is... every time I search on google I see 'odd search results' ahaha.


Have you submitted your site to any free directories or ezines.
One time I had a website and I submitted it this free ezine site.... a week later my site could be found on google 30 times in a row but when you clicked on the result it would take me some bogus page that had nothing to do with the website I submitted ( and I couldn't find my site there either). I don't even have that website anymore but I am still upset about that ahahah!
Reply With Quote
  #4 (permalink)  
Old 11-20-2008, 04:34 PM
chandrika's Avatar
WebProWorld Veteran
 
Join Date: Oct 2005
Location: Cambridge, UK
Posts: 371
chandrika RepRank 4chandrika RepRank 4chandrika RepRank 4
Default Re: odd search results

Quote:
Originally Posted by wige View Post
They are a proxy service. This could cause you to have a duplicate content issue. I know of a method that will break their display of your content, however, I am trying to figure out the best implementation that will benefit your site...

First, to make sure this would work in the first place, is your site on Apache, and are you able to edit your .htaccess file, and create custom error documents? Also, do you have PHP?
Hi, yes it is on a dedicated apache server with php and I can edit the htaccess and create custom error pages so I am very interested to know of your method to break their display.

Thanks
__________________
2009 Hairstyles - Pictures of 2009 hairstyles and a virtual hairstyler demo.
Price Comparison Site - Compare prices of well known brands and products.
Reply With Quote
  #5 (permalink)  
Old 11-20-2008, 05:53 PM
chandrika's Avatar
WebProWorld Veteran
 
Join Date: Oct 2005
Location: Cambridge, UK
Posts: 371
chandrika RepRank 4chandrika RepRank 4chandrika RepRank 4
Default Re: odd search results

Quote:
Originally Posted by dozzn View Post
Hey! ,
I would like to add a little comment to the question. ./ comment...

The good new is... every time I search on google I see 'odd search results' ahaha.


Have you submitted your site to any free directories or ezines.
One time I had a website and I submitted it this free ezine site.... a week later my site could be found on google 30 times in a row but when you clicked on the result it would take me some bogus page that had nothing to do with the website I submitted ( and I couldn't find my site there either). I don't even have that website anymore but I am still upset about that ahahah!
I have yes, my sitemaps get scraped for this kind of thing quite alot. This one was somewhat unusual as it was actually displaying my content under their url, as opposed to redirecting to some other page. Wige says it is a proxy service, I had not come across this before.
__________________
2009 Hairstyles - Pictures of 2009 hairstyles and a virtual hairstyler demo.
Price Comparison Site - Compare prices of well known brands and products.
Reply With Quote
  #6 (permalink)  
Old 11-20-2008, 06:28 PM
wige's Avatar
Moderator
WebProWorld Moderator
 
Join Date: Jun 2006
Location: United States
Posts: 2,629
wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9
Default Re: odd search results

Removing your site from the proxy duplicators will require a few steps, and may take some time.

The first step is to create a new page on your site that only shows the user agent of the visitor's browser. Use the proxy web site to access that page, and note what the user agent is. In most cases, it will not be the same as a regular browser user agent. Lets say the user agent is "bad proxy 2.0"

Next, you need to create a custom error page. The proxy server will change any links on your site to keep the user in the proxy system, so any link you put in the page would not work. The page should simply contain a message that the page is being accessed with an unauthorized proxy, and please visit the site directly at www.domain.tld. This page should be located in a subdirectory of the site root, so that it can be made accessible even after everything else is blocked.

Next, since you have a dedicated server, open up your server configuration, and add the following line:
Code:
BrowserMatch "bad proxy 2" bad_browser
This should be added right before the virtual hosts section.

Finally, add the following to your .htaccess file:
Code:
<Directory />
Order Allow,Deny
Deny from env=bad_browser
Allow from All
</Directory>
<Directory /errordocs/>
Order Deny,Allow
Allow from All
</Directory>
The first directory node needs to point to the web root, and the second directory node needs to point to the directory wherein your error document is located. This will ensure that the proxy system can only see the error messages. Also, the error document you created needs to be specified for 403 (access denied) errors.

Note, you can expand on this a bit further by adding the user agents of spambots after the BrowserMatch directive in the main configuration I mentioned, like this:
Code:
BrowserMatch "spambot" bad_browser
This will cut down massively on your bandwidth, block many spambots once you identify them, and cut down on proxy duplication as you find it.

Note, if the proxy system does not use a distinguished user agent, there is a slightly different approach to try. Let me know how this works though.

PS: This will take a while to actually take effect, since the proxy system needs time to see the change and start removing your pages. Your URLs will still show up, but you should not have an issue with new pages being added, or any risk of duplicate content penalties once the changes propagate.
__________________
The best way to learn anything, is to question everything.

Last edited by wige; 11-20-2008 at 06:31 PM.
Reply With Quote
  #7 (permalink)  
Old 11-20-2008, 07:19 PM
chandrika's Avatar
WebProWorld Veteran
 
Join Date: Oct 2005
Location: Cambridge, UK
Posts: 371
chandrika RepRank 4chandrika RepRank 4chandrika RepRank 4
Default Re: odd search results

Thanks that is great I am going to try and implement that as soon as possible.

It is very timely advice, as a few weeks back I had a problem with the way I was trying to identify and stop bad bots, too many redirects meant it somehow stopped cron working, so i needed to do something else.

My server actually went down this afternoon, first time in ages that has happened, overloads on sql and was thinking that has been caused because since removing the old code i had to avoid too many bad bots, that they were again accessing the site making too many requests. So thanks and I will let you know the results of implementing this after some time.
__________________
2009 Hairstyles - Pictures of 2009 hairstyles and a virtual hairstyler demo.
Price Comparison Site - Compare prices of well known brands and products.
Reply With Quote
  #8 (permalink)  
Old 11-21-2008, 12:49 PM
dozzn's Avatar
WebProWorld Member
 
Join Date: Oct 2008
Location: Danville Va
Posts: 47
dozzn RepRank 1
Default Re: odd search results

Quote:
Originally Posted by chandrika View Post
Thanks that is great I am going to try and implement that as soon as possible.

It is very timely advice, as a few weeks back I had a problem with the way I was trying to identify and stop bad bots, too many redirects meant it somehow stopped cron working, so i needed to do something else.

My server actually went down this afternoon, first time in ages that has happened, overloads on sql and was thinking that has been caused because since removing the old code i had to avoid too many bad bots, that they were again accessing the site making too many requests. So thanks and I will let you know the results of implementing this after some time.
I was thinking posting about this earlier...
if they are using frames to display your website maybe you could add a 'break out of frames' coding...
Reply With Quote
  #9 (permalink)  
Old 11-22-2008, 09:07 AM
chandrika's Avatar
WebProWorld Veteran
 
Join Date: Oct 2005
Location: Cambridge, UK
Posts: 371
chandrika RepRank 4chandrika RepRank 4chandrika RepRank 4
Default Re: odd search results

Quote:
Originally Posted by wige View Post
Note, if the proxy system does not use a distinguished user agent, there is a slightly different approach to try. Let me know how this works though.
The proxy did not use a distinguished user agent. I was wondering what your other method was. In the meantime I checked the ip address that showed from the proxy which was jamroll.nets ip, and so I have blocked that ip from the server completely.

I am still going to implement what you said above.
__________________
2009 Hairstyles - Pictures of 2009 hairstyles and a virtual hairstyler demo.
Price Comparison Site - Compare prices of well known brands and products.
Reply With Quote
  #10 (permalink)  
Old 11-22-2008, 06:14 PM
WebProWorld New Member
 
Join Date: Sep 2008
Posts: 8
admonharr RepRank 0
Default Re: odd search results

Although very advance thread but it really helps to read expert views and even expert level questions cheers guys
Reply With Quote
  #11 (permalink)  
Old 11-24-2008, 12:02 PM
wige's Avatar
Moderator
WebProWorld Moderator
 
Join Date: Jun 2006
Location: United States
Posts: 2,629
wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9wige RepRank 9
Default Re: odd search results

If the proxy mimics a normal browser, you would need to block all IP addresses that they crawl from. You should be able to determine the range of IP addresses by visiting several sites that display the visitor's IP address, and putting those URLs into the proxy. You can block these IP addresses using the following line (added to the same place as the BrowserMatch directives above):
Code:
SetEnvIf Remote_Addr "^1\.2\.3\." bad_browser
This example will block every IP address starting with 1.2.3.x.
__________________
The best way to learn anything, is to question everything.
Reply With Quote
  #12 (permalink)  
Old 11-24-2008, 09:59 PM
full house's Avatar
WebProWorld Veteran
 
Join Date: Sep 2007
Posts: 524
full house RepRank 2
Default Re: odd search results

is that part of algorithm?
Reply With Quote
  #13 (permalink)  
Old 01-26-2009, 12:58 AM
seosean's Avatar
WebProWorld Member
 
Join Date: Jan 2009
Posts: 71
seosean RepRank 0
Default Re: odd search results

Wow, there is some great content on here about removing your site from a proxy, thanks wige! I've actually been looking around for some content about this, not that I have this issue going on with my sites but just for future reference. Thanks again.
__________________
Providing SEO services and business website design.
Reply With Quote
  #14 (permalink)  
Old 01-26-2009, 03:50 AM
WebProWorld New Member
 
Join Date: Jan 2009
Posts: 22
ronwits RepRank 0
Default Re: odd search results

Wee, I need to check our site also. Sometimes, I am experiencing the same issue
Reply With Quote
Reply

  WebProWorld > Search Engines > Search Engine Optimization Forum

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Google's New Search Bar in the Search Results morestar Google Discussion Forum 5 04-11-2008 01:48 PM
Omitted results in Google Search Results scot184 Google Discussion Forum 3 04-10-2008 11:03 AM
Do any Search Engines give daily results for search terms? nipplecharms1 Google Discussion Forum 20 03-29-2007 03:20 PM
How to get search results guymal Search Engine Optimization Forum 0 12-23-2004 03:29 AM
??? Search results Intensity Search Engine Optimization Forum 1 10-11-2004 05:55 PM


All times are GMT -4. The time now is 10:50 PM.



Search Engine Optimization by vBSEO 3.3.0