Go Back  DVD Talk Forum > Feedback > Forum Feedback and Support
Reload this Page >

Geoff: ANY way to get back the new forum Other posts?

Community
Search
Forum Feedback and Support Post forum feedback and related problems, here.

Geoff: ANY way to get back the new forum Other posts?

Thread Tools
 
Search this Thread
 
Old 04-24-01, 04:25 PM
  #1  
DVD Talk Legend
Thread Starter
 
Join Date: Oct 1999
Location: |-|@><0r L@n|)
Posts: 17,214
Likes: 0
Received 0 Likes on 0 Posts
Are they really gone for good?

We had several interesting conversations going in there. It'd be a huge shame to lose 'em all.

- David Stein
sfsdfd is offline  
Old 04-24-01, 04:33 PM
  #2  
Registered
 
GeoffK's Avatar
 
Join Date: Jan 1999
Location: Marblehead, MA
Posts: 6,948
Likes: 0
Received 0 Likes on 0 Posts
The short answer - I don't think so.

They all exist in the new DB but I have no idea how we could get them back to this DB.

GeoffK is offline  
Old 04-24-01, 05:01 PM
  #3  
Mod Emeritus
 
benedict's Avatar
 
Join Date: Oct 1999
Location: Outside of the U.S.A.
Posts: 10,674
Likes: 0
Received 1 Like on 1 Post
Possibly time consuming, but perhaps they could be placed in a "closed" forum here i.e. essentially a read-only archive.

I bet the official vB guys know how to do it. What I want to know is why Geoff wasn't warned about the server drain. There must be plenty of stats available.... the same thing happened when UBB v6.0 was tried out here. I blame Bill Gates!
benedict is offline  
Old 04-24-01, 05:03 PM
  #4  
DVD Talk Ultimate Edition
 
Join Date: Feb 2000
Posts: 4,400
Likes: 0
Received 0 Likes on 0 Posts
whats bill got to do with it? I bet jack lost almost 500 posts
conkie is offline  
Old 04-24-01, 05:14 PM
  #5  
Mod Emeritus
 
Join Date: Feb 1999
Location: Central Vermont
Posts: 3,883
Likes: 0
Received 0 Likes on 0 Posts
Originally posted by conkie
whats bill got to do with it? I bet jack lost almost 500 posts
Probably closer to 100. According to the new forum software I think it said his daily average was about 80.
Jason Northrup is offline  
Old 04-24-01, 07:53 PM
  #6  
DVD Talk God
 
Deftones's Avatar
 
Join Date: Oct 1999
Location: Arizona
Posts: 81,018
Received 1,365 Likes on 927 Posts
so, if i understand correctly, the threads are still there, just can't be transferred to this version of the software, right?
Deftones is online now  
Old 04-25-01, 12:16 AM
  #7  
DVD Talk Legend
Thread Starter
 
Join Date: Oct 1999
Location: |-|@><0r L@n|)
Posts: 17,214
Likes: 0
Received 0 Likes on 0 Posts
Geoff: I'm pretty good with file translation and stuff. It's been one of my regular tasks with C/C++, hearkening all the way back to my days when I cooked up a WAD file converter for Doom 1 (yeah, that was in 1994.)

I think there are lots of great posts over the past two days that got a really unfair shake. I'd love to take a crack at converting the new forum software's database file so that the threads can be integrated into the old forum software's database. I have no clue how I'd go about doing that, but to be perfectly honest, it really can't be <i>that</i> hard.

If you're willing to let me take a stab at it, email me, please.

<b>(edit)</b> Actually, the absolute easiest way to make this switch would be to mine the new forum software's database to extract the HTML from all of the posts. Each post could then be re-posted in a new thread. That would avoid the problem of duplicating thread numbers. I think I could probably do all this in, say, an afternoon...

All I think I'd need would be a copy of the new forum's database of posts. It's not encrypted, is it? And it doesn't contain any privileged info, like usernames/pw's, does it? If the threads reside in a separate file from the administrative/security data, I really shouldn't have any trouble making the merge. And I'm sure the forums - all of them - would like to have their posts back.

