Maximum Displayed Posts Before Page Split

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Nightclubber
    Member
    • May 2005
    • 37
    • 4.2.x

    [Forum] Maximum Displayed Posts Before Page Split

    Hi guys, I have vBulletin 4.2.0 PL3 installed. I have configurated the "Maximum Displayed Posts Before Page Split" to 20 and removed the "User-Settable Maximum Displayed Posts" options.
    Now that users dont have option to change these, what will happen with users that had it configured for 40 posts per page for example?
    Will it be updated automatically for everybody ? What column in the database should i check to be sure everybody has this new configuration applied now ?

    Thanks
  • AliMadkour
    Senior Member
    • Dec 2004
    • 1588
    • 6.X

    #2
    You can run this query to apply default option to all users
    Code:
    UPDATE `user` SET maxposts='-1';
    *Please take a full database backup before running manual queries, Also don't forget to add table prefix if you use it

    you should able to locate the current option in user table > maxposts field

    Former vBulletin Support Staff
    Need Help?, Or P.M. Me

    Comment

    • Nightclubber
      Member
      • May 2005
      • 37
      • 4.2.x

      #3
      Thanks Ali, you rock

      Comment

      Related Topics

      Collapse

      Working...