I apparently missed the earlier posts that started this thread. Is there any way to repost those?
Oscar
Total posts: 1323
11/26/2006 11:28 AM
there never were any earlier posts......
mwinter
Total posts: 4328
11/26/2006 1:19 PM
there were he just deleted them.
MAJOR ADMIN EDIT: actually he didnt' delete them; some crappy MySQL mishap caused his user account to be initialized with an avatarId value of "0" which is undefined (newbies are supposed to have an avatarId of "1" which is the default thing you see now). whenever the post grabbing system tried to print out what he had said it was searching the database for an avatar entry that wasn't there. i'm surprised it didn't print out an error but anyway that's that.
mwinter
Total posts: 4328
11/26/2006 1:29 PM
I will repost this one because its pretty sweet:
Drew
Total posts: 5115
11/26/2006 1:34 PM
On that note was anybody watching Spiderman 2 on TV friday night? During the commercial for Spiderman 3 they
Drew
Total posts: 5115
11/26/2006 1:39 PM
Here's what I'm talking about:
mike
Total posts: 2298
11/27/2006 12:17 AM
mmmmm fizzy aj. That stuff strong enough to get you drunk yet?
Drew
Total posts: 5115
11/27/2006 6:00 AM
I think I'm gonna put it in the cellar.
mwinter
Total posts: 4328
1/30/2007 11:07 AM
WHOOPS: actually he didnt' delete his posts; some crappy MySQL mishap caused his user account to be initialized with an avatarId value of "0" which is undefined (newbies are supposed to have an avatarId of "1" which is the default thing you see now). whenever the post grabbing system tried to print out what he had said it was searching the database for an avatar entry that wasn't there. i'm surprised it didn't print out an error but anyway that's that.
DOUBLE WHOOPS: Actually I just figured out what really happened.
The account was created correctly with avatarId of 1.
He went to "Edit Your Account"
Without uploding an avatar he hit the update button
My buggy account settings php had this line of code in it: if($avatarId == "") $avatarId = 0; when it should have said: if($avatarId == "") $avatarId = 1; This conditional statement will only return true if there are no avatar entries for that user (otherwise something will be selected in the list of avatars available when the user hits update) which is normal for any new user. My B guys. My B.