- David Stein

[Edited by sfsdfd on 04-24-01 at 10:33 PM]
sfsdfd is offline  
Old 04-25-01, 01:18 AM
  #8  
X
Administrator
 
X's Avatar
 
Join Date: Oct 1987
Location: AA-
Posts: 11,473
Received 154 Likes on 124 Posts
Originally posted by sfsdfd
...back to my days when I cooked up a WAD

- David Stein
Sorry. I just couldn't resist.
X is offline  
Old 04-25-01, 02:29 AM
  #9  
DVD Talk Legend
Thread Starter
 
Join Date: Oct 1999
Location: |-|@><0r L@n|)
Posts: 17,214
Likes: 0
Received 0 Likes on 0 Posts
Originally posted by X
Sorry. I just couldn't resist.
Yeah, they were called WAD files. My friend and I snagged the first-ever copy of Doom the day of its release, unzipped it, installed it, and ran it. The first thing in the load sequence read, "Loading WAD file..." and we just looked at each other and shrugged our shoulders.

Once Quake came along they renamed it a PAK File.

- David Stein
sfsdfd is offline  
Old 04-25-01, 08:21 AM
  #10  
DVD Talk Reviewer/ Admin
 
Adam Tyner's Avatar
 
Join Date: Sep 1999
Location: Greenville, South Cackalack
Posts: 28,819
Received 1,881 Likes on 1,238 Posts
If you updated the database offline, how would people post in the meantime, David? I really, really, really wouldn't recommend messing with <a href="http://www.mysql.com">MySQL</a> database files directly in that fashion anyway. Live updates are the only way to go with this sort of setup.

Fun crazy pseudocde, since I don't know what the tables/columns are for the new version of the software.
Code:
&lt;?php
   // pretend db connectivity stuff is here

   $threadQuery = "SELECT * " .
                  "FROM   newthreadtable " .
                  "WHERE  lastpost BETWEEN whatever AND whatever";
   // I'd never <i>really</i> use 'select *', but I don't know the structure of the new table
   // also, the 'between' would obviously be whenever the server made the switch to when
   // the old version was restored

   $threadResult = mysql_query($threadQuery);

   while ($thread = mysql_fetch_array($threadResult))
   {
       $query = "SELECT COUNT(*) AS Counted " .
                "FROM   newthreadtable " .
                "WHERE  id=$thread[id] " .
                "AND    dateline BETWEEN whatever AND whatever";
       $isNewResult = mysql_query($query);
       $isNew = mysql_fetch_array($isNewResult);
       if ($isNew[Counted])
       {
           $query = "INSERT INTO thread VALUES (" .
                    "  NULL, " .
                    "  $thread[title], " .
                    "  $thread[lastpost], " .
                    "  $thread[forumid], " .
                    "  $thread[open], " . 
                    "  $thread[replycount], " .
                    "  $thread[postusername], " . 
                    "  $thread[lastposter], " .
                    "  $thread[dateline], " . 
                    "  $thread[views], " .
                    "  $thread[iconid], " . 
                    "  $thread[notes], " . 
                    "  $thread[visible], " .
                    "  $thread[subjectindex], " . 
                    "  $thread[threadindex], " .
                    "  $thread[userindex] " .
                    ")";
           mysql_query($query);
           $id = mysql_insert_id();
       }
       else
       {
           $id = $thread[id];
       }

       $postQuery = "SELECT * " . 
                    "FROM   newposttable " .
                    "WHERE  threadid=$thread[id] " .
                    "AND    dateline BETWEEN whatever AND whatever";
       $postResult = mysql_query($postQuery);
       while ($post = mysql_fetch_array($postQuery))
       {
           $query = "INSERT INTO post VALUES (" .
                    "  NULL, " .
                    "  $id, " .
                    "  $post[username], " .
                    "  $post[userid], " . 
                    "  $post[title], " . 
                    "  $post[dateline], " . 
                    "  $post[pagetext], " .
                    "  $post[allowssmilie], " .
                    "  $post[email], " .
                    "  $post[signature], " .
                    "  $post[ipaddress], " .
                    "  $post[iconid], " . 
                    "  $post[visible] " .
                    ")";
           mysql_query($query);
       }
   }
