Skip to content

Importing from phpBB 3.1.4 #7

Description

@antstanley

I had two unknown column errors importing from phpBB 3.1.4. I'm assuming they changed the table schema whilst upgrading.

The errors were in the topics table, with the field topic_approved missing, and in the posts table with the field post_approved missing. I fixed it by running these SQL commands..

ALTER TABLE phpbb_topics ADD topic_approved INT;
UPDATE phpbb_topics SET topic_approved = 0;

ALTER TABLE phpbb_posts ADD post_approved INT;
UPDATE phpbb_posts SET post_approved = 0;

Essentially I just created the missing columns, and set them to 0. Re-ran the import and it worked!

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions