Hi, is there a way to put threads in between threads? We are making a news archive with a vB forum and some of the updates were missed, but all of the posts are made in order by date (which goes back to 1999) SO we need a way to stick the ones we missed into the right places, along with the month/year/ etc. Is there anyway to do that?
Announcement
Collapse
No announcement yet.
Changing order of threads
Collapse
X
-
You would have to manually change the date of these posts in the database.Steve Machol, former vBulletin Customer Support Manager (and NOT retired!)
Change CKEditor Colors to Match Style (for 4.1.4 and above)
Steve Machol Photography
Mankind is the only creature smart enough to know its own history, and dumb enough to ignore it.
-
If you do it right, yes. You need to go into phpMyAdmin and modify the dateline column in the post table and enter the unix timestamp that you want. You can use this online tool to convert dates and times to Unix Timestamps:
http://www.onlineconversion.com/unix_time.htmSteve Machol, former vBulletin Customer Support Manager (and NOT retired!)
Change CKEditor Colors to Match Style (for 4.1.4 and above)
Steve Machol Photography
Mankind is the only creature smart enough to know its own history, and dumb enough to ignore it.
Comment
-
Originally posted by Steve Machol
If you do it right, yes. You need to go into phpMyAdmin and modify the dateline column in the post table and enter the unix timestamp that you want. You can use this online tool to convert dates and times to Unix Timestamps:
http://www.onlineconversion.com/unix_time.htm
I may be back soon if I mess anything up, though.Comment
-
Originally posted by zachb
Thank you so much! This is exactly what I needed.
I may be back soon if I mess anything up, though.
Use the appropriate date and change XX for each thread as appropriate.Translations provided by Google.
Wayne Luke
The Rabid Badger - a vBulletin Cloud demonstration site.
vBulletin 5 APIComment
-
update thread set dateline = 906106734 ('1998-09-18') where threadid = 320
that is the query i ran in phpmyadmin, and i got an error. what did i do wrong?
here is the error:
You have an error in your SQL syntax near '('1998-09-18') where threadid = 320' at line 1Comment
-
Originally posted by zachb
update thread set dateline = 906106734 ('1998-09-18') where threadid = 320
that is the query i ran in phpmyadmin, and i got an error. what did i do wrong?
here is the error:
You have an error in your SQL syntax near '('1998-09-18') where threadid = 320' at line 1Comment
-
Try this instead:
update thread set dateline = UNIX_TIMESTAMP ('1998-09-18') where threadid = 320Steve Machol, former vBulletin Customer Support Manager (and NOT retired!)
Change CKEditor Colors to Match Style (for 4.1.4 and above)
Steve Machol Photography
Mankind is the only creature smart enough to know its own history, and dumb enough to ignore it.
Comment
-
Well it's Wayne's query so I'm not quite sure what may be wrong. Try this:
update thread set dateline = UNIX_TIMESTAMP('".addslashes(YYYY-MM-DD)."') where threadid = xxxSteve Machol, former vBulletin Customer Support Manager (and NOT retired!)
Change CKEditor Colors to Match Style (for 4.1.4 and above)
Steve Machol Photography
Mankind is the only creature smart enough to know its own history, and dumb enough to ignore it.
Comment
-
Originally posted by Steve Machol
Well it's Wayne's query so I'm not quite sure what may be wrong. Try this:
update thread set dateline = UNIX_TIMESTAMP('".addslashes(YYYY-MM-DD)."') where threadid = xxxTranslations provided by Google.
Wayne Luke
The Rabid Badger - a vBulletin Cloud demonstration site.
vBulletin 5 APIComment
-
Ah, thanks for that Wayne. I got the 'addslashes' from one of the php files. I should have known better!Last edited by Steve Machol; Wed 27 Nov '02, 8:32pm.Steve Machol, former vBulletin Customer Support Manager (and NOT retired!)
Change CKEditor Colors to Match Style (for 4.1.4 and above)
Steve Machol Photography
Mankind is the only creature smart enough to know its own history, and dumb enough to ignore it.
Comment
widgetinstance 262 (Related Topics) skipped due to lack of content & hide_module_if_empty option.
Comment