?&gt;
This would, unless I notice some more errors later , port over all new threads from the vB 2.0, along with replies to new and existing threads. I banged this out in all of 4 minutes, so there are sure to be some flaws somewhere. I could also stick some crap in there to increment post counts accordingly, I guess, but I'm running late as it is.
Adam Tyner is online now  
Old 04-25-01, 07:18 PM
  #11  
DVD Talk Reviewer/ Admin
 
Adam Tyner's Avatar
 
Join Date: Sep 1999
Location: Greenville, South Cackalack
Posts: 28,819
Received 1,881 Likes on 1,238 Posts
Is there any interest in having me complete the script and move things over, or can I assume from the lack of response that no one cares?
Adam Tyner is online now  
Old 04-25-01, 07:39 PM
  #12  
DVD Talk Legend
Thread Starter
 
Join Date: Oct 1999
Location: |-|@><0r L@n|)
Posts: 17,214
Likes: 0
Received 0 Likes on 0 Posts
<b>I</b> think it'd be fantastic, but you'll have to talk to Geoff. Maybe email him? He may have lost track of this thread.

- David Stein
sfsdfd is offline  
Old 04-26-01, 02:27 AM
  #13  
DVD Talk Legend
 
gcribbs's Avatar
 
Join Date: Aug 1999
Location: Sacramento,Ca,USA member #2634
Posts: 11,975
Received 2 Likes on 1 Post
I thought we actually had a bunch of good discussions going also. So it might be nice to have them back. If not I guess we will have to recreate them
gcribbs is offline  
Old 04-26-01, 02:40 AM
  #14  
DVD Talk Legend
Thread Starter
 
Join Date: Oct 1999
Location: |-|@><0r L@n|)
Posts: 17,214
Likes: 0
Received 0 Likes on 0 Posts
Originally posted by gcribbs
I thought we actually had a bunch of good discussions going also. So it might be nice to have them back. If not I guess we will have to recreate them
Yeah, at least three great discussions were under way when the fit hit the shan. I know a few people tried re-pasting the whole thing in... but you can't conduct a debate that way because you just can't follow people's threads of conversation. It's not readable.

<b>Geoff:</b> Whaddaya think?

- David Stein
sfsdfd is offline  
Old 04-26-01, 05:09 AM
  #15  
DVD Talk Gold Edition
 
Join Date: Feb 1999
Location: HB, CA
Posts: 2,600
Likes: 0
Received 0 Likes on 0 Posts
Originally posted by sfsdfd

Yeah, at least three great discussions were under way when the fit hit the shan.
Yeah, I lost some posts where I conclusively proved the existence of god, figured out how to solve all our problems with China, and discovered a foolproof way to meet beautiful women and have them fall in love with you. Even worse, now I have to look at Jack's posts again.

Seriously, though, if there were a way to try it where Geoff could be absolutely certain that it was undoable, then it might be worth a try. But, if there's a chance he could clobber the database in any kind of serious way and not be able to recover, then it probably wouldn't be worth it.
belboz is offline  
Old 04-26-01, 06:25 AM
  #16  
Suspended; also need updated email
 
Join Date: Aug 1999
Posts: 16,564
Likes: 0
Received 14 Likes on 13 Posts
yeah i lost that post where i revealed who shot JFK after hacking into the FBI's database, damm!

and now i've forgotten !

was it ........ um no i don't think so
Original Desmond is offline  
Old 05-01-01, 05:56 PM
  #17  
New Member
 
Join Date: May 2001
Posts: 5
Likes: 0
Received 0 Likes on 0 Posts
I can help!

If you need a hand getting the latest version up including any lost data, send me an email and I will get you up and running...I will not accept any form of payment. I enjoy helping others out as I have been there before....
vbguru is offline  
Old 05-02-01, 02:07 AM
  #18  
Suspended; also need updated email
 
Join Date: Aug 1999
Posts: 16,564
Likes: 0
Received 14 Likes on 13 Posts
Re: I can help!

