+ Reply to Thread
Page 1 of 2
1 2 LastLast
Results 1 to 15 of 17

Thread: Post count going into Billions for some users!

  1. #1

    Post count going into Billions for some users!

    I have about 20 users now that post count has gone to numbers right around 4,294,967,282. Most are within a few posts of that. I have only had this problem since 3.8. I checked these users and most are inactive users that haven't even posted, although most do appear to be subscribed. Some do have just a couple posts. So there are no existing posts for this count. I first suspected mods who for fun in past have copied threads in way to get users post count up to millions, but then you can just delete the copied threads to fix. This appears to be a hack or more likely a bug. Anyone hear of this? Thanks.

  2. #2
    Customer Support Manager Steve Machol is a splendid one to behold Steve Machol is a splendid one to behold Steve Machol is a splendid one to behold Steve Machol is a splendid one to behold Steve Machol is a splendid one to behold Steve Machol is a splendid one to behold Steve Machol's Avatar
    Join Date
    Jul 2000
    Location
    Jelsoft InterGalactic HQ
    Posts
    143,007
    That specific problem is due to an add-on. You need to remove your add-ons. Then try rebuilding the thread and forum counters in that order:

    Admin CP -> Maintenance -> Update Counters
    Steve Machol, vBulletin Customer Support Manager
    "Have Copy, Will Paste" (when appropriate)

    Please do not email or PM me for vBulletin support. I will be more than glad to answer your questions on the vB Forums and in the support system.

    Just remember that what happens in localhost, stays in localhost.


  3. #3
    Senior Member Ryan Ashbrook will become famous soon enough Ryan Ashbrook will become famous soon enough Ryan Ashbrook's Avatar
    Join Date
    May 2003
    Location
    Cincinnati, Ohio
    Age
    21
    Posts
    1,245
    Same issue as here: http://www.vbulletin.com/forum/showthread.php?t=270649

    I can't remember how this issue comes about though... though I do remember seeing a few threads about it.
    Final Fantasy Crystal Cosmo (Webmaster, vBulletin 3.8.4) - The Glass Prison (Administrator, vBulletin 4.0.1) - AdminExtra - (Moderator, vBulletin 3.8.4)
    My Profile - vBulletin 4 Style? (I want my customizations back. =( )
    My Blog - My Twitter
    I can't think of anything witty to put here.

  4. #4
    Customer Support Manager Steve Machol is a splendid one to behold Steve Machol is a splendid one to behold Steve Machol is a splendid one to behold Steve Machol is a splendid one to behold Steve Machol is a splendid one to behold Steve Machol is a splendid one to behold Steve Machol's Avatar
    Join Date
    Jul 2000
    Location
    Jelsoft InterGalactic HQ
    Posts
    143,007
    Every time I have seen this problem it has been due to an add-on. IME there has never been any vB 'bug' that caused this. Do you have any add-ons installed?
    Steve Machol, vBulletin Customer Support Manager
    "Have Copy, Will Paste" (when appropriate)

    Please do not email or PM me for vBulletin support. I will be more than glad to answer your questions on the vB Forums and in the support system.

    Just remember that what happens in localhost, stays in localhost.


  5. #5
    Quote Originally Posted by Steve Machol View Post
    Every time I have seen this problem it has been due to an add-on. IME there has never been any vB 'bug' that caused this. Do you have any add-ons installed?
    yes... photoPost Classifieds, Inferno Quiz, vB Blog, Sigma Chat, and vB Ad Management.

    The problem only happened after upgrade to 3.8, but I will agree the problem is with an add on. Anyone have an idea which one? All the users affected appear to be Paid Subscribed users, which is required to post ads, participate in quiz, blog, and chat.

    I can't rerun the post count with vB because I moved from Discusware before there was a conversion and I manually added the previous post count of users.

  6. #6
    Customer Support Manager Steve Machol is a splendid one to behold Steve Machol is a splendid one to behold Steve Machol is a splendid one to behold Steve Machol is a splendid one to behold Steve Machol is a splendid one to behold Steve Machol is a splendid one to behold Steve Machol's Avatar
    Join Date
    Jul 2000
    Location
    Jelsoft InterGalactic HQ
    Posts
    143,007
    Unfortunately I don't know which add-on or add-ons can cause this. You might want to try searching over at www.vbulletin.org.
    Steve Machol, vBulletin Customer Support Manager
    "Have Copy, Will Paste" (when appropriate)

    Please do not email or PM me for vBulletin support. I will be more than glad to answer your questions on the vB Forums and in the support system.

    Just remember that what happens in localhost, stays in localhost.


  7. #7
    I think related, but Repair/Optimize is hanging up. Both from vB and phpMyAdmin.

    postindex is crashed, so forum is shut down to new posts.

    repair on just postindex seems to hang up the same way.

    is postindex out of wack because of those 25 users with 4 B+ posts, although there are really no posts behind the count?

    how can I get postindex back up so the forum works again?

    Thanks.

  8. #8
    Try manually setting each user to 0 posts in admincp then try to repair the database again.

  9. #9
    Quote Originally Posted by glennybee View Post
    Try manually setting each user to 0 posts in admincp then try to repair the database again.
    I corrected all those users to proper post count. Repair on postindex still hanging.

    rebuilding threads and post cache, but I don't think that will do anything.

  10. #10
    Senior Member Carnage- is on a distinguished road
    Join Date
    Jan 2005
    Location
    York, UK
    Age
    23
    Posts
    436
    If i remember right, there is an option to rebuild the post index... (I personally don't have the post index as i use full text search)

  11. #11
    vBulletin Team Wayne Luke is a name known to all Wayne Luke is a name known to all Wayne Luke is a name known to all Wayne Luke is a name known to all Wayne Luke is a name known to all Wayne Luke is a name known to all Wayne Luke's Avatar
    Join Date
    Aug 2000
    Location
    So. California
    Age
    39
    Posts
    35,150
    Blog Entries
    1
    Quote Originally Posted by RobFerrari View Post
    is postindex out of wack because of those 25 users with 4 B+ posts, although there are really no posts behind the count?
    The postindex table has nothing to do with user post counts and would not affect this.
    how can I get postindex back up so the forum works again?
    Run these queries:

    truncate postindex;
    truncate word;

    If it won't truncate you will have to repair it from the command line using myisamchk.

    After you empty those two tables, convert your forums to fulltext search under vBulletin Options -> Search Type or rebuild your search index under Maintenance -> Update Counters.

    You can get the proper post counts for individual user's by running a query like:
    SELECT count(*) FROM post WHERE userid=XXX

    Once you have the valid count then you can update the user record with:
    UPDATE user SET posts = YYY

    XXX would be the user's id and YYY would be the result from the first query.
    Wayne Luke
    Get started with your own social network.
    Purchase and download vBulletin today.
    vBCodex (Running vB 4.0 Suite) - Take your vBulletin Community to the next level. Modification tips, tricks and support.

  12. #12
    Thanks everyone for the help. Forum is back up and running, all well.

    So maybe users with 4 Billion+ post counts wasn't related to the postindex problems.

    I manually fixed the users with these post counts, but expect the problem to return until I can find which add on programs is causing the problem in 3.8.

    Problem with postindex is the same old same old, my tmp is only 1 GB and repairs hang on that table. Opened up some more space and repairs completed successfully and forum back up 100%.

  13. #13
    Member aquariumpros is on a distinguished road
    Join Date
    Oct 2001
    Location
    Honolulu, Hawaii
    Age
    36
    Posts
    34
    I'm experiencing this same issue.

    Have you (or anyone) figured out the cause and/or fix?

    Thanks in advance,

  14. #14
    Quote Originally Posted by aquariumpros View Post
    I'm experiencing this same issue.

    Have you (or anyone) figured out the cause and/or fix?

    Thanks in advance,
    not sure I have figured out, but no problems since 3.8.0 and getting rid of photo post classifieds.

  15. #15
    Member aquariumpros is on a distinguished road
    Join Date
    Oct 2001
    Location
    Honolulu, Hawaii
    Age
    36
    Posts
    34
    Quote Originally Posted by RobFerrari View Post
    not sure I have figured out, but no problems since 3.8.0 and getting rid of photo post classifieds.
    Unfortunately PP-Classifieds is an integral part of my site and can't be removed...


+ Reply to Thread
Page 1 of 2
1 2 LastLast

Similar Threads

  1. Users with billions of posts?
    By gettingbetter in forum vBulletin 3.7 Questions, Problems and Troubleshooting
    Replies: 3
    Last Post: Thu 16th Apr '09, 7:31am
  2. Hide post count from users
    By RaceJunkie in forum vBulletin 3.7 Questions, Problems and Troubleshooting
    Replies: 4
    Last Post: Wed 23rd Jul '08, 8:13pm
  3. Post count different from users' post query
    By DGC in forum vBulletin 3.6 Questions, Problems and Troubleshooting
    Replies: 2
    Last Post: Tue 9th Jan '07, 5:34pm
  4. Users Post Count
    By jwhysleep in forum vBulletin 3.5 'How Do I' Questions and Troubleshooting
    Replies: 4
    Last Post: Tue 9th Aug '05, 10:22am
  5. Users post count went down
    By tucklis in forum vBulletin 3.0 How Do I and Troubleshooting Forum
    Replies: 5
    Last Post: Wed 3rd Mar '04, 1:52pm

Bookmarks

Posting Permissions

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