vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   Photopost vbGallery Addon For vBSEO Google/Yahoo Sitemap (https://vborg.vbsupport.ru/showthread.php?t=120047)

MissKalunji 07-18-2008 05:49 PM

how would i know if the gallery sitemap was done properly?

tiger 03-17-2009 10:48 PM

Does this work with 3.8 and the new site map version?

rinkrat 05-25-2009 08:24 PM

It's a shame that Google is oblivious to my VBGallery images. This looks like it is no longer supported so I guess I'm screwed.

Zachariah 08-02-2009 10:52 PM

Hey LIZ !!!!!
- Add this too man "if large image add another link for large image"
- also copy / contenue this thread into VB3.8 area

Code:

if ($mod['originalname']){
        $url = $gallery_url.'/showimage.php?i='.$mod['imageid'].'&original=1';

                if(VBSEO_ON)
                        $url = vbseo_any_url($url);
                  vbseo_add_url($url, '0.4', $mod['dateline'],'daily');
        }


Quote:

Originally Posted by MissKalunji (Post 1578555)
how would i know if the gallery sitemap was done properly?

AdminCP => vBSEO => vBSEO Sitemap Reports
- log-in
-- Show Reports List
--- View details of the last report "by Date"

Here will list all the site maps created:
HTML Code:

Sitemap Files
Index File sitemap_index.xml.gz
Sitemap File #1 sitemap_1.xml.gz (5,000 URLs, 1,016.85Kb) 1,016.53Kb uncompressed
Sitemap File #2 sitemap_2.xml.gz (5,000 URLs, 1,072.91Kb) 1,072.58Kb uncompressed
Sitemap File #3 sitemap_3.xml.gz (5,000 URLs, 1,119.71Kb) 1,119.38Kb uncompressed
Sitemap File #4 sitemap_4.xml.gz (5,000 URLs, 954.18Kb) 953.85Kb uncompressed
Sitemap File #5 sitemap_5.xml.gz (5,000 URLs, 900.40Kb) 900.08Kb uncompressed
Sitemap File #6 sitemap_6.xml.gz (5,000 URLs, 901.66Kb) 901.34Kb uncompressed
Sitemap File #7 sitemap_7.xml.gz (5,000 URLs, 899.61Kb) 899.29Kb uncompressed
Sitemap File #8 sitemap_8.xml.gz (5,000 URLs, 901.21Kb) 900.88Kb uncompressed
Sitemap File #9 sitemap_9.xml.gz (5,000 URLs, 901.05Kb) 900.73Kb uncompressed
Sitemap File #10 sitemap_10.xml.gz (5,000 URLs, 902.53Kb) 902.20Kb uncompressed
Sitemap File #11 sitemap_11.xml.gz (5,000 URLs, 905.58Kb) 905.25Kb uncompressed
Sitemap File #12 sitemap_12.xml.gz (5,000 URLs, 905.75Kb) 905.43Kb uncompressed
Sitemap File #13 sitemap_13.xml.gz (5,000 URLs, 905.42Kb) 905.10Kb uncompressed
Sitemap File #14 sitemap_14.xml.gz (5,000 URLs, 906.07Kb) 905.75Kb uncompressed
Sitemap File #15 sitemap_15.xml.gz (10 URLs, 2.14Kb) 1.81Kb uncompressed
Text Format File urllist.txt.gz (3,564.45Kb)

It will be in some of the later GZ files as the images are added after the threads,posts,members (all other forum options) in your forum.

You should see URLS pointing to your gallery.
Code:

- <url>
  <loc>http://www.xxxx.xxx/gallery/image-10694.html</loc>
  <priority>0.4</priority>
  <lastmod>2009-07-24T18:28:04+00:00</lastmod>
  <changefreq>daily</changefreq>
  </url>

Quote:

Originally Posted by tiger (Post 1770778)
Does this work with 3.8 and the new site map version?

yes
Quote:

Originally Posted by rinkrat (Post 1817117)
It's a shame that Google is oblivious to my VBGallery images. This looks like it is no longer supported so I guess I'm screwed.

working on that @ the moment w/ VBSEO addon I may work on a stand alone version if I get some time.

Keyword Rich URLS with Photopost vBGallery - http://www.vbseo.com/f23/request-key...62/index2.html

Xencored 08-13-2009 12:48 PM

All i get is errors :mad:

Code:

Warning: gmdate() expects parameter 2 to be long, string given in /home/**********/public_html/forums/vbseo_sitemap/vbseo_sitemap_functions.php on line 920
Over and over again

tiger 08-26-2009 05:52 PM

Hey Zach, where do we add that code exactly?

Zachariah 09-18-2009 10:50 PM

Quote:

Originally Posted by tiger (Post 1874927)
Hey Zach, where do we add that code exactly?

Hey man !

/vbseo_sitemap/addons/vbseo_sm_vbagallery.php

This is my file:

PHP Code:

<?php
    
# vbSEO Google Sitemap Generator - PhotoPost vbGallery Add On.
    # Written by Lizard King (http://www.ayyas.com)
    # Full HTTP path to your gallery root (without trailing forwardslash ex: 'http://www.ayyas.com/galeri'; )
    
$gallery_url 'http://www.website.com/gallery';

    
$mods $db->query("SELECT catid,title,lastimagedateline FROM " TABLE_PREFIX "ppgal_categories ORDER BY `displayorder`");
    while (
$mod $db->fetch_array($mods))
    {    
        
$url $gallery_url.'/browseimages.php?c='.$mod['catid'];

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

          
vbseo_add_url($url'0.3'$mod['lastimagedateline'], 'daily');
    }

    
$mods $db->query_read('SELECT imageid,dateline,originalname FROM ' TABLE_PREFIX 'ppgal_images');
    while (
$mod $db->fetch_array($mods))
    {    
        
$url $gallery_url.'/showimage.php?i='.$mod['imageid'];

        if(
VBSEO_ON)
            
$url vbseo_any_url($url);
          
vbseo_add_url($url'0.4'$mod['dateline'],'daily');

        if (
$mod['originalname']){
        
$url $gallery_url.'/showimage.php?i='.$mod['imageid'].'&original=1';

        if(
VBSEO_ON)
            
$url vbseo_any_url($url);
          
vbseo_add_url($url'0.4'$mod['dateline'],'daily');
        }
    }
?>

Don't forget to fill out : website
$gallery_url = 'http://www.website.com/gallery';

tiger 09-21-2009 09:07 PM

Thanks big time Zach.

0ptima 07-04-2010 11:42 PM

Anyone use this on VBgallery 2.5? Has it increased traffic to your gallery?

tpearl5 07-15-2010 04:24 PM

Any word on this for v3.0 and vbulletin 4?


All times are GMT. The time now is 11:27 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01185 seconds
  • Memory Usage 1,760KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_code_printable
  • (1)bbcode_html_printable
  • (1)bbcode_php_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete