Log in

View Full Version : Moving a thread with php and mysql


PH03N1X
04-27-2008, 07:28 PM
I am making a rapidshare link checker for vbulletin and I need to find out how to move a thread with php and mysql so when it finds a dead link in the first post; it will move it to a dead link forum out of sight.
Does any one have simple code for doing this?

King Kovifor
04-27-2008, 07:39 PM
Depending on what triggers the move, changing the thread ID should work for you...

PH03N1X
04-27-2008, 07:54 PM
I changed the forumid to the thread to 8 (which is the forum I am sending it to) and it keeped the post count, thread count, and last post in the thread the same which it should bring down to the right amount of thread count and post count and also it should change the last post to the one before the one that got moved. it did move it except for those things.

--------------- Added 1209330989 at 1209330989 ---------------

I guess I can run this sql command to get the last post for the forum and put the info in the last post of the forum.
SELECT lastpostid FROM vb_thread WHERE forumid = 2 ORDER BY lastpost DESC LIMIT 1;
and minus how many post there where from the thread from the forum and get the post count stuff right