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

calendars

This is a discussion on calendars within the Feature Requests forums, part of the vBSEO Google/Yahoo Sitemap category; I've just noticed calendars don't appear to be supported. Would it be possible to include them? Thanks. Hugh...

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
  #1  
Old 08-30-2008, 09:21 AM
Junior Member
 
Real Name: hugh
Join Date: Apr 2007
Posts: 12
calendars

I've just noticed calendars don't appear to be supported. Would it be possible to include them?

Thanks.

Hugh
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #2  
Old 08-30-2008, 05:32 PM
Oleg Ignatiuk's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Oleg Ignatiuk
Join Date: Jun 2005
Location: Belarus
Posts: 21,916
You can use Custom Rewrite Rules to rewrite calendar URLs (there are some CRRs included with vBSEO for it, you should just uncomment them in vBSEO CP).
__________________
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 08-30-2008, 07:43 PM
Junior Member
 
Real Name: hugh
Join Date: Apr 2007
Posts: 12
Adding those CRRs is one of the first things I did when I installed the product. I still think it would be useful to add the calendar to the sitemap generator, it's an important application for a lot of forum owners...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #4  
Old 08-31-2008, 05:04 AM
Oleg Ignatiuk's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Oleg Ignatiuk
Join Date: Jun 2005
Location: Belarus
Posts: 21,916
Ah, I see. Currently you can only add the URLs manually in extra-urls.txt file to include them in sitemap.
__________________
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 08-31-2008, 07:23 AM
Junior Member
 
Real Name: hugh
Join Date: Apr 2007
Posts: 12
Any chance of this being a feature of future versions?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on Facebook!
Reply With Quote
  #6  
Old 08-31-2008, 05:33 PM
Oleg Ignatiuk's Avatar
vBSEO Staff
vBSEO Total Customer SupportvBSEO Documenter
 
Real Name: Oleg Ignatiuk
Join Date: Jun 2005
Location: Belarus
Posts: 21,916
Hello,

I've created a small add-on for that. Please create vbseo_sm_calendar.php file in vbseo_sitemap/addons/ folder:
PHP Code:
<?php

 
/******************************************************************************************
 * vBSEO Google/Yahoo Sitemap Generator for vBulletin v3.x.x by Crawlability, Inc.         *
 *-----------------------------------------------------------------------------------------*
 *                                                                                         *
 * Copyright й 2005-2008, Crawlability, Inc. All rights reserved.                          *
 * You may not redistribute this file or its derivatives without written permission.       *
 *                                                                                         *
 * Sales Email: sales@crawlability.com                                                     *
 *                                                                                         *
 *-------------------------------------LICENSE AGREEMENT-----------------------------------*
 * 1. You are free to download and install this plugin on any vBulletin forum for which    *
 *    you hold a valid vB license.                                                         *
 * 2. You ARE NOT allowed to REMOVE or MODIFY the copyright text within the .php files     *
 *    themselves.                                                                          *
 * 3. You ARE NOT allowed to DISTRIBUTE the contents of any of the included files.         *
 * 4. You ARE NOT allowed to COPY ANY PARTS of the code and/or use it for distribution.    *
 ******************************************************************************************/

    
$ev_list $db->query_read("SELECT * FROM " TABLE_PREFIX "event WHERE visible = 1");
    
    while (
$event $db->fetch_array($ev_list))
    {
        
$url 'calendar.php?do=getinfo&e=' $event['eventid'] . '&day=' 
            
date('Y-m-d'$event['dateline_from']) . '&c=' $event['calendarid'];

        if(
VBSEO_ON)
            
$url vbseo_any_url($url);

        if(!
strstr($url'://'))
            
$url $vbseo_vars['bburl'] . '/' $url;
          
vbseo_add_url($url0.5'''daily');
    }

?>
and then add "vbseo_sm_calendar.php" in addons list in vB admincp->vBSEO Sitemap Generator options.
__________________
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 08-31-2008, 07:14 PM
Junior Member
 
Real Name: hugh
Join Date: Apr 2007
Posts: 12
Very much appreciated, thanks!
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
Multiple calendars partyvibe Custom Rewrite Rules 4 08-29-2008 09:16 PM
rewrite settings for custom calendars nysports365 Custom Rewrite Rules 11 07-19-2007 12:20 PM


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