Log in

View Full Version : Annoying Problem



neo_philiac
07-06-2007, 04:20 PM
ok I have a very annoying problem. I have this page uploaded on the server and i am trying to search it with google but for some reason it wont come up in google no matter what i type. HELP!!!! I have tried robots but still wont work. I am not trying to search in the page. I want ppl to find my page with google when they type - say "nrm08". Nothing shows up when I type nrm08 on google.

Here is the code:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>NRM08 - The 7th International Symposium on Functional Neuroreceptor Mapping of the Living Brain </title>
<meta name="author" content="Shafiq Abedin sha33@pitt.edu">
<meta name="copyright" content="University of Pittsburgh PET Center">
<meta name="description" content="NRM08 The 7th International Symposium on Functional Neuroreceptor Mapping of the Living Brain">
<meta name="keywords" content="brain research pet imaging positron emission tomography receptor neuro nrm08">

<style type="text/css">
<!--
body {
background-color: #000000;
}
-->
</style>
</head>

<body>

<table width="100%" height="100%" border="0">
<tr align="center" valign="middle">
<td> <div align="center">

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="780" height="450" align="absmiddle">
<param name="movie" value="PET_pitt.swf">
<param name="quality" value="high">
<embed src="PET_pitt.swf" width="780" height="450" align="absmiddle" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>
</object>
</div></td>
</body>
</html>

Twey
07-06-2007, 05:09 PM
That's probably because it has no content.
<style type="text/css">
<!--
body {
background-color: #000000;
}
-->
</style>If you were really serving XHTML, that whole style block would be ignored.

Veronica
07-07-2007, 01:27 AM
Google doesn't consider keywords and description when it indexes pages. It looks for content within the body section. If you're using Flash, there are some alternatives suggested here: http://www.google.com/support/webmasters/bin/answer.py?answer=35267
Don't try things like hidden text, though, as that will get you bounced from Google.

techno_race
07-08-2007, 02:10 AM
Google doesn't automatically index it until you...tell it to.
Google does index pages with no content, as long as the code isn't:


<!DOCTYPE>
<html>
<head>
</head>
<body>
</body>
</html>

:p ha

djr33
07-08-2007, 03:04 AM
I believe it would index that, but just not include it in the searches, since there is no content.
It also is not valid html. You need, for example, the title.