Hi,

I triied to upgrade to 5.3. I only have problems with the Organic Groups module.
When turning update.php, it says that og_ancestry table doesn't exist. The updating process didn't create this table.

So I tried to do the upgrading process again. First I deleted the DB and imported the old from 4.7.5.
I created manualiy the og_anestry table with:

CREATE TABLE `og_ancestry` (
`nid` int(11) NOT NULL default '0',
`group_nid` int(11) NOT NULL default '0',
`is_public` int(1) NOT NULL default '0',
KEY `nid` (`nid`),
KEY `group_nid` (`group_nid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

I applied the update.php, but it didn't change anytihing, the og_ancestry table is still empty.
So when I go to the group page http://mysite.com/og I can see all my existing groups. When I click on a given group, it says that there are "no posts in this group".

There are posts, but they don't apperar because of this empty og_ancestry table supposed to contain the info about which node is associated with which group.

Did anybody have this problem by upgrading? How to solve it?
thanks

Comments

daja’s picture

I tried the update one more time. The OG module work pretty good now.
The problem was that the DB wasn't updated correctly for an other module during the unpdating process, so I suppose the rest wasn't updated.
I disabled the problematic module, updated the DB and it works now.