Hello,
you should upload vbseo_sm_photoplog.php file into vbseo_sitemap/addons/ folder and add "vbseo_sm_photoplog.php" in addons list in vBSEO Sitemap Generator options.
This is a discussion on Photoplog Sitemap Plugin within the General Discussion forums, part of the vBSEO Google/Yahoo Sitemap category; Hello, you should upload vbseo_sm_photoplog.php file into vbseo_sitemap/addons/ folder and add "vbseo_sm_photoplog.php" in addons list in vBSEO Sitemap Generator options....
Hello,
you should upload vbseo_sm_photoplog.php file into vbseo_sitemap/addons/ folder and add "vbseo_sm_photoplog.php" in addons list in vBSEO Sitemap Generator options.
Oleg Ignatiuk / Crawlability Inc.
vBSEO 3.6.0 GOLD Released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
Does it work with PhotoPlog Lite?
Thanks.
Hello,
most likely it should work correctly with Lite version too.
Oleg Ignatiuk / Crawlability Inc.
vBSEO 3.6.0 GOLD Released!
Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!
I found the reason for this. I use the Photoplog vbSEO add-on which rewrites the URL to "index.php?title=some-title&n=1234"
I've been editing the add-on to make it compatible for users who use the
Photoplog Pro Product for vbSEO: vBSEO Compatible Hack:Photoplog Pro - VBSEO Wiki
PHP Code:<?
# vbSEO Google Sitemap Generator - PhotoPlog Add On.
# Written by A v Klinken (http://www.LOSTTalk.net)
# Full HTTP path to your gallery root (including trailing forwardslash)
$gallery_url = 'http://www.YOURSITE.com/photoplog/';
# Priority you want to assign to the sitemap pages
$sitemap_priority = 0.5;
# How often you wish to flag for updates
$sitemap_update = 'weekly';
# PhotoPlog Table Prefix
$tableprefix = '';
# URL used for Picture (index.php?n=)
URL used for Picture with vbSEO PP product (index.php?title=.....&n=)
$fileurl = 'index.php?n=';
$vbseofileurl = 'index.php?title=';
$fileidswitch = '&n=';
# DON'T EDIT PAST HERE #############################################
$photos = $db->query_read('SELECT fileid, title FROM '.$tableprefix.'photoplog_fileuploads WHERE moderate = 0');
while ($photo = $db->fetch_array($photos))
{
$modified = $photo['dateline'];
if(VBSEO_ON)
{
$url = $gallery_url . $vbseofileurl . vbseo_filter_text($photo['title']) . $fileidswitch . $photo['fileid'];
$url = vbseo_any_url($url);
}
else
{
$url = $gallery_url . $fileurl . $photo['fileid'];
}
vbseo_add_url( $url, $sitemap_priority, $modified, $sitemap_update);
}
?>
Work for vb 4 ????
Nothing in this thread is working for me. Would it be possible to get official support for this?
This is working for me: Photoplog Sitemap