MyBB Community Forums

Full Version: Finding a specific numbered post
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
My forum is closing in on 300K total posts and I am curious if it is possible to locate the specific post when the time comes (3.4 days)?

Thanks,

Jeremy

I do not think that will work for my situation because I will not know who posted the 300K post.

Is there a way via phpMyAdmin to view the "posts" table and be able to tell which post is the 300K?
SELECT pid FROM `mybb_posts` LIMIT 299999, 1;

This'll be the 300,000th post stored in the database Smile
Was going to say hot link it via the URL, but then I thought again. Toungue

I'd say MattRogowski is more onto it.