Originally posted by vbguru
If you need a hand getting the latest version up including any lost data, send me an email and I will get you up and running...I will not accept any form of payment. I enjoy helping others out as I have been there before....
nice of you to do it for free

and there was me with a H*nd Job with your name on it
Original Desmond is offline  
Old 05-02-01, 02:14 AM
  #19  
X
Administrator
 
X's Avatar
 
Join Date: Oct 1987
Location: AA-
Posts: 11,473
Received 154 Likes on 124 Posts
Re: I can help!

Originally posted by vbguru
If you need a hand getting the latest version up including any lost data, send me an email and I will get you up and running...I will not accept any form of payment. I enjoy helping others out as I have been there before....
Can you help me find my keys?
X is offline  
Old 05-02-01, 02:16 AM
  #20  
Registered
 
GeoffK's Avatar
 
Join Date: Jan 1999
Location: Marblehead, MA
Posts: 6,948
Likes: 0
Received 0 Likes on 0 Posts
I hate to say this... but my call on this is to let it be. It was hell going from the old to the new and back again, now that things are running well I don't want to mess things up by trying to re-import the old posts.

Thanks
GeoffK is offline  
Old 05-02-01, 02:29 AM
  #21  
DVD Talk Legend
Thread Starter
 
Join Date: Oct 1999
Location: |-|@><0r L@n|)
Posts: 17,214
Likes: 0
Received 0 Likes on 0 Posts
'ees too bad.

Thanks anyway, <b>gkleinman</b>.

- David Stein
sfsdfd is offline  
Old 05-02-01, 08:51 AM
  #22  
DVD Talk Special Edition
 
Join Date: Jun 2000
Location: Orlando, FL, USA
Posts: 1,216
Likes: 0
Received 0 Likes on 0 Posts
I really don't see why anyone would want the now old threads/posts from the "new" forum software to be restored.

The "Other" forum moves at the speed of light and what is informational, funny, inspirational ore even amusing one (1) minute is lost in the shuffle the next and soon forgotten.

I would think that while some discussions from "DVD Talk" and other more structured forums may have more importance for restoration at this time a restore of such data would be useless. What has it been... a week? All of the forums with the exception of "International DVD" (and a select few others) move so fast that old data is just that "old data".

Move along... nothing more to see here.
BadAsh is offline  
Old 05-02-01, 09:07 AM
  #23  
DVD Talk Reviewer/ Admin
 
Adam Tyner's Avatar
 
Join Date: Sep 1999
Location: Greenville, South Cackalack
Posts: 28,819
Received 1,881 Likes on 1,238 Posts
Restoring the posts was more desirable when the change first occurred, though, BadAsh. As things stand right now, I agree -- no big loss.
Adam Tyner is online now  
Old 05-02-01, 03:56 PM
  #24  
New Member
 
Join Date: May 2001
Posts: 5
Likes: 0
Received 0 Likes on 0 Posts
If I'm not mistaken....the admin of this forum requested help on the vBulletin Forums....thought I would offer to help. Based on the attitudes here maybe I'm just wasting my time...
and there was me with a H*nd Job with your name on it
vbguru is offline  
Old 05-02-01, 08:58 PM
  #25  
Suspended; also need updated email
 
Join Date: Aug 1999
Posts: 16,564
Likes: 0
Received 14 Likes on 13 Posts
Originally posted by vbguru
If I'm not mistaken....the admin of this forum requested help on the vBulletin Forums....thought I would offer to help. Based on the attitudes here maybe I'm just wasting my time...
and there was me with a H*nd Job with your name on it
it was a joke mate, a joke

it's because your new you don't know Desmondp very well

i take nothing seriously !

I know you were offering your services,and that was very cool of you, i wasn't joking about that, i was joking about the fact that you emphasized that you would do it for free
Original Desmond is offline  


Archive - Advertising - Cookie Policy - Privacy Statement - Terms of Service -

Copyright © 2024 MH Sub I, LLC dba Internet Brands. All rights reserved. Use of this site indicates your consent to the Terms of Use.