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

vBadvanced Dynamics for sitemap inclusion

This is a discussion on vBadvanced Dynamics for sitemap inclusion within the Feature Requests forums, part of the vBSEO Google/Yahoo Sitemap category; If you want to ask a question to Brian i advise you to use vbadvanced.com forums....

Go Back   vBulletin SEO Forums > vBSEO Google/Yahoo Sitemap > Feature Requests

Enhancing 80 million pages.

Register FAQ Members List Social Groups Calendar Search Today's Posts Mark Forums Read

Reply

 

LinkBack Thread Tools
  #16  
Old 05-03-2008, 06:46 PM
Mert Gökçeimam's Avatar
vBSEO.com Webmaster
vBSEO Total Customer SupportvBulletin HackerBig Board Administrator
 
Real Name: Lizard King
Join Date: Oct 2005
Location: Istanbul
Posts: 8,356
Blog Entries: 1
Send a message via MSN to Mert Gökçeimam
If you want to ask a question to Brian i advise you to use vbadvanced.com forums.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #17  
Old 09-15-2008, 07:39 PM
Junior Member
 
Real Name: aproape
Join Date: Jan 2008
Posts: 13
Smile Dynamics vBSEO Sitemap addon - released.

Hi there everyone,

We have completed this as an addon to vBSEO.

What this addon does: it adds the Dynamics URLs for all categories and articles in the system to the vBSEO Sitemap [after the forums URLs].

The URLs used are preserved as the ones from Dynamics [SEO friendly].

Default weight is 1.0 for categories and 0.5 for articles. Default frequency is daily for categories and weekly for articles.

vBSEO staff - feel free to add it to your addons list.. it might help lots of other people!

Original thread post:

vBSEO Sitemap Addon - vBadvanced Forums

The vBSEO Sitemap addon for Dynamics is attached.


Cheers,
aproape

