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?
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 ...
I would like to know as well since I am using this add on as well
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? ;)
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
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? ;)
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:
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: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'); } ?>
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? ;)
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? ;)
i could be wrong, but a quick look at the code
i think that if should be wrped with an elseCode:if(VBSEO_ON) $url = vbseo_any_url($url); $url = $vba_dyna_url . $url;
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
Try to change this:
to:PHP Code:if(VBSEO_ON)
$url = vbseo_any_url($url);
$url = $vba_dyna_url . $url;
PHP Code:$url = $vba_dyna_url . $url;
if(VBSEO_ON)
$url = vbseo_any_url($url);
Oleg Ignatiuk / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
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? ;)
Well, the above did solve the double URL issue, but now the URL is not rewritten correctly.
Instead of this:
I now get this:Code:http://www.mysite.com/forum/dyna/category-9.html
Any idea why? What should I change to fix this?Code:http://www.mysite.com/forum/dyna/browsecategory.php?c=9
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? ;)
What are the CRRs you use?
Oleg Ignatiuk / Crawlability Inc.
Security vbulletin - Patch Level for all supported versions released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
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? ;)