View Full Version : File structure on server - where do I find threads
K-fab
11-23-2022, 04:50 PM
Yes, I've searched....
I'm trying to find, on my server, the location of threads.
Where would I look to find this thread, as an example?
www.minibuggy.net/forum/projects-progress/19848-mini-raptor-k-fab-style.html
Thanks in advance.
twistsol
11-27-2022, 12:40 AM
You should find it in the database in the table "NODE"
If you look at the link you provided,
http://www.minibuggy.net/forum/projects-progress/19848-mini-raptor-k-fab-style.html
The number in the link to your thread 19848 is the nodeid for the first post in the thread.
Subsequent posts are also in the node table where the the parentid field in the node table = nodeid from your link above.
To get the first post
select * from node where nodeid = 19848;
To get the subsequent posts
Select * from node where parentid = 19848;
Note that this is based on VB5. I don't remember if VB4 or VB3 were different. Too old to remember and too lazy to look it up.
K-fab
11-27-2022, 01:23 AM
Thanks for that - now, where exactly will I find this? I'm seeing a coding that you're supplying. Where am I inserting this line to find the code? In my Forum Manager?
I'm (ignorantly) hoping that I can find the directory or the lead to the directory on the server.
Unfortunately I'm going to be shutting down my forum (thanks Facebook!) and want to save a few of the threads that are there.
Totally appreciate the last sentence.
Dead Eddie
11-27-2022, 05:08 PM
I'm (ignorantly) hoping that I can find the directory or the lead to the directory on the server.
Threads are stored in the database, not the file system. There's no file to download. You'll have to query the database, or save the page from the browser window.
K-fab
11-27-2022, 10:23 PM
Ah, that makes sense.
No user friendly way to save threads... Darned.
Hostboard
11-28-2022, 10:50 AM
Ah, that makes sense.
No user friendly way to save threads... Darned.
Yes, you can.
View the link you provided.
Right side on top of thread you have "Thread Tools"
Click on this and select "Show Printable Version"
Now in your browser window you can either right click the mouse button and select print to print to your printer OR select the print option from the drop-down menu of your browser.
Now in the printer list, you can select; "Save as PDF" (if you have at least Adobe Reader DC installed (free), "Microsoft XPS Document Writer", "Microsoft Print to PDF" and save the file locally.
You can also select "View Page Source" on the printable page and save the HTML file locally, then view from your browser
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.