Page 1 of 2 1 2 LastLast
Results 1 to 15 of 19

vBadvanced Dynamics

This is a discussion on vBadvanced Dynamics within the General Discussion forums, part of the vBSEO Google/Yahoo Sitemap category; I am now using this add on. Do I need to do anything to modfiy my sitemap settings in order ...

  1. #1
    Senior Member
    Real Name
    len backus
    Join Date
    May 2007
    Posts
    127
    Liked
    0 times

    vBadvanced Dynamics

    I am now using this add on. Do I need to do anything to modfiy my sitemap settings in order to include these Dynamics pages?
    LenBackus


  2. #2
    Junior Member
    Real Name
    Kris
    Join Date
    May 2008
    Posts
    11
    Liked
    0 times
    I would like to know as well since I am using this add on as well

  3. #3
    Junior Member shlomot's Avatar
    Real Name
    shlomot
    Join Date
    May 2007
    Posts
    11
    Liked
    0 times
    I second (third) this question.

    Quote Originally Posted by len backus View Post
    I am now using this add on. Do I need to do anything to modfiy my sitemap settings in order to include these Dynamics pages?

  4. #4
    Senior Member Brutal_Dreamer's Avatar
    Real Name
    Bruce
    Join Date
    Jan 2007
    Location
    Arkansas
    Posts
    136
    Liked
    0 times
    Anyone know the answer to this question? I see there is an add-on module for vba-Links and vba, but not for vBa_dynamics. What should I do to include dynamics in my sitemap. Thanks?

    Thanks,
    Bruce
    RVO's OrchidTalk Orchid Forums - "Bringing People Together"

    We could learn a lot from crayons: some are sharp, some are pretty, some are dull, some have weird names, and all are different colors....but they all exist very nicely in the same box. ...Hmmm? ;)

  5. #5
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    23,100
    Liked
    622 times
    Blog Entries
    4
    Those addons are created by users. You can request this from Brian , as it is an easy thing he should be able to create it within an hour or so.
    Mert Gökçeimam / Crawlability Inc.

    vBSEO 3.6.0 Alpha Önizlemesi - Including Like Tree
    Unveiling the NEW vBSEO Sitemap Generator 3.0 - available NOW for vBSEO Customers!


    Twitter:@Depkac
    Personal Blog : Mert Gökçeimam

  6. #6
    Senior Member Brutal_Dreamer's Avatar
    Real Name
    Bruce
    Join Date
    Jan 2007
    Location
    Arkansas
    Posts
    136
    Liked
    0 times
    Thanks, Mert, will do! Have a nice day!

    Regards,
    Bruce
    RVO's OrchidTalk Orchid Forums - "Bringing People Together"

    We could learn a lot from crayons: some are sharp, some are pretty, some are dull, some have weird names, and all are different colors....but they all exist very nicely in the same box. ...Hmmm? ;)

  7. #7
    Senior Member Brutal_Dreamer's Avatar
    Real Name
    Bruce
    Join Date
    Jan 2007
    Location
    Arkansas
    Posts
    136
    Liked
    0 times
    I took a look at the vba site and found several recent threads about this issue, but no answers. Brian listed a code that would include the url of the main page only, but did not include the rest of the module. Another member there included this module based off of one in the add-ons folder:

    Code:
     <?php
    
     /******************************************************************************************
     * vBSEO Google/Yahoo Sitemap Generator for vBulletin v3.x.x by Crawlability, Inc.         *
     *-----------------------------------------------------------------------------------------*
     *                                                                                         *
     * Copyright й 2005-2007, 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 vBulletin 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.    *
     ******************************************************************************************/
    
    // replace the URL below with your vBa dynamics main folder URL
    
        $vba_dyna_url = 'http://www.yoursite.com/dyna/';
    
        $lnkg = $db->query_read("SELECT * FROM " . TABLE_PREFIX . "adv_dyna_categories");
        while ($lnk = $db->fetch_array($lnkg))
        {
            $url = 'browsecategory.php?c='.$lnk['catid'];
            if(VBSEO_ON)
                $url = vbseo_any_url($url);
    
            $url = $vba_dyna_url . $url;
    
              vbseo_add_url($url, 1.0, $lnk['lastupdated'], 'daily');
        }
    
        $lnkg = $db->query_read("SELECT * FROM " . TABLE_PREFIX . "adv_dyna_entries WHERE open > 0");
        while ($lnk = $db->fetch_array($lnkg))
        {
            $url = 'showentry.php?e='.$lnk['entryid'];
    
            if(VBSEO_ON)
                $url = vbseo_any_url($url);
    
            $url = $vba_dyna_url . $url;
    
              vbseo_add_url($url, 0.5, $lnk['lastupdated'] ? $lnk['lastupdated'] : $lnk['dateline'], 'weekly');
        }
    
    ?> 
    I tried it, corecting my URL in the "ttp://www.yoursite.com/dyna/" place. I ran the generator and then checked the sitemap it created. It added in URLS, but the URLs it added were weird. They were double. Like this:

    http://www.mysite.com/forum/dyna/http://www.mysite.com/forum/category-8.html

    Anyone have a solution? Thanks.

    Cheers,
    Bruce
    RVO's OrchidTalk Orchid Forums - "Bringing People Together"

    We could learn a lot from crayons: some are sharp, some are pretty, some are dull, some have weird names, and all are different colors....but they all exist very nicely in the same box. ...Hmmm? ;)

  8. #8
    Member
    Real Name
    nayf
    Join Date
    May 2007
    Posts
    96
    Liked
    1 times
    Quote Originally Posted by Brutal_Dreamer View Post
    I took a look at the vba site and found several recent threads about this issue, but no answers. Brian listed a code that would include the url of the main page only, but did not include the rest of the module. Another member there included this module based off of one in the add-ons folder:

    Code:
     <?php
    
     /******************************************************************************************
     * vBSEO Google/Yahoo Sitemap Generator for vBulletin v3.x.x by Crawlability, Inc.         *
     *-----------------------------------------------------------------------------------------*
     *                                                                                         *
     * Copyright й 2005-2007, 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 vBulletin 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.    *
     ******************************************************************************************/
    
    // replace the URL below with your vBa dynamics main folder URL
    
        $vba_dyna_url = 'http://www.yoursite.com/dyna/';
    
        $lnkg = $db->query_read("SELECT * FROM " . TABLE_PREFIX . "adv_dyna_categories");
        while ($lnk = $db->fetch_array($lnkg))
        {
            $url = 'browsecategory.php?c='.$lnk['catid'];
            if(VBSEO_ON)
                $url = vbseo_any_url($url);
    
            $url = $vba_dyna_url . $url;
    
              vbseo_add_url($url, 1.0, $lnk['lastupdated'], 'daily');
        }
    
        $lnkg = $db->query_read("SELECT * FROM " . TABLE_PREFIX . "adv_dyna_entries WHERE open > 0");
        while ($lnk = $db->fetch_array($lnkg))
        {
            $url = 'showentry.php?e='.$lnk['entryid'];
    
            if(VBSEO_ON)
                $url = vbseo_any_url($url);
    
            $url = $vba_dyna_url . $url;
    
              vbseo_add_url($url, 0.5, $lnk['lastupdated'] ? $lnk['lastupdated'] : $lnk['dateline'], 'weekly');
        }
    
    ?> 
    I tried it, corecting my URL in the "ttp://www.yoursite.com/dyna/" place. I ran the generator and then checked the sitemap it created. It added in URLS, but the URLs it added were weird. They were double. Like this:

    http://www.mysite.com/forum/dyna/http://www.mysite.com/forum/category-8.html

    Anyone have a solution? Thanks.

    Cheers,
    Bruce
    i wrote about this bug which also effect vba llinks addon
    i still wait fixing

  9. #9
    Senior Member Brutal_Dreamer's Avatar
    Real Name
    Bruce
    Join Date
    Jan 2007
    Location
    Arkansas
    Posts
    136
    Liked
    0 times
    Anyone have any suggestions?

    Warm Regards,
    Bruce
    RVO's OrchidTalk Orchid Forums - "Bringing People Together"

    We could learn a lot from crayons: some are sharp, some are pretty, some are dull, some have weird names, and all are different colors....but they all exist very nicely in the same box. ...Hmmm? ;)

  10. #10
    Senior Member briansol's Avatar
    Real Name
    Brian
    Join Date
    Apr 2006
    Location
    Central CT, USA
    Posts
    6,981
    Liked
    8 times
    i could be wrong, but a quick look at the code

    Code:
     if(VBSEO_ON)
                $url = vbseo_any_url($url);
    
            $url = $vba_dyna_url . $url;
    
    i think that if should be wrped with an else


    if(VBSEO_ON){
    $url = vbseo_any_url($url); }
    else {

    $url = $vba_dyna_url . $url; }


    seems like that second add on to url is casuing the double base

  11. #11
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,744
    Liked
    168 times
    Try to change this:
    PHP Code:
            if(VBSEO_ON)
                
    $url vbseo_any_url($url);

            
    $url $vba_dyna_url $url
    to:
    PHP Code:
            $url $vba_dyna_url $url;

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

  12. #12
    Senior Member Brutal_Dreamer's Avatar
    Real Name
    Bruce
    Join Date
    Jan 2007
    Location
    Arkansas
    Posts
    136
    Liked
    0 times
    Quote Originally Posted by Oleg Ignatiuk View Post
    Try to change this:
    PHP Code:
            if(VBSEO_ON)
                
    $url vbseo_any_url($url);

            
    $url $vba_dyna_url $url
    to:
    PHP Code:
            $url $vba_dyna_url $url;

            if(
    VBSEO_ON)
                
    $url vbseo_any_url($url); 
    EDIT: IT WORKED!! Thank you both very much!

    Cheers,
    Bruce
    RVO's OrchidTalk Orchid Forums - "Bringing People Together"

    We could learn a lot from crayons: some are sharp, some are pretty, some are dull, some have weird names, and all are different colors....but they all exist very nicely in the same box. ...Hmmm? ;)

  13. #13
    Senior Member Brutal_Dreamer's Avatar
    Real Name
    Bruce
    Join Date
    Jan 2007
    Location
    Arkansas
    Posts
    136
    Liked
    0 times
    Well, the above did solve the double URL issue, but now the URL is not rewritten correctly.

    Instead of this:
    Code:
    http://www.mysite.com/forum/dyna/category-9.html
    I now get this:
    Code:
    http://www.mysite.com/forum/dyna/browsecategory.php?c=9
    Any idea why? What should I change to fix this?

    Thanks,
    Bruce
    RVO's OrchidTalk Orchid Forums - "Bringing People Together"

    We could learn a lot from crayons: some are sharp, some are pretty, some are dull, some have weird names, and all are different colors....but they all exist very nicely in the same box. ...Hmmm? ;)

  14. #14
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,744
    Liked
    168 times
    What are the CRRs you use?

  15. #15
    Senior Member Brutal_Dreamer's Avatar
    Real Name
    Bruce
    Join Date
    Jan 2007
    Location
    Arkansas
    Posts
    136
    Liked
    0 times
    Quote Originally Posted by Oleg Ignatiuk View Post
    What are the CRRs you use?
    Code:
    '^browsecategory\.php\?c=(\d+)$' => 'category-$1.html'
    '^showentry\.php\?e=(\d+)$' => 'entry-$1.html'
    '^showentry\.php\?e=(\d+)&catid=(\d+)$' => 'entry-$1-$2.html'
    These are the ones I use. I got them from a thread here in VBSEO.

    Cheers,
    Bruce
    RVO's OrchidTalk Orchid Forums - "Bringing People Together"

    We could learn a lot from crayons: some are sharp, some are pretty, some are dull, some have weird names, and all are different colors....but they all exist very nicely in the same box. ...Hmmm? ;)

Page 1 of 2 1 2 LastLast

Similar Threads

  1. vBadvanced Dynamics for sitemap inclusion
    By FrontRunner in forum Sitemap Features Archive
    Replies: 28
    Last Post: 07-10-2009, 05:29 PM
  2. vbAdvanced Dynamics
    By MyGeekle in forum Custom Rewrite Rules
    Replies: 9
    Last Post: 05-01-2008, 05:02 PM
  3. Vba dynamics or not?
    By vnjporg in forum General Discussion
    Replies: 2
    Last Post: 01-10-2008, 12:30 AM
  4. vba releases "vBadvanced Dynamics"
    By Brandon Sheley in forum General Discussion
    Replies: 12
    Last Post: 09-08-2007, 11:19 PM
  5. Does vBseo also work with vBadvanced and vBadvanced links directory?
    By ChrisGuthrie.net in forum General Discussion
    Replies: 30
    Last Post: 05-16-2007, 01:15 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •