vBulletin SEO Forums

SEO

vBulletin Search Engine Optimization

Buy vBSEO Now! HACKER SAFE certified sites prevent over 99.9% of hacker crime.
ne nw
vBSEO Total Support Team Launches DeskPro New vBSEO Discount Level for Network Builders vBSEO 3.2.0 GOLD Has Landed Success with vBSEO = 600ore Web Visitors + $1400 in a Day! Crawlability Inc. Files for SEO Technology Patent
se sw

Submitting a sitemap problem

This is a discussion on Submitting a sitemap problem within the Troubleshooting forums, part of the vBSEO Google/Yahoo Sitemap category; I successfully generated my sitemap and am now attempting to submit it to google. I provided them the following link ...

Go Back   vBulletin SEO Forums > vBSEO Google/Yahoo Sitemap > Troubleshooting

Enhancing 80 million pages.

Register FAQ Members List Social Groups Calendar Search Today's Posts Mark Forums Read
  #1  
Old 09-25-2006, 07:03 PM
Member
 
Real Name: Joey
Join Date: Sep 2006
Posts: 31
Submitting a sitemap problem

I successfully generated my sitemap and am now attempting to submit it to google. I provided them the following link http://domainname.com/forum/sitemap_index.xml.gz

It detected my sitemap and then a few minutes later returned some errors about certain addresses weren't allowed. These particular address were ones that I added to to the extra-urls.txt. They are addresses of the content on my main site, not within the /forum folder.

How can I fix this so they all get submitted successfully?

Thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #2  
Old 09-25-2006, 07:19 PM
Oleg Ignatiuk's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Oleg Ignatiuk
Join Date: Jun 2005
Location: Belarus
Posts: 21,923
Hello Joey,

according to google sitemap protocol you can only add the URLs that reside on the same level as your sitemap or below, i.e. they should be starting with http://domainname.com/forum/ (http://domainname.com/page.html is not allowed in this case).
__________________
Oleg Ignatiuk / Crawlability Inc.
Support Team Launches New DeskPro Powered Tool Enhanced Support at Your Service

vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #3  
Old 09-25-2006, 08:43 PM
Member
 
Real Name: Joey
Join Date: Sep 2006
Posts: 31
OK, having another problem. I regenerated my site map and went to the URL of the XML file. The index file is displayed but it's showing that my sitemap files are in a location that does not exist.
Code:
<loc>http://www.mydomain.com/forum/sitemap_1.xml.gz</loc> 
 <lastmod>2006-09-25T16:08:59+00:00</lastmod> 

 </sitemap> 
When I goto http://www.mydomain.com/forum/sitemap_1.xml.gz that file does not exist there. It's in the /forum/vbseo_sitemap/data folder. I know for a fact, google wont be able to download these since they dont exist.

What am I doing wrong here?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #4  
Old 09-25-2006, 09:00 PM
Oleg Ignatiuk's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Oleg Ignatiuk
Join Date: Jun 2005
Location: Belarus
Posts: 21,923
Similar to sitemap_index, sitemap_X.xml.gz files are stored in vbseo_sitemap/data/ folder, but can still be accessed via forums root as long as you have mod_rewrite rules in .htaccess file (default vBSEO's .htaccess already has these rules).
__________________
Oleg Ignatiuk / Crawlability Inc.
Support Team Launches New DeskPro Powered Tool Enhanced Support at Your Service

vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #5  
Old 09-25-2006, 09:07 PM
Member
 
Real Name: Joey
Join Date: Sep 2006
Posts: 31
If that was the case, I should then be able to browse to http://www.mydomain.com/forum/sitemap_1.xml.gz and have it pull up my file correct? When I go there, the page cannot be found.

Here is my entire /forum/.htaccess file contents.


# Comment the following line (add '#' at the beginning)
# to disable mod_rewrite functions.
# Please note: you still need to disable the hack in
# the vBSEO control panel to stop url rewrites.
RewriteEngine On
# Some servers require the Rewritebase directive to be
# enabled (remove '#' at the beginning to activate)
# Please note: when enabled, you must include the path
# to your root vB folder (i.e. RewriteBase /forums)
#RewriteBase /
#RewriteCond %{HTTP_HOST} !^www\.yourdomain\.com
#RewriteRule (.*) http://www.yourdomain.com/forums/$1 [L,R=301]
RewriteRule ^((urllist|sitemap).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
RewriteCond %{REQUEST_FILENAME} -f
RewriteCond %{REQUEST_FILENAME} (admincp|modcp|clientscript|cpstyles|images)/
RewriteRule ^(.*)$ $1 [L]
RewriteCond %{REQUEST_FILENAME}index\.php -f
RewriteRule ^(.*)$ $1index.php [L]
RewriteCond %{QUERY_STRING} !vbseourl=
RewriteCond %{REQUEST_FILENAME} !chat
RewriteRule ^(.*\.php)$ vbseo.php?vbseourl=$1&%{QUERY_STRING} [L]
RewriteRule ^$ vbseo.php?vbseourl=index.php [L]
RewriteRule ^(archive/.*)$ vbseo.php?vbseourl=$1&%{QUERY_STRING} [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.+)$ vbseo.php?vbseourl=$1&%{QUERY_STRING} [L]


What am I doing wrong here?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #6  
Old 09-25-2006, 09:59 PM
Oleg Ignatiuk's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Oleg Ignatiuk
Join Date: Jun 2005
Location: Belarus
Posts: 21,923
Yes, /forum/sitemap_1.xml.gz should work fine and it actually seems to work with your domain for me (I just tried this).
__________________
Oleg Ignatiuk / Crawlability Inc.
Support Team Launches New DeskPro Powered Tool Enhanced Support at Your Service

vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations

6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #7  
Old 09-26-2006, 03:16 AM
Member
 
Real Name: Joey
Join Date: Sep 2006
Posts: 31
I am able to pull the sitemap up via browser now but ran into another problem. See the other thread I created.

One day I'll get this right...LOL
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
Reply

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


Similar Threads

Thread Thread Starter Forum Replies Last Post
Sitemap problem vargrider General Discussion 3 05-17-2006 07:38 AM
Memory Problem: TraumTeam Troubleshooting 1 04-06-2006 09:24 AM
Sitemap Generator problem Todd Troubleshooting 4 02-25-2006 03:00 PM
Problem with the sitemap file Toocool Troubleshooting 3 01-29-2006 05:33 PM
Problem with vbSEO Sitemap psico Troubleshooting 3 11-21-2005 10:46 AM


All times are GMT -4. The time now is 09:48 PM.


Powered by vBulletin Version 3.8.0 Release Candidate 2
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.2.5 ©2008, Crawlability, Inc.