My VPS was recreated today (moved to FC5 with php5 and mysql5) and now I'm having issues with the forum - each post is written with id of '0' and then the forum can't find it. I can go in and manually change the post id to the correct number and it seems to be fine, but new topics and replies are writing post id's as '0' - any idea what gives?
I'd think a corrupted forum file would corrupt the posts table, not just write the post id to '0'. I'd also think a corrupted posts table wouldn't work if I edited the topic (works fine).
Is there a setting somewhere that says what the last post id is? Maybe that's the setting that's corrupt...
Express Hosting
"We are the official hosting company of UBB.threads. Ask us about our free migration services to migrate your UBB.threads installation."
#182785 - 04/17/0709:25 PMRe: Broken Forum
[Re: AllenAyres]
Registered: 06/04/06
Posts: 10164
Loc: Aberdeen, WA
It sounds like the auto_increment field is messed up. That field is supposed to automatically be populated with the next available number, always getting bigger, since it keeps trying to put it in as zero it sounds like that's the problem. I'm not sure how that can be fixed, but I'll see if I can find any info.
ugh, every table looks like it should be auto_increment in the id column's extra field (naturally), except that it's now gone. I have to go back and fix every table now. Any shortcut command?
Tell me about it - there's 21 databases on that vps I have to go through and see what's broke. Most of them I'm going to drop the tables and re-create.
Registered: 06/04/06
Posts: 10164
Loc: Aberdeen, WA
The first thing you can try is to reset the auto_increment field to what it should be. First, you'd need to find the max id for the table. For example, the posts table.
select MAX(POST_ID) from ubbt_POSTS
That will come back with some number, say 12345. Add one to that number and use it in the following query:
ALTER TABLE ubbt_POSTS AUTO_INCREMENT=123456;
If that doesn't fix it then it might require altering the row to drop the auto_increment field and then readding it.
ALTER TABLE ubbt_POSTS CHANGE POST_ID POST_ID int(11) unsigned primary key
Even though the tables are already messed up, I'd recommend doing a backup before doing anything, just in case something happens and it makes it worse.
Thank you, that's what I did 44 times last night - actually with the first one I edited the column manually with phpmyadmin then just copied the resulting mysql command into ultraedit ( ) to save for the second forum I started to write an altertable script for practice, but at 1am I decided I don't need to practice that much
I have to sort out photopost on those 2 sites then basically drop the other databases on the other sites and re-install.
I don't think we'll be re-creating the vps any time soon again