Not showing Meta Description in Google!?

Status
Not open for further replies.

Mr.BorisManUtd

Active Member
882
2009
33
0
Hello.

I have some problem with my forum. I have Meta Description and Meta Keywords. 7 days before, Meta Description was working fine, but now it's not showing in google.
Only this can be seen:
[slide]http://pic.mk/images/untitl1301407897.[/slide]
Live:
Code:
http://www.google.com/search?sourceid=chrome&ie=UTF-8&q=fileserve+forum#sclient=psy&hl=en&source=hp&q=fileserve+heaven&aq=f&aqi=&aql=&oq=&pbx=1&bav=on.2,or.r_gc.r_pw.&fp=f83efc677861d9f9
First result.

Can anyone please help me to fix this?

Thanks :)
 
14 comments
What was the last change you have done after which this has happened?

Edit: I believe the problem is due to this tag. <_<

Btw, why u added this tag?

Code:
<meta http-equiv="Expires" content="-1" />
Using this tag sets an immediate expiration on the file. Thus it dies the moment is it born.

Try removing it or replacing with:
Code:
<meta http-equiv="Expires" content="0" />
:|
 
Last edited:
Should I delete this tag:

Btw, I don't remember that I have added this tag, also I think this happed after some theme code changes.
I just edited my above post.
Try that change or you may delete it too.

Try removing it or replacing with:
Code:
<meta http-equiv="Expires" content="0" />
:|
 
Go to Styles & Templates > Style Manager > Edit Templates

Edit the template named "FORUMHOME"

There would be something like this:
[slide]http://screensnapr.com/e/SboADK.png[/slide]

Lol!I you already did it.
Anyway, i just checked, its by default in nulled vb by DGT <_<
 
these are the no-caching headers
Code:
    <!-- no cache headers -->
    <meta http-equiv="Pragma" content="no-cache" />
    <meta http-equiv="Expires" content="-1" />
    <meta http-equiv="Cache-Control" content="no-cache" />
    <!-- end no cache headers -->
They are set like that in every vBulletin forum(you can check that).Their role is to make sure that every time the web page is visited it
loads from the server and not from the cache of the browser(see the comment saying (no cache header))
anyway I think you are being penalized from Google.Check your Google webmaster tools account to see if you have some new messages or something like that.
 
ok in your robot.txt remove this
Code:
User-Agent: *
Disallow: /
This is preventing all search engine from crawling your site.just remove that first line off your robot.txt.
 
Status
Not open for further replies.
Back
Top