Page 3 of 8 FirstFirst 1 2 3 4 5 6 7 8 LastLast
Results 31 to 45 of 117

VBSEO Sitemap Generator 2.6 Bug Reports

This is a discussion on VBSEO Sitemap Generator 2.6 Bug Reports within the Bug Reporting forums, part of the vBSEO Google/Yahoo Sitemap category; Thanks for that Mert, will do that now....

  1. #31
    Senior Member
    Real Name
    Neal
    Join Date
    Sep 2006
    Location
    Lancashire
    Posts
    215
    Liked
    0 times
    Blog Entries
    1
    Thanks for that Mert, will do that now.

  2. #32
    Senior Member
    Real Name
    CommanderTalk.com
    Join Date
    Jun 2007
    Location
    Arizona
    Posts
    372
    Liked
    2 times
    Would it be a good idea to disable the generator while it is still adding the /a/ to the urls? Will this cause issues? Or is there a fix for this that I missed?

    Thanks for all the hard work guys!
    CommanderTalk.com --> www.commandertalk.com

  3. #33
    Senior Member
    Real Name
    Neal
    Join Date
    Sep 2006
    Location
    Lancashire
    Posts
    215
    Liked
    0 times
    Blog Entries
    1
    Yeah would like to know if best to delete it and stop it creating new sitemaps for the time being.

  4. #34
    vBSEO Staff Ace Shattock's Avatar
    Real Name
    Ace Shattock
    Join Date
    Jul 2005
    Location
    Auckland, New Zealand, New Zealand
    Posts
    4,012
    Liked
    13 times
    Quote Originally Posted by Neal View Post
    Yeah would like to know if best to delete it and stop it creating new sitemaps for the time being.
    This is what I have done.. seeing '1 indexed URL' was all I was getting, I didn't see any issue in deleting it.

  5. #35
    Member
    Real Name
    Angel
    Join Date
    Sep 2009
    Posts
    96
    Liked
    8 times
    Quote Originally Posted by Neal View Post
    Heh, quickest bug report?

    Creating a sitemap via the Admin CP gives me a database error:
    Quote Originally Posted by sandrose View Post
    another bug:


    Database error in vBulletin 4.0.0 Release Candidate 2:

    Invalid SQL:

    SELECT ap.*,p.caption
    FROM albumpicture ap
    LEFT JOIN picture p on p.pictureid=ap.pictureid
    WHERE state = 'visible' AND albumid = '1';

    MySQL Error : Table 'xxxxxxxxxxx_forum.albumpicture' doesn't exist
    Error Number : 1146
    Request Date : Monday, December 14th 2009 @ 11:48:37 AM
    Error Date : Monday, December 14th 2009 @ 11:48:38 AM
    Script : http://www.xxxxxxxxxxxs.com/xxxxxxxx...cron&cronid=62
    Referrer : http://www.xxxxxxxxxxxs.com/xxxxxxxx....php?do=modify
    IP Address : xx.xxx.xxx.xxx
    Username : xxxxx
    Classname : vB_Database
    MySQL Version : 5.0.85-community



    Database error in vBulletin 4.0.0 Release Candidate 2:

    Invalid SQL:

    SELECT gp.*,p.caption
    FROM socialgrouppicture gp
    LEFT JOIN picture p on p.pictureid=gp.pictureid
    WHERE state = 'visible' AND groupid = '1';

    MySQL Error : Table 'xxxxxxxxxxx_forum.socialgrouppicture' doesn't exist
    Error Number : 1146
    Request Date : Monday, December 14th 2009 @ 12:06:13 PM
    Error Date : Monday, December 14th 2009 @ 12:06:14 PM
    Script : http://www.xxxxxxxxxxxs.com/xxxxxxxx...cron&cronid=62
    Referrer : http://www.xxxxxxxxxxxs.com/xxxxxxxx....php?do=modify
    IP Address : 84.xxx.xxx.xxx
    Username : xxxxx
    Classname : vB_Database
    MySQL Version : 5.0.85-community
    -----------










    nvalid SQL:

    Just confirming this error on my end. i followed the suggestions till the following updates.other then that everything went through fine but those two errors mentioned...

  6. #36
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    23,111
    Liked
    622 times
    Blog Entries
    4
    Quote Originally Posted by spj8082 View Post
    Just confirming this error on my end. i followed the suggestions till the following updates.other then that everything went through fine but those two errors mentioned...
    Please check VBSEO Sitemap Generator 2.6 Bug Reports
    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

  7. #37
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    23,111
    Liked
    622 times
    Blog Entries
    4
    Couple more bug fixes . These edits will fix forumname defined as a problem + deleting sitemap reports log. After fixing blog urls bug we'll release a beta version of sitemap generator also.

    Inside vbseo_sitemap/vbseo_getsitemap.php file

    Find
    Code:
    error_reporting(E_ALL&~E_NOTICE);
    Replace with
    Code:
    error_reporting(E_ALL&~E_NOTICE & ~8192);

    Find
    Code:
    set_magic_quotes_runtime(0);
    Replace with
    Code:
    if(function_exists('ini_set'))
            ini_set('magic_quotes_runtime', 0);
    Inside vbseo_sitemap/vbseo_sitemap_functions.php file

    Find
    Code:
    if(@include_once(DIR . '/includes/functions_vbseo.php'))
    Replace with
    Code:
    if((@include_once(DIR . '/vbseo/includes/functions_vbseo.php'))
    ||
    (@include_once(DIR . '/includes/functions_vbseo.php'))
    )

    Find
    Code:
    global $db, $vboptions;
    Replace with
    Code:
    global $db, $vboptions, $vbseo_progress;

    Find
    Code:
    global $vbseo_vars, $vboptions, $vbseo_stat;
    Replace with
    Code:
    global $vbseo_vars, $vboptions, $vbseo_stat, $vbseo_sm_dupcheck;
           $urlhash = md5($url);
           if($vbseo_sm_dupcheck[$urlhash]++>0)return false;
    Find
    Code:
    unlink(VBSEO_DAT_PROGRESS);
    Replace with
    Code:
    @unlink(VBSEO_DAT_PROGRESS);
    Find
    Code:
    {
              $vbseo_progress['step2'] = $vbseo_progress['step3'] = 0;
              $vbseo_progress['step'] = $step;
    Add after
    Code:
    vbseo_save_progress();
    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

  8. #38
    Member
    Real Name
    administrator
    Join Date
    Sep 2006
    Location
    Dodge City
    Posts
    62
    Liked
    0 times
    Quote Originally Posted by Brian Cummiskey View Post
    robots.txt only works in root. Any robots files in a folder will never be read by a bot.

    Is anyone else getting these /a/ urls in their 2.6 sitemaps?

    I'm getting this same issue, but the links do not resolve. Also getting Red X in sitemaps @ google webmaster tools.

    vB4.0 pl1
    VBSEO 3.5 rc1 pl1
    Sitemaps 2.6

    Sitemap Index Submitted:
    http://www.dodgeboard.com/forums/sitemap_index.xml.gz

    Sitemap within Index:
    http://www.dodgeboard.com/forums/sitemap_1.xml.gz

    Sample output:
    <loc>http://www.dodgeboard.com/forums/a/index5.html</loc>
    <priority>0.8117</priority>
    <lastmod>2009-12-27T18:51:05+00:00</lastmod>
    <changefreq>daily</changefreq>
    </url>

    <url>
    <loc>http://www.dodgeboard.com/forums/a/index6.html</loc>
    <priority>0.8093</priority>
    <lastmod>2009-12-27T18:51:05+00:00</lastmod>
    <changefreq>daily</changefreq>
    </url>

    <url>
    <loc>http://www.dodgeboard.com/forums/a/index7.html</loc>
    <priority>0.807</priority>
    <lastmod>2009-12-27T18:51:05+00:00</lastmod>
    <changefreq>daily</changefreq>
    </url>

    <url>
    <loc>http://www.dodgeboard.com/forums/a/index8.html</loc>
    <priority>0.8046</priority>
    <lastmod>2009-12-27T18:51:05+00:00</lastmod>
    <changefreq>daily</changefreq>
    </url>
    From Google:

    Show sitemap: forums/sitemap_1.xml.gz Error: The last attempt at downloading the Sitemap failed. The details below are representative of the last successful download
    General HTTP error: 404 not found
    We encountered an error while trying to access your Sitemap. Please ensure your Sitemap follows our guidelines and can be accessed at the location you provided and then resubmit.
    I can open the link in a browser, why can't Google?

    Brian, if you would like to use my board for testing, let me know. I will supply you with ftp/admincp access.

  9. #39
    Senior Member
    Real Name
    Neal
    Join Date
    Sep 2006
    Location
    Lancashire
    Posts
    215
    Liked
    0 times
    Blog Entries
    1
    Quote Originally Posted by Mert Gökçeimam View Post
    Couple more bug fixes . These edits will fix forumname defined as a problem + deleting sitemap reports log. After fixing blog urls bug we'll release a beta version of sitemap generator also.

    Inside vbseo_sitemap/vbseo_getsitemap.php file

    Find
    Code:
    error_reporting(E_ALL&~E_NOTICE);
    Replace with
    Code:
    error_reporting(E_ALL&~E_NOTICE & ~8192);

    Find
    Code:
    set_magic_quotes_runtime(0);
    Replace with
    Code:
    if(function_exists('ini_set'))
            ini_set('magic_quotes_runtime', 0);
    Inside vbseo_sitemap/vbseo_sitemap_functions.php file

    Find
    Code:
    if(@include_once(DIR . '/includes/functions_vbseo.php'))
    Replace with
    Code:
    if((@include_once(DIR . '/vbseo/includes/functions_vbseo.php'))
    ||
    (@include_once(DIR . '/includes/functions_vbseo.php'))
    )

    Find
    Code:
    global $db, $vboptions;
    Replace with
    Code:
    global $db, $vboptions, $vbseo_progress;

    Find
    Code:
    global $vbseo_vars, $vboptions, $vbseo_stat;
    Replace with
    Code:
    global $vbseo_vars, $vboptions, $vbseo_stat, $vbseo_sm_dupcheck;
           $urlhash = md5($url);
           if($vbseo_sm_dupcheck[$urlhash]++>0)return false;
    Find
    Code:
    unlink(VBSEO_DAT_PROGRESS);
    Replace with
    Code:
    @unlink(VBSEO_DAT_PROGRESS);
    Find
    Code:
    {
              $vbseo_progress['step2'] = $vbseo_progress['step3'] = 0;
              $vbseo_progress['step'] = $step;
    Add after
    Code:
    vbseo_save_progress();
    Mmm done all the all the latest edits now my sitemap is blank

    http://www.burnleyweb.com/forum/sitemap_index.xml.gz

  10. #40
    Senior Member
    Real Name
    Neal
    Join Date
    Sep 2006
    Location
    Lancashire
    Posts
    215
    Liked
    0 times
    Blog Entries
    1
    9
    Missing XML tag
    This required tag is missing. Please add it and resubmit.
    Parent tag: sitemapindex
    Tag: sitemap
    Problem detected on: Dec 29, 2009
    Is now what Google tells me, was actually working again before the changes.

  11. #41
    vBSEO.com Webmaster Mert Gökçeimam's Avatar
    Real Name
    Lizard King
    Join Date
    Oct 2005
    Location
    Istanbul, Turkey, Turkey
    Posts
    23,111
    Liked
    622 times
    Blog Entries
    4
    Hello Neal ,

    It looks like you still didn't apply all bug fixes as your forum urls are still listed as a in your sitemaps. If you applied all file edits please make sure you dleete all your sitemap files and regenerate them.
    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

  12. #42
    Senior Member
    Real Name
    Neal
    Join Date
    Sep 2006
    Location
    Lancashire
    Posts
    215
    Liked
    0 times
    Blog Entries
    1
    I went back to the default beta sitemap as the edits just gave me blank pages so that's probably why the "a" are appearing again.

  13. #43
    Junior Member
    Real Name
    Mohammed Bedaiwi
    Join Date
    Sep 2008
    Posts
    14
    Liked
    0 times
    I have this error when I applied the modification:

    Warning: fwrite() expects parameter 1 to be resource, integer given in /home/xxx/public_html/xxx/vbseo_sitemap/vbseo_sitemap_functions.php on line 976

  14. #44
    Member magz's Avatar
    Real Name
    Tony
    Join Date
    Dec 2006
    Posts
    60
    Liked
    2 times
    Ive applied all edits, could someone tell me if this looks correct please

    My sitemap

  15. #45
    vBSEO Staff Brian Cummiskey's Avatar
    Real Name
    Brian Cummiskey
    Join Date
    Jul 2009
    Location
    btwn NYC and Boston
    Posts
    12,789
    Liked
    657 times
    Blog Entries
    2
    Your sitemap looks fine. just make sure there's no errors in google webmaster tools.

Page 3 of 8 FirstFirst 1 2 3 4 5 6 7 8 LastLast

Similar Threads

  1. vBSEO Sitemap Reports
    By voltamy in forum Troubleshooting
    Replies: 20
    Last Post: 03-09-2009, 04:59 AM
  2. Blank vBSEO Sitemap Reports
    By Bilge in forum Troubleshooting
    Replies: 8
    Last Post: 02-26-2009, 06:05 PM
  3. ÎØÇ İí vBSEO Sitemap Reports
    By f1f7.net in forum العربية
    Replies: 8
    Last Post: 08-19-2008, 04:02 AM
  4. vbseo sitemap reports hatası
    By jacckhal in forum Türkçe
    Replies: 1
    Last Post: 03-19-2008, 05:13 PM

Posting Permissions

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