Page 1 of 2 1 2 LastLast
Results 1 to 15 of 19

TAGs problem

This is a discussion on TAGs problem within the Troubleshooting forums, part of the vBSEO SEO Plugin category; today i checked Google webmaster pages and i noticed that it shows warning ( URLs not accessibl ) . i ...

  1. #1
    Member
    Real Name
    Mecho
    Join Date
    Dec 2007
    Location
    Iran
    Posts
    86
    Liked
    0 times

    TAGs problem

    today i checked Google webmaster pages and i noticed that it shows warning (URLs not accessibl) . i checked the links and all are Tags ( 4 links ) . when i clicked on links i got this error :

    Invalid Tag specified. If you followed a valid link, please notify the admin...
    i logged in and i could see !!! this is first problem

    And second is that in 2 of those links (logged in or not) i got the same error . tried to add the tags and i get TAGS is already exists ! searched in tags page , couldnt find it too !!

    Any idea ??

    -------------

    this is the Exact post that i posted in Vb.com (here) and a user replied that vbseo is the reason that he fixed it by ... ( Read more )

    So i'm wondering is it the best available Solution ?

    Thanks

  2. #2
    Senior Member
    Real Name
    Michael Biddle
    Join Date
    Jan 2007
    Location
    Southern California
    Posts
    7,097
    Liked
    5 times
    Did you delete those tags? What are the URLs that are pointing the them?
    The Forum Hosting - Forum Hosting from the Forum Experts

  3. #3
    Member
    Real Name
    Mecho
    Join Date
    Dec 2007
    Location
    Iran
    Posts
    86
    Liked
    0 times
    No, i havent . today i goes to copy and paste the links here and i saw that links are changed !!!! when u are guest and u check those urls u can get the Error message but when u are logging into the website there is no error !!

    here is NEW links > 1 - 2

    Google Message :
    URLs not accessible
    When we tested a sample of the URLs from your Sitemap, we found that some URLs were not accessible to Googlebot due to an HTTP status error. All accessible URLs will still be submitted

    HTTP Error: 404 (Not found)

  4. #4
    Senior Member
    Real Name
    Michael Biddle
    Join Date
    Jan 2007
    Location
    Southern California
    Posts
    7,097
    Liked
    5 times
    The threads in which those tags are in, are they in a public accessible forum? Or are they a private forum? That might be the reason you are getting that error.
    The Forum Hosting - Forum Hosting from the Forum Experts

  5. #5
    Member
    Real Name
    Mecho
    Join Date
    Dec 2007
    Location
    Iran
    Posts
    86
    Liked
    0 times
    yea . those forums are private ! but why they are indexed in the Sitemaps ?!

    and why google shows HTTP Error: 404 (Not found) ?

  6. #6
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,744
    Liked
    169 times
    Hello,

    try to modify vbseo_sitemap_functions.php file:
    FIND:
    PHP Code:
                 $tcount $db->query_first("
                     SELECT count(*)as cnt,max(dateline) as lastupdate
                     FROM " 
    TABLE_PREFIX "tagthread
                     WHERE tagid='
    $rrow[tagid]'
                 "
    ); 
    REPLACE WITH:

    PHP Code:
                 $tcount $db->query_first("
                       SELECT COUNT(*) as cnt,max(lastpost) as lastupdate
                       FROM " 
    TABLE_PREFIX "thread AS thread
                       INNER JOIN " 
    TABLE_PREFIX "tagthread AS tagthread ON
                           (tagthread.tagid = 
    $rrow[tagid] AND tagthread.threadid = thread.threadid)
                       WHERE thread.forumid IN(" 
    implode(', '$vbseo_vars['forumslist']) . ")
                           AND thread.visible = 1
                           AND thread.sticky IN (0, 1)
                           AND thread.open <> 10
                       GROUP BY tagthread.tagid
                 "
    );
                 if(!
    $tcount['cnt'])
                     continue; 
    and regenerate sitemap.
    Last edited by Oleg Ignatiuk; 08-07-2008 at 11:23 AM.

  7. #7
    Member
    Real Name
    Mecho
    Join Date
    Dec 2007
    Location
    Iran
    Posts
    86
    Liked
    0 times
    i did that change , ran the sitemap and i got this database error :

    Database error in vBulletin 3.7.2:

    Invalid SQL:

    SELECT COUNT(*) as cnt,max(dateline) as lastupdate
    FROM thread AS thread
    INNER JOIN tagthread AS tagthread ON
    (tagthread.tagid = 1 AND tagthread.threadid = thread.threadid)
    WHERE thread.forumid IN(1, 3, 8, 9, 123, 72, 128, 124, 64, 65, 85, 86, 87, 88, 90, 91, 89, 92, 81, 52, 39, 69, 70, 137, 11, 12, 33, 28, 29, 31, 32, 27, 16, 76, 13, 14, 131, 105, 108, 107, 111, 109, 15, 110, 96, 37, 26, 35, 36, 122, 101, 77, 10, 18, 23, 24, 25, 68, 21, 136, 112, 71, 126, 78, 19, 38, 73, 53, 79, 20, 62, 63, 66, 42, 93, 43, 48, 49, 44, 50, 51, 47, 54, 55, 95, 102, 56, 57, 132, 80, 58, 115, 116, 117, 118, 119, 121, 125, 127, 129, 130, 133, 134, 135, 103, 113, 60, 22, 59, 104, 67)
    AND thread.visible = 1
    AND thread.sticky IN (0, 1)
    AND thread.open <> 10;

    MySQL Error : Column 'dateline' in field list is ambiguous
    Error Number : 1052
    Also i have problem with pinging the search engines too ! 20 days no PING !

  8. #8
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,744
    Liked
    169 times
    Try to replace "dateline" with "lastpost" in the query.

  9. #9
    Member
    Real Name
    Mecho
    Join Date
    Dec 2007
    Location
    Iran
    Posts
    86
    Liked
    0 times
    now i get this :

    Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 36751806 bytes) in /home/public_html/forum/vbseo_sitemap/vbseo_sitemap_functions.php on line 1307

  10. #10
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,744
    Liked
    169 times
    Please check this: High memory usage
    Note: I've updated the post above with correct code replacement: TAGs problem
    Last edited by Oleg Ignatiuk; 08-07-2008 at 11:35 AM.

  11. #11
    Member
    Real Name
    Mecho
    Join Date
    Dec 2007
    Location
    Iran
    Posts
    86
    Liked
    0 times
    It seems that problem resolved .

    i just resubmit my sitemaps in google . and i will update this thread about the Result .

    thanks for great support .

  12. #12
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,744
    Liked
    169 times
    Great! Let us know if you have any issues.

  13. #13
    Member
    Real Name
    Mecho
    Join Date
    Dec 2007
    Location
    Iran
    Posts
    86
    Liked
    0 times
    unfortunately Still googles shows the Same warning that i had before !

  14. #14
    vBSEO Staff Oleg Ignatiuk's Avatar
    Real Name
    Oleg Ignatiuk
    Join Date
    Jun 2005
    Location
    Belarus
    Posts
    25,744
    Liked
    169 times
    Are there *new* URLs reported? What is the date of request displayed in "Last Calculated" column in google webmaster account?

  15. #15
    Member
    Real Name
    Mecho
    Join Date
    Dec 2007
    Location
    Iran
    Posts
    86
    Liked
    0 times
    yeah they are new .

    Last Downloaded : 11 hours ago

    i have Resubmit them all Again after that i made those changes in the file and setting!

Page 1 of 2 1 2 LastLast

Similar Threads

  1. help.. google duplicate tags description
    By m7shsh in forum Troubleshooting
    Replies: 7
    Last Post: 03-10-2009, 11:15 PM
  2. Problem mit Tags
    By Silmarillion in forum Deutsch
    Replies: 3
    Last Post: 05-13-2008, 03:10 PM
  3. tags problem ( +,- ) and ( Turkish characters )
    By want3d in forum General Discussion
    Replies: 7
    Last Post: 05-03-2008, 05:40 PM
  4. problem with zoints thread tags
    By croportal in forum General Discussion
    Replies: 0
    Last Post: 11-20-2006, 02:48 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
  •