Web Hosting Vodahost    

Home Take The Royal Tour! Order Now Features Prices
Go Back   Web Hosting > Search Engines & Directories > Google

Notices

Google Discussions and articles relating to all that is Google, including AdSense, Adwords, API’s, Sitemaps, Google Analytics, Froogle, etc…

Reply
 
LinkBack Thread Tools
  #1  
Old 03-29-2008, 12:50 AM
Staff Sergeant
 
Join Date: Feb 2008
Posts: 46
Default Google dropped my website

Hi,
Just out of curiosity I was wondering, I published my first website when I only
had three pages done www.trygoogleadwords.com. I was surprised that Google spidered it within three days or so and put it within the first few pages
under several keywords. I meant to add more pages quickly but you know how that can go with work and all. Now about 2-3 weeks later the site isn't listed on Google at all?? Thanks for letting me pick your brain.
Jerryl
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #2  
Old 03-29-2008, 02:17 AM
Marincky's Avatar
Major General
 
Join Date: Apr 2006
Location: Worcester, UK
Posts: 2,217
Send a message via MSN to Marincky
Default Re: Google dropped my website

Google have NOT dropped you...
http://www.google.co.uk/search?q=htt...hl=en&filter=0
__________________
Ramsey

Web Design Help?
Creating affordable internet presence for your business.
Unmatched Customer Service

Want to get on Page one of Google? Talk to me!

Limo Hire
Wedding Services
Wedding Forum Wedding Links
Wedding Dress Comparison Site
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3  
Old 03-29-2008, 02:59 AM
jkadin's Avatar
Brigadier General
 
Join Date: Jan 2008
Location: woodbourne new york
Posts: 1,119
Send a message via Yahoo to jkadin
Default Re: Google dropped my website

Google is funny. I have had urls listed for a couple of weeks then dropped, then picked up again and dropped, and then again picked up. well now the site is up six months now and the past month my urls are listed. I believe when your knew they do this. And the pages that where like yoyos where anywhere from page one to page 5 so hang in there.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4  
Old 03-29-2008, 08:50 AM
Mook25's Avatar
Brigadier General
 
Join Date: Oct 2005
Location: UK
Posts: 1,434
Default Re: Google dropped my website

You need to keep your content fresh and updated to stay ranked at the top. Best way is to add RSS feeds to the page so that it is constantly updated without you having to do anything to it. Works like a charm for some of my web pages
__________________
www.ownyourowncasino.co.uk >> Own A Casino
www.bonuscashcow.com >> Free Casino Cash and More
www.webpackageking.net >> Brutally effective web packages.

Voda Picks >>
Prices| Tutorials | BV Download | FAQ | Your First Webpage
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5  
Old 03-29-2008, 05:44 PM
Staff Sergeant
 
Join Date: Feb 2008
Posts: 46
Default Re: Google dropped my website

Thanks for the feedback guys,
I should have said my position changed not that I was dropped. I thought
your position (what page you are on in the search results of a keyword)
would remain the same, but I realize this is not the case.
Anyway could you explain what a RSS feed is and how to utilize it please
Mook25 Thanks alot for all the help,
Jerryl
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #6  
Old 03-29-2008, 06:55 PM
Mook25's Avatar
Brigadier General
 
Join Date: Oct 2005
Location: UK
Posts: 1,434
Default Re: Google dropped my website

RSS is a format for syndicating news and the content of news-like sites, including major news sites like bbc news, news-oriented community sites like Slashdot, and personal weblogs. It's not just for news though as pretty much anything that can be broken down into discrete items can be syndicated via RSS

Add the below code to your page where you want the RSS feed to appear either by inputing directly via dreamweaver or something similar or if i remember rightly Bluevoda has an option to input PHP code but not 100% sure. Once this has been input don't forget to change the RSS feed to what ever you want by changing the link i've highlighted as red.

You can find a whole host of RSS feeds here
PHP Code:
<?php
$insideitem 
false;
$tag "";
$title "";
$description "";
$link "";
$locations = array('http://www.worldwidewords.org/rss/updates.xml');
srand((float) microtime() * 10000000); // seed the random gen 
$random_key array_rand($locations);
function 
startElement($parser$name$attrs) {
 global 
$insideitem$tag$title$description$link;
 if (
$insideitem) {
  
$tag $name;
 } elseif (
$name == "ITEM") {
  
$insideitem true;
 }
}
function 
endElement($parser$name) {
 global 
$insideitem$tag$title$description$link;
 if (
$name == "ITEM") {
  
printf("<dt><b><a href='%s' target=new>%s</a></b></dt>",
  
trim($link),htmlspecialchars(trim($title)));
  
printf("<dt>%s</dt><br><br>",htmlspecialchars(trim($description)));
  
$title "";
  
$description "";
  
$link "";
  
$insideitem false;
 }
}
function 
characterData($parser$data) {
 global 
$insideitem$tag$title$description$link;
 if (
$insideitem) {
 switch (
$tag) {
  case 
"TITLE":
  
$title .= $data;
  break;
  case 
"DESCRIPTION":
  
$description .= $data;
  break;
  case 
"LINK":
  
$link .= $data;
  break;
 }
 }
}
$xml_parser xml_parser_create();
xml_set_element_handler($xml_parser"startElement""endElement");
xml_set_character_data_handler($xml_parser"characterData");
$fp fopen($locations[$random_key], 'r')
 or die(
"Error reading RSS data.");
while (
$data fread($fp4096))
 
xml_parse($xml_parser$datafeof($fp))
  or die(
sprintf("XML error: %s at line %d",
   
xml_error_string(xml_get_error_code($xml_parser)),    
   
xml_get_current_line_number($xml_parser)));
fclose($fp);
xml_parser_free($xml_parser);
?>
__________________
www.ownyourowncasino.co.uk >> Own A Casino
www.bonuscashcow.com >> Free Casino Cash and More
www.webpackageking.net >> Brutally effective web packages.

Voda Picks >>
Prices| Tutorials | BV Download | FAQ | Your First Webpage
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #7  
Old 03-30-2008, 06:23 AM
Staff Sergeant
 
Join Date: Feb 2008
Posts: 46
Default Re: Google dropped my website

Hey,
Thanks for the info Mook25, do you have a website with a RSS feed working
that I could look at? Or suggest a few others? I'm just getting comfortable
with BlueVoda so the RSS feed may be beyond my abilities now, but this will be an ongoing learning experience so I'm looking forward to using it in the future.
Thanks again
jerryl
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #8  
Old 03-30-2008, 08:44 AM
LadyEye's Avatar
General & Forum Moderator
 
Join Date: Jun 2006
Location: Canada
Posts: 9,856
Send a message via MSN to LadyEye
Default Re: Google dropped my website

Quote:
Originally Posted by Mook25 View Post
You need to keep your content fresh and updated to stay ranked at the top.
hmmmm... does this mean the website that was built 8 years ago and has never ever changed a single thing on their website will be lost in rankings? I don't think so. But, certainly, if you have relevant, new content, related to your topic, by all means your website should be updated.
__________________
NEW - Dating Websites/Custom Features
FREE Blue Voda Website Design Tips
Blue Voda Designer|LadyEye/Designer
My Portfolio of Blue Voda Websites
********GENERAL LADYEYE********
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

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


All times are GMT +1. The time now is 08:46 PM.


Powered by vBulletin® Version 3.7.1
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC7
2007 VodaHost.com - All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54