P.S. Thanks for deathemperor for the initial sharing of his code which we adapted to use the Dynamics SEO URLs.
Attached Files
File Type: zip vbseo_sm_dynamics_v1.0.zip (1.3 KB, 21 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #18  
Old 09-21-2008, 10:51 AM
Senior Member
 
Real Name: Arkidas
Join Date: Feb 2008
Posts: 211
Thanks, do you know how to use this with multiple instances?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #19  
Old 09-21-2008, 10:56 AM
Junior Member
 
Real Name: aproape
Join Date: Jan 2008
Posts: 13
Hi there Arkidas,

Quote:
Originally Posted by Arkidas View Post
Thanks, do you know how to use this with multiple instances?
If I am not mistaken, 2nd and 3rd [and so on] instances of Dynamics use different tables for entries/replies/etc.

All you have to do is duplicate the lines in the sitemap file [pretty much everything after vba_dyna_url = line] and change the table names from adv_dyna_categories and adv_dyna_entries to your 2nd and/or 3rd table names..

You need to duplicate again those lines for each instance of Dynamics.

Let me know if you need more help.


Cheers,
aproape
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #20  
Old 09-22-2008, 02:03 PM
Senior Member
 
Real Name: Arkidas
Join Date: Feb 2008
Posts: 211
Just did that and it doesn't seem to be enough.
My sitemap is here.

PHP Code:
<?php 
/******************************/ 
//Dynamics vBSEO Sitemap Addon v1.0 
// Copyright aproape/Maribal Inc. 15 Sep 2008 
// Replace the URL below with your vBa Dynamics main folder URL 
 
    
require_once('includes/vba_dyna_functions.php'); 
     
    if(
VBSEO_ON
    { 
        
$vba_options['dyna_spiderurls'] = true
    } 
     
    
$vba_dyna_url 'http://malesopranos.com/CDs'
 
     
    
//adding the categories to the sitemap 
    
$cats $db->query_read("SELECT * FROM " TABLE_PREFIX "adv_dyna_categories"); 
    while (
$cat $db->fetch_array($cats)) 
    { 
        
$url fetch_cat_url($cat['catid']); 
        
/*if(VBSEO_ON) 
            $url = vbseo_any_url($url);*/ 
 
        
$url $vba_dyna_url $url
 
          
vbseo_add_url($url1.0$cat['lastupdated'], 'daily'); 
    } 
 
 
    
//adding the articles/entries to the sitemap 
    
$entries $db->query_read("SELECT * FROM " TABLE_PREFIX "adv_dyna_entries WHERE open > 0"); 
    while (
$entry $db->fetch_array($entries)) 
    { 
        
$url fetch_entry_url($entry); 
 
        
/*if(VBSEO_ON) 
            $url = vbseo_any_url($url);*/ 
 
        
$url $vba_dyna_url $url
 
          
vbseo_add_url($url0.5$entry['lastupdated'] ? $entry['lastupdated'] : $entry['dateline'], 'weekly'); 
    }


    
//adding the categories to the sitemap 
    
$cats $db->query_read("SELECT * FROM " TABLE_PREFIX "article__categories"); 
    while (
$cat $db->fetch_array($cats)) 
    { 
        
$url fetch_cat_url($cat['catid']); 
        
/*if(VBSEO_ON) 
            $url = vbseo_any_url($url);*/ 
 
        
$url $vba_dyna_url $url
 
          
vbseo_add_url($url1.0$cat['lastupdated'], 'daily'); 
    } 
 
 
    
//adding the articles/entries to the sitemap 
    
$entries $db->query_read("SELECT * FROM " TABLE_PREFIX "article__entries WHERE open > 0"); 
    while (
$entry $db->fetch_array($entries)) 
    { 
        
$url fetch_entry_url($entry); 
 
        
/*if(VBSEO_ON) 
            $url = vbseo_any_url($url);*/ 
 
        
$url $vba_dyna_url $url
 
          
vbseo_add_url($url0.5$entry['lastupdated'] ? $entry['lastupdated'] : $entry['dateline'], 'weekly'); 
    } 
 
 
?>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #21  
Old 09-22-2008, 02:21 PM
Junior Member
 
Real Name: aproape
Join Date: Jan 2008
Posts: 13
Hi there Arkidas,

What exactly is that you don't see? I took a look at your sitemap and I don't see any errors in it..


Cheers,
aproape
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #22  
Old 09-22-2008, 02:22 PM
Junior Member
 
Real Name: aproape
Join Date: Jan 2008
Posts: 13
One more detail on the modified code you posted - I see that article__categories table name has double underscore - is that correct?


Cheers,
aproape
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #23  
Old 09-22-2008, 06:43 PM
Senior Member
 
Real Name: Arkidas
Join Date: Feb 2008
Posts: 211
Yes it's correct. There's no error but the second instance's URLs aren't in the sitemap. The first instance is /CDs ( which is there ) and the second is /articles and that one doesn't appear in the sitemap's URL list.

EDIT: Never mind, I see that /articles IS in http://malesopranos.com/sitemap_1.xml.gz although I didn't see it in the urlslist file.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #24  
Old 09-24-2008, 12:39 PM
Junior Member
 
Real Name: aproape
Join Date: Jan 2008
Posts: 13
Hi there Arkidas,

Glad it works ;-)


Cheers,
aproape


Quote:
Originally Posted by Arkidas View Post
Yes it's correct. There's no error but the second instance's URLs aren't in the sitemap. The first instance is /CDs ( which is there ) and the second is /articles and that one doesn't appear in the sitemap's URL list.

EDIT: Never mind, I see that /articles IS in http://malesopranos.com/sitemap_1.xml.gz although I didn't see it in the urlslist file.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #25  
Old 09-27-2008, 09:54 PM
Senior Member
 
Real Name: Arkidas
Join Date: Feb 2008
Posts: 211
I just noticed a very bad problem. For some reason, a part each vBDynamics URLs is missing in the sitemap ( the category name ).

Example: In site map this URL -
http://malesopranos.com/CDs/radu-mar...dellaurora-21/

Becomes:
http://malesopranos.com/CDs/tomaso-a...dellaurora-21/

And is therefore broken :(. I've disabled the addon until this has been fixed.
PHP Code:
<?php 
/******************************/ 
//Dynamics vBSEO Sitemap Addon v1.0 
// Copyright aproape/Maribal Inc. 15 Sep 2008 
// Replace the URL below with your vBa Dynamics main folder URL 
 
    
require_once('includes/vba_dyna_functions.php'); 
     
    if(
VBSEO_ON
    { 
        
$vba_options['dyna_spiderurls'] = true
    } 
     
    
$vba_dyna_url 'http://malesopranos.com/CDs';
    
$vba_article_url 'http://malesopranos.com/articles'
 
     
    
//adding the categories to the sitemap 
    
$cats $db->query_read("SELECT * FROM " TABLE_PREFIX "adv_dyna_categories"); 
    while (
$cat $db->fetch_array($cats)) 
    { 
        
$url fetch_cat_url($cat['catid']); 
        
/*if(VBSEO_ON) 
            $url = vbseo_any_url($url);*/ 
 
        
$url $vba_dyna_url $url
 
          
vbseo_add_url($url1.0$cat['lastupdated'], 'daily'); 
    } 
 
 
    
//adding the articles/entries to the sitemap 
    
$entries $db->query_read("SELECT * FROM " TABLE_PREFIX "adv_dyna_entries WHERE open > 0"); 
    while (
$entry $db->fetch_array($entries)) 
    { 
        
$url fetch_entry_url($entry); 
 
        
/*if(VBSEO_ON) 
            $url = vbseo_any_url($url);*/ 
 
        
$url $vba_dyna_url $url
 
          
vbseo_add_url($url0.5$entry['lastupdated'] ? $entry['lastupdated'] : $entry['dateline'], 'weekly'); 
    }


    
//adding the categories to the sitemap 
    
$cats $db->query_read("SELECT * FROM " TABLE_PREFIX "article__categories"); 
    while (
$cat $db->fetch_array($cats)) 
    { 
        
$url fetch_cat_url($cat['catid']); 
        
/*if(VBSEO_ON) 
            $url = vbseo_any_url($url);*/ 
 
        
$url $vba_article_url $url
 
          
vbseo_add_url($url1.0$cat['lastupdated'], 'daily'); 
    } 
 
 
    
//adding the articles/entries to the sitemap 
    
$entries $db->query_read("SELECT * FROM " TABLE_PREFIX "article__entries WHERE open > 0"); 
    while (
$entry $db->fetch_array($entries)) 
    { 
        
$url fetch_entry_url($entry); 
 
        
/*if(VBSEO_ON) 
            $url = vbseo_any_url($url);*/ 
 
        
$url $vba_article_url $url
 
          
vbseo_add_url($url0.5$entry['lastupdated'] ? $entry['lastupdated'] : $entry['dateline'], 'weekly'); 
    } 
 
 
?>
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #26  
Old 09-27-2008, 10:03 PM
Junior Member
 
Real Name: aproape
Join Date: Jan 2008
Posts: 13
Hi there Arkidas,

Are you sure your URLs are:

http://malesopranos.com/CDs/tomaso-a...dellaurora-21/

OR

http://malesopranos.com/CDs//tomaso-a...dellaurora-21/ ??

Also, are you using the CMPS module for Dynamics -> CMPS Module - New/Random Entries (updated for v1.0.0) - vBadvanced Forums

If you are - make sure it is the _latest_ version [re-download and re-install - Brian doesn't update the version numbers.. so you need to do it again even if the version numbers match].

Also, see this thread for more information:

vBSEO Sitemap Addon - vBadvanced Forums

There is a bug with one of the plugins in Dynamics - nothing much we can do except work-around it..


Cheers,
aproape
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #27  
Old 09-27-2008, 10:35 PM
Senior Member
 
Real Name: Arkidas
Join Date: Feb 2008
Posts: 211
Sorry, vBulletin messed the URLs here.

No, I don't use CMPS ( although I have it installed ).

I don't have a double slash problem because as you can see, I figured myself that not having a slash after 'CDs' and 'articles' would take care of it. My problem is the following:

Correct URL format is ( obviously replace hxxp with http ):

hxxp://malesopranos.com/CDs/radu-marian-4/tomaso-albinoni-il-nascimento-dellaurora-21/


But sitemap shows URLs in the following format which is invalid because category is missing ( in this case it's /radu-marian-4/ ):

hxxp://malesopranos.com/CDs/tomaso-albinoni-il-nascimento-dellaurora-21/

I also have that problem where there are many /CDs/ in the sitemap instead of one for each category. Not sure if it's the same with the second instance URLs ( /article/ ).

How did you fix this for larina?

Last edited by Arkidas; 09-27-2008 at 10:46 PM.
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
vBseo and vbadvanced? krispy1812 Pre-Sales Questions 8 06-14-2008 08:48 PM
Does vBseo also work with vBadvanced and vBadvanced links directory? ChrisGuthrie.net General Discussion 30 05-16-2007 02:15 AM
VBAdvanced Navbar links NOT SEO friendly DodgeBoard.com URL Rewrite Settings 1 10-04-2006 07:34 PM
Vbadvanced need some help mototips Off-Topic & Chit Chat 12 08-18-2006 08:26 AM
How does this work with vBadvanced? john General Discussion 13 05-01-2006 10:34 AM


All times are GMT -4. The time now is 02:57 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.