Results 1 to 5 of 5

Sitemap Generation Problems - vBSEO Sitemap Generator 3.0

This is a discussion on Sitemap Generation Problems - vBSEO Sitemap Generator 3.0 within the Troubleshooting forums, part of the vBSEO Google/Yahoo Sitemap category; Hi All, I am just wondering if you could help me. I am new to the forums and have only ...

  1. #1
    Junior Member Array
    Real Name
    Matt
    Join Date
    Feb 2012
    Posts
    4
    Liked
    0 times

    Sitemap Generation Problems - vBSEO Sitemap Generator 3.0

    Hi All,

    I am just wondering if you could help me. I am new to the forums and have only owned vBSEO for a few days and the vBulletin software for a couple of months now.

    I am running:-
    vBulletin Suite 4.1.9 patch level 1
    vBSEO 3.6.0
    vBSEO Sitemap Generator 3.0

    The problem I am having is that when I click run generator only about 900 or so urls are being added to the sitemap files. When I return to the Sitemap Reports List after viewing the details of the report it disappears. There is no actual files stored on my server for the vBSEO Sitemap. I have checked the forum root which is supposed to be the default location of the sitemap and I have also checked in the vbseo_sitemap/data folder as well. As I read somewhere that it may be in there. I have attached a copy of my .htaccess that is in my root folder.

    I don't have any issues with mod_rewrite as I use it on other site hosted under the same account and have done for a long time. I just dont seem to be able to see what is going wrong with the generation of the file.

    Another thing I would add is that I have uninstalled the vBseo Sitemap Generator and then installed it again and I am still having the same issues.

    Please find below attached the .htaccess I am using and also the output from the Run Generator.

    Code:
    RewriteEngine on
    
    
    # If you are having problems or are using VirtualDocumentRoot, uncomment this line and set it to your vBulletin directory.
    # RewriteBase /forum/
    
    
    # If you are having problems with the rewrite from content/ to content.php, uncomment this line to turn MultiViews off.
    # Options -MultiViews
    
    
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -l [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    
    
    RewriteRule ^.*$ - [NC,L]
    
    
    # Forum
    RewriteRule ^threads/.* showthread.php [QSA]
    RewriteRule ^forums/.* forumdisplay.php [QSA]
    RewriteRule ^members/.* member.php [QSA]
    RewriteRule ^blogs/.* blog.php [QSA]
    RewriteRule ^entries/.* entry.php [QSA]
    
    
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -l [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    
    
    # vBSEO Mod Rewrite
    
    
    RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]
    
    
    RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|vbseo_sitemap|api\.php)
    RewriteRule ^((archive/)?(.*\.php(/.*)?))$ vbseo.php [L,QSA]
    
    
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !/(admincp|modcp|clientscript|cpstyles|images)/
    RewriteRule ^(.+)$ vbseo.php [L,QSA]
    
    
    RewriteRule ^.*$ - [NC,L]
    
    
    
    
    # MVC
    RewriteRule ^(?:(.*?)(?:/|$))(.*|$)$ $1.php?r=$2 [QSA]
    
    
    # Check MVC result
    RewriteCond %{REQUEST_FILENAME} -f
    RewriteRule ^(.*)$ - [NC,L]
    RewriteRule ^(.*)$ - [R=404,L]
    
    
    # BEGIN W3TC Browser Cache
    <IfModule mod_mime.c>
        AddType text/css .css
        AddType application/x-javascript .js
        AddType text/html .html .htm
        AddType text/richtext .rtf .rtx
        AddType image/svg+xml .svg .svgz
        AddType text/plain .txt
        AddType text/xsd .xsd
        AddType text/xsl .xsl
        AddType text/xml .xml
        AddType video/asf .asf .asx .wax .wmv .wmx
        AddType video/avi .avi
        AddType image/bmp .bmp
        AddType application/java .class
        AddType video/divx .divx
        AddType application/msword .doc .docx
        AddType application/x-msdownload .exe
        AddType image/gif .gif
        AddType application/x-gzip .gz .gzip
        AddType image/x-icon .ico
        AddType image/jpeg .jpg .jpeg .jpe
        AddType application/vnd.ms-access .mdb
        AddType audio/midi .mid .midi
        AddType video/quicktime .mov .qt
        AddType audio/mpeg .mp3 .m4a
        AddType video/mp4 .mp4 .m4v
        AddType video/mpeg .mpeg .mpg .mpe
        AddType application/vnd.ms-project .mpp
        AddType application/vnd.oasis.opendocument.database .odb
        AddType application/vnd.oasis.opendocument.chart .odc
        AddType application/vnd.oasis.opendocument.formula .odf
        AddType application/vnd.oasis.opendocument.graphics .odg
        AddType application/vnd.oasis.opendocument.presentation .odp
        AddType application/vnd.oasis.opendocument.spreadsheet .ods
        AddType application/vnd.oasis.opendocument.text .odt
        AddType audio/ogg .ogg
        AddType application/pdf .pdf
        AddType image/png .png
        AddType application/vnd.ms-powerpoint .pot .pps .ppt .pptx
        AddType audio/x-realaudio .ra .ram
        AddType application/x-shockwave-flash .swf
        AddType application/x-tar .tar
        AddType image/tiff .tif .tiff
        AddType audio/wav .wav
        AddType audio/wma .wma
        AddType application/vnd.ms-write .wri
        AddType application/vnd.ms-excel .xla .xls .xlsx .xlt .xlw
        AddType application/zip .zip
    </IfModule>
    <IfModule mod_expires.c>
        ExpiresActive On
        ExpiresByType text/css A31536000
        ExpiresByType application/x-javascript A31536000
        ExpiresByType text/html A3600
        ExpiresByType text/richtext A3600
        ExpiresByType image/svg+xml A3600
        ExpiresByType text/plain A3600
        ExpiresByType text/xsd A3600
        ExpiresByType text/xsl A3600
        ExpiresByType text/xml A3600
        ExpiresByType video/asf A31536000
        ExpiresByType video/avi A31536000
        ExpiresByType image/bmp A31536000
        ExpiresByType application/java A31536000
        ExpiresByType video/divx A31536000
        ExpiresByType application/msword A31536000
        ExpiresByType application/x-msdownload A31536000
        ExpiresByType image/gif A31536000
        ExpiresByType application/x-gzip A31536000
        ExpiresByType image/x-icon A31536000
        ExpiresByType image/jpeg A31536000
        ExpiresByType application/vnd.ms-access A31536000
        ExpiresByType audio/midi A31536000
        ExpiresByType video/quicktime A31536000
        ExpiresByType audio/mpeg A31536000
        ExpiresByType video/mp4 A31536000
        ExpiresByType video/mpeg A31536000
        ExpiresByType application/vnd.ms-project A31536000
        ExpiresByType application/vnd.oasis.opendocument.database A31536000
        ExpiresByType application/vnd.oasis.opendocument.chart A31536000
        ExpiresByType application/vnd.oasis.opendocument.formula A31536000
        ExpiresByType application/vnd.oasis.opendocument.graphics A31536000
        ExpiresByType application/vnd.oasis.opendocument.presentation A31536000
        ExpiresByType application/vnd.oasis.opendocument.spreadsheet A31536000
        ExpiresByType application/vnd.oasis.opendocument.text A31536000
        ExpiresByType audio/ogg A31536000
        ExpiresByType application/pdf A31536000
        ExpiresByType image/png A31536000
        ExpiresByType application/vnd.ms-powerpoint A31536000
        ExpiresByType audio/x-realaudio A31536000
        ExpiresByType application/x-shockwave-flash A31536000
        ExpiresByType application/x-tar A31536000
        ExpiresByType image/tiff A31536000
        ExpiresByType audio/wav A31536000
        ExpiresByType audio/wma A31536000
        ExpiresByType application/vnd.ms-write A31536000
        ExpiresByType application/vnd.ms-excel A31536000
        ExpiresByType application/zip A31536000
    </IfModule>
    <IfModule mod_deflate.c>
        <IfModule mod_setenvif.c>
            BrowserMatch ^Mozilla/4 gzip-only-text/html
            BrowserMatch ^Mozilla/4\.0[678] no-gzip
            BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
            BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
        </IfModule>
        <IfModule mod_headers.c>
            Header append Vary User-Agent env=!dont-vary
        </IfModule>
        <IfModule mod_filter.c>
            AddOutputFilterByType DEFLATE text/css application/x-javascript text/html text/richtext image/svg+xml text/plain text/xsd text/xsl text/xml image/x-icon
        </IfModule>
    </IfModule>
    <FilesMatch "\.(css|js|CSS|JS)$">
        <IfModule mod_headers.c>
            Header set Pragma "public"
            Header append Cache-Control "public, must-revalidate, proxy-revalidate"
        </IfModule>
        FileETag MTime Size
        <IfModule mod_headers.c>
             Header set X-Powered-By "W3 Total Cache/0.9.2.3"
        </IfModule>
    </FilesMatch>
    <FilesMatch "\.(html|htm|rtf|rtx|svg|svgz|txt|xsd|xsl|xml|HTML|HTM|RTF|RTX|SVG|SVGZ|TXT|XSD|XSL|XML)$">
        <IfModule mod_headers.c>
            Header set Pragma "public"
            Header append Cache-Control "public, must-revalidate, proxy-revalidate"
        </IfModule>
        FileETag MTime Size
        <IfModule mod_headers.c>
             Header set X-Powered-By "W3 Total Cache/0.9.2.3"
        </IfModule>
    </FilesMatch>
    <FilesMatch "\.(asf|asx|wax|wmv|wmx|avi|bmp|class|divx|doc|docx|exe|gif|gz|gzip|ico|jpg|jpeg|jpe|mdb|mid|midi|mov|qt|mp3|m4a|mp4|m4v|mpeg|mpg|mpe|mpp|odb|odc|odf|odg|odp|ods|odt|ogg|pdf|png|pot|pps|ppt|pptx|ra|ram|swf|tar|tif|tiff|wav|wma|wri|xla|xls|xlsx|xlt|xlw|zip|ASF|ASX|WAX|WMV|WMX|AVI|BMP|CLASS|DIVX|DOC|DOCX|EXE|GIF|GZ|GZIP|ICO|JPG|JPEG|JPE|MDB|MID|MIDI|MOV|QT|MP3|M4A|MP4|M4V|MPEG|MPG|MPE|MPP|ODB|ODC|ODF|ODG|ODP|ODS|ODT|OGG|PDF|PNG|POT|PPS|PPT|PPTX|RA|RAM|SWF|TAR|TIF|TIFF|WAV|WMA|WRI|XLA|XLS|XLSX|XLT|XLW|ZIP)$">
        <IfModule mod_headers.c>
            Header set Pragma "public"
            Header append Cache-Control "public, must-revalidate, proxy-revalidate"
        </IfModule>
        FileETag MTime Size
        <IfModule mod_headers.c>
             Header set X-Powered-By "W3 Total Cache/0.9.2.3"
        </IfModule>
    </FilesMatch>
    # END W3TC Browser Cache
    Code:
    [homepage] [6,956.1Kb mem used] [0s (+0s)]
    [SECTION START] forumdisplay [6,957.8Kb mem used] [0s (+0s)]
    [forumdisplay] forum_id: 3, total threads: 0, pages: 1 [6,960.1Kb mem used] [0s (+0s)]
    [forumdisplay] forum_id: 60, total threads: 0, pages: 1 [7,412.7Kb mem used] [0s (+0s)]
    [forumdisplay] forum_id: 61, total threads: 124, pages: 7 [7,413.5Kb mem used] [0s (+0s)]
    [forumdisplay] forum_id: 81, total threads: 1, pages: 1 [7,418.2Kb mem used] [0s (+0s)]
    [forumdisplay] forum_id: 63, total threads: 31, pages: 2 [7,419.0Kb mem used] [0s (+0s)]
    [forumdisplay] forum_id: 68, total threads: 27, pages: 2 [7,420.4Kb mem used] [0s (+0s)]
    [forumdisplay] forum_id: 70, total threads: 4, pages: 1 [7,421.8Kb mem used] [0s (+0s)]
    [forumdisplay] forum_id: 73, total threads: 1, pages: 1 [7,422.6Kb mem used] [0s (+0s)]
    [forumdisplay] forum_id: 78, total threads: 2, pages: 1 [7,423.5Kb mem used] [0s (+0s)]
    [forumdisplay] forum_id: 64, total threads: 19, pages: 1 [7,424.2Kb mem used] [0s (+0s)]
    [forumdisplay] forum_id: 65, total threads: 82, pages: 5 [7,425.0Kb mem used] [0s (+0s)]
    [forumdisplay] forum_id: 66, total threads: 9, pages: 1 [7,428.4Kb mem used] [0s (+0s)]
    [forumdisplay] forum_id: 67, total threads: 88, pages: 5 [7,429.1Kb mem used] [0s (+0s)]
    [forumdisplay] forum_id: 71, total threads: 0, pages: 1 [7,432.4Kb mem used] [0s (+0s)]
    [forumdisplay] forum_id: 74, total threads: 7, pages: 1 [7,433.2Kb mem used] [0s (+0s)]
    [forumdisplay] forum_id: 76, total threads: 1, pages: 1 [7,433.9Kb mem used] [0s (+0s)]
    [forumdisplay] forum_id: 77, total threads: 0, pages: 1 [7,435.0Kb mem used] [0s (+0s)]
    [SECTION START] showthread [7,433.1Kb mem used] [0s (+0s)]
    [SECTION START] polls [7,758.6Kb mem used] [0s (+0s)]
    [create sitemap file] filename: sitemap_forum_1.xml.gz, number of urls: 503 [7,760.0Kb mem used] [0s (+0s)]
    [archive homepage] [7,411.8Kb mem used] [0s (+0s)]
    [SECTION START] forumdisplay archived [7,412.9Kb mem used] [0s (+0s)]
    [create sitemap file] filename: sitemap_archive_1.xml.gz, number of urls: 18 [7,425.2Kb mem used] [0s (+0s)]
    [SECTION START] tags [7,412.6Kb mem used] [0s (+0s)]
    [create sitemap file] filename: sitemap_tags_1.xml.gz, number of urls: 17 [7,425.2Kb mem used] [0s (+0s)]
    [SECTION START] member [7,413.4Kb mem used] [0s (+0s)]
    [create sitemap file] filename: sitemap_member_1.xml.gz, number of urls: 376 [7,666.0Kb mem used] [1s (+0s)]
    [SECTION START] albums [7,414.3Kb mem used] [1s (+0s)]
    [SECTION START] blogs [7,414.4Kb mem used] [1s (+0s)]
    [SECTION START] blog tags [7,421.4Kb mem used] [1s (+0s)]
    [create sitemap file] filename: sitemap_blog_1.xml.gz, number of urls: 7 [7,422.7Kb mem used] [1s (+0s)]
    [SECTION START] groups [7,417.6Kb mem used] [1s (+0s)]
    [create sitemap file] filename: sitemap_group_1.xml.gz, number of urls: 1 [7,419.6Kb mem used] [1s (+0s)]
    [SECTION START] cms [7,418.6Kb mem used] [1s (+0s)]
    [section] node_id: 1 [7,931.4Kb mem used] [1s (+0s)]
    [section] node_id: 118 [7,934.8Kb mem used] [1s (+0s)]
    [section] node_id: 118 [7,938.7Kb mem used] [1s (+0s)]
    [section] node_id: 122 [7,938.8Kb mem used] [1s (+0s)]
    [section] node_id: 126 [7,942.6Kb mem used] [1s (+0s)]
    [create sitemap file] filename: sitemap_cms_1.xml.gz, number of urls: 13 [7,913.9Kb mem used] [1s (+0s)]
    [create sitemap index] filename: sitemap_index.xml.gz, number of sitemaps: 7 [7,907.2Kb mem used] [1s (+0s)]
    Sitemap has been created. Click here to return [7,902.1Kb mem used] [9s (+9s)]
    


    I look forward to your replies. Thanks in advance

    Matt

    Edit:-

    I did have a search through the forums over the past couple of days and haven't been able to find anything that looked like it was a similar issue or that I could see would be a solution to this problem.

    Thanks.

    Matt

  2. #2
    vBSEO Staff Array Andrés Durán Hewitt's Avatar
    Real Name
    Andrés Durán
    Join Date
    Jul 2009
    Location
    Costa Rica
    Posts
    3,861
    Liked
    569 times
    Blog Entries
    2
    Hello,

    Please try using this .htaccess:

    RewriteEngine On

    # If you are having problems or are using VirtualDocumentRoot, uncomment this line and set it to your vBulletin directory.
    # RewriteBase /forum/

    # If you are having problems with the rewrite from content/ to content.php, uncomment this line to turn MultiViews off.
    # Options -MultiViews

    # vBSEO Mod Rewrite

    RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ vbseo_sitemap/vbseo_getsitemap.php?sitemap=$1 [L]

    RewriteCond %{REQUEST_URI} !(admincp/|modcp/|cron|vbseo_sitemap|api\.php)
    RewriteRule ^((archive/)?(.*\.php(/.*)?))$ vbseo.php [L,QSA]

    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !/(admincp|modcp|clientscript|cpstyles|images)/
    RewriteRule ^(.+)$ vbseo.php [L,QSA]

    # BEGIN W3TC Browser Cache
    <IfModule mod_mime.c>
    AddType text/css .css
    AddType application/x-javascript .js
    AddType text/html .html .htm
    AddType text/richtext .rtf .rtx
    AddType image/svg+xml .svg .svgz
    AddType text/plain .txt
    AddType text/xsd .xsd
    AddType text/xsl .xsl
    AddType text/xml .xml
    AddType video/asf .asf .asx .wax .wmv .wmx
    AddType video/avi .avi
    AddType image/bmp .bmp
    AddType application/java .class
    AddType video/divx .divx
    AddType application/msword .doc .docx
    AddType application/x-msdownload .exe
    AddType image/gif .gif
    AddType application/x-gzip .gz .gzip
    AddType image/x-icon .ico
    AddType image/jpeg .jpg .jpeg .jpe
    AddType application/vnd.ms-access .mdb
    AddType audio/midi .mid .midi
    AddType video/quicktime .mov .qt
    AddType audio/mpeg .mp3 .m4a
    AddType video/mp4 .mp4 .m4v
    AddType video/mpeg .mpeg .mpg .mpe
    AddType application/vnd.ms-project .mpp
    AddType application/vnd.oasis.opendocument.database .odb
    AddType application/vnd.oasis.opendocument.chart .odc
    AddType application/vnd.oasis.opendocument.formula .odf
    AddType application/vnd.oasis.opendocument.graphics .odg
    AddType application/vnd.oasis.opendocument.presentation .odp
    AddType application/vnd.oasis.opendocument.spreadsheet .ods
    AddType application/vnd.oasis.opendocument.text .odt
    AddType audio/ogg .ogg
    AddType application/pdf .pdf
    AddType image/png .png
    AddType application/vnd.ms-powerpoint .pot .pps .ppt .pptx
    AddType audio/x-realaudio .ra .ram
    AddType application/x-shockwave-flash .swf
    AddType application/x-tar .tar
    AddType image/tiff .tif .tiff
    AddType audio/wav .wav
    AddType audio/wma .wma
    AddType application/vnd.ms-write .wri
    AddType application/vnd.ms-excel .xla .xls .xlsx .xlt .xlw
    AddType application/zip .zip
    </IfModule>
    <IfModule mod_expires.c>
    ExpiresActive On
    ExpiresByType text/css A31536000
    ExpiresByType application/x-javascript A31536000
    ExpiresByType text/html A3600
    ExpiresByType text/richtext A3600
    ExpiresByType image/svg+xml A3600
    ExpiresByType text/plain A3600
    ExpiresByType text/xsd A3600
    ExpiresByType text/xsl A3600
    ExpiresByType text/xml A3600
    ExpiresByType video/asf A31536000
    ExpiresByType video/avi A31536000
    ExpiresByType image/bmp A31536000
    ExpiresByType application/java A31536000
    ExpiresByType video/divx A31536000
    ExpiresByType application/msword A31536000
    ExpiresByType application/x-msdownload A31536000
    ExpiresByType image/gif A31536000
    ExpiresByType application/x-gzip A31536000
    ExpiresByType image/x-icon A31536000
    ExpiresByType image/jpeg A31536000
    ExpiresByType application/vnd.ms-access A31536000
    ExpiresByType audio/midi A31536000
    ExpiresByType video/quicktime A31536000
    ExpiresByType audio/mpeg A31536000
    ExpiresByType video/mp4 A31536000
    ExpiresByType video/mpeg A31536000
    ExpiresByType application/vnd.ms-project A31536000
    ExpiresByType application/vnd.oasis.opendocument.database A31536000
    ExpiresByType application/vnd.oasis.opendocument.chart A31536000
    ExpiresByType application/vnd.oasis.opendocument.formula A31536000
    ExpiresByType application/vnd.oasis.opendocument.graphics A31536000
    ExpiresByType application/vnd.oasis.opendocument.presentation A31536000
    ExpiresByType application/vnd.oasis.opendocument.spreadsheet A31536000
    ExpiresByType application/vnd.oasis.opendocument.text A31536000
    ExpiresByType audio/ogg A31536000
    ExpiresByType application/pdf A31536000
    ExpiresByType image/png A31536000
    ExpiresByType application/vnd.ms-powerpoint A31536000
    ExpiresByType audio/x-realaudio A31536000
    ExpiresByType application/x-shockwave-flash A31536000
    ExpiresByType application/x-tar A31536000
    ExpiresByType image/tiff A31536000
    ExpiresByType audio/wav A31536000
    ExpiresByType audio/wma A31536000
    ExpiresByType application/vnd.ms-write A31536000
    ExpiresByType application/vnd.ms-excel A31536000
    ExpiresByType application/zip A31536000
    </IfModule>
    <IfModule mod_deflate.c>
    <IfModule mod_setenvif.c>
    BrowserMatch ^Mozilla/4 gzip-only-text/html
    BrowserMatch ^Mozilla/4\.0[678] no-gzip
    BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
    BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html
    </IfModule>
    <IfModule mod_headers.c>
    Header append Vary User-Agent env=!dont-vary
    </IfModule>
    <IfModule mod_filter.c>
    AddOutputFilterByType DEFLATE text/css application/x-javascript text/html text/richtext image/svg+xml text/plain text/xsd text/xsl text/xml image/x-icon
    </IfModule>
    </IfModule>
    <FilesMatch "\.(css|js|CSS|JS)$">
    <IfModule mod_headers.c>
    Header set Pragma "public"
    Header append Cache-Control "public, must-revalidate, proxy-revalidate"
    </IfModule>
    FileETag MTime Size
    <IfModule mod_headers.c>
    Header set X-Powered-By "W3 Total Cache/0.9.2.3"
    </IfModule>
    </FilesMatch>
    <FilesMatch "\.(html|htm|rtf|rtx|svg|svgz|txt|xsd|xsl|xml|HTML |HTM|RTF|RTX|SVG|SVGZ|TXT|XSD|XSL|XML)$">
    <IfModule mod_headers.c>
    Header set Pragma "public"
    Header append Cache-Control "public, must-revalidate, proxy-revalidate"
    </IfModule>
    FileETag MTime Size
    <IfModule mod_headers.c>
    Header set X-Powered-By "W3 Total Cache/0.9.2.3"
    </IfModule>
    </FilesMatch>
    <FilesMatch "\.(asf|asx|wax|wmv|wmx|avi|bmp|class|divx|doc|doc x|exe|gif|gz|gzip|ico|jpg|jpeg|jpe|mdb|mid|midi|mo v|qt|mp3|m4a|mp4|m4v|mpeg|mpg|mpe|mpp|odb|odc|odf| odg|odp|ods|odt|ogg|pdf|png|pot|pps|ppt|pptx|ra|ra m|swf|tar|tif|tiff|wav|wma|wri|xla|xls|xlsx|xlt|xl w|zip|ASF|ASX|WAX|WMV|WMX|AVI|BMP|CLASS|DIVX|DOC|D OCX|EXE|GIF|GZ|GZIP|ICO|JPG|JPEG|JPE|MDB|MID|MIDI| MOV|QT|MP3|M4A|MP4|M4V|MPEG|MPG|MPE|MPP|ODB|ODC|OD F|ODG|ODP|ODS|ODT|OGG|PDF|PNG|POT|PPS|PPT|PPTX|RA| RAM|SWF|TAR|TIF|TIFF|WAV|WMA|WRI|XLA|XLS|XLSX|XLT| XLW|ZIP)$">
    <IfModule mod_headers.c>
    Header set Pragma "public"
    Header append Cache-Control "public, must-revalidate, proxy-revalidate"
    </IfModule>
    FileETag MTime Size
    <IfModule mod_headers.c>
    Header set X-Powered-By "W3 Total Cache/0.9.2.3"
    </IfModule>
    </FilesMatch>
    # END W3TC Browser Cache


    I'm not quite sure what these rules do:

    Code:
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -l [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule ^.*$ - [NC,L]
    
    # Forum
    RewriteRule ^threads/.* showthread.php [QSA]
    RewriteRule ^forums/.* forumdisplay.php [QSA]
    RewriteRule ^members/.* member.php [QSA]
    RewriteRule ^blogs/.* blog.php [QSA]
    RewriteRule ^entries/.* entry.php [QSA]
    
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -l [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    
    RewriteRule ^.*$ - [NC,L]
    
    # MVC
    RewriteRule ^(?:(.*?)(?:/|$))(.*|$)$ $1.php?r=$2 [QSA]
    
    # Check MVC result
    RewriteCond %{REQUEST_FILENAME} -f
    RewriteRule ^(.*)$ - [NC,L]
    RewriteRule ^(.*)$ - [R=404,L]
    However they may be causing issues with the sitemap.
    Andrés Durán / Crawlability Inc.
    ˇvBSEO 3.6.0 GOLD Liberado!
    Inaugurando el NUEVO vBSEO Sitemap Generator 3.0. - ˇAHORA disponible para Clientes de vBSEO!

    Síguenos en: Facebook | Síguenos en: Twitter


  3. #3
    Junior Member Array
    Real Name
    Matt
    Join Date
    Feb 2012
    Posts
    4
    Liked
    0 times
    Hi thanks for your reply. The sitemap files are working ok now. They are being generated. I think if I remember correctly before I had vBSEO those other url rewrites where for a bit of quick seo that someone suggested on vb.org.

    The only problem that I know have is that it only seems to be adding 935 urls to the sitemaps and not the 3000 something that original generation made, before it stopped working. Do you have any suggestions as to what could be causing that.

    Thanks again for your first reply that has at least made the sitemap files work.

    Matt

  4. #4
    vBSEO Staff Array Brian Cummiskey's Avatar
    Real Name
    Brian Cummiskey
    Join Date
    Jul 2009
    Location
    btwn NYC and Boston
    Posts
    12,789
    Liked
    675 times
    Blog Entries
    2
    vbseo will only grab public urls. make sure all of your threads are able to be read by guests, or they will not be included.
    Brian Cummiskey / Crawlability Inc.
    Security bulletin - Patch Level for all supported versions released

    Unveiling the NEW vBSEO Sitemap Generator 3.0. - available NOW for vBSEO Customers!


  5. #5
    Junior Member Array
    Real Name
    Matt
    Join Date
    Feb 2012
    Posts
    4
    Liked
    0 times
    Thanks for the info Brian. All forums apart from 2 are able to be seen by guests. These other 2 forums are admin only.

Similar Threads

  1. Replies: 12
    Last Post: 09-07-2011, 09:22 AM
  2. vBulletin 4.x Problems with sitemap generator 2.6
    By TodoDream in forum Troubleshooting
    Replies: 12
    Last Post: 06-01-2010, 02:52 PM
  3. Replies: 4
    Last Post: 05-22-2010, 02:25 PM
  4. Problems with new install of vBSEO and Sitemap Generator
    By jrbeilke in forum Troubleshooting
    Replies: 12
    Last Post: 08-11-2008, 12:24 PM
  5. Problems with the sitemap generator
    By vBFreak in forum Troubleshooting
    Replies: 7
    Last Post: 09-08-2006, 09:09 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
  •