|
well ensure the database your using is 4.1.1
The column Modaccess was added to Photopost 3.2 and your missing it.
If your database is not valid as in your have not ran the upgrades from prior version to the version your running or installing you can not guarantee things to work.
You can add that column with this in phpmyadmin
ALTER TABLE usergroups ADD modaccess smallint(3) NOT NULL default '0';
However as stated I would ask why you dont have that column if you where running 4.1
|