John Wills Lloyd wrote:
Adding ss_total_articles field to table site_stats...Query "ALTER TABLE wt_site_stats ADD ss_total_pages bigint(20) default -1, ADD ss_users bigint(20) default -1, ADD ss_admins int(10) default -1" failed with error code "".
There was a typo in the updater code which caused it to attempt to add fields that were already present.
Change this line in maintenance/updaters.inc: - array( 'site_stats', 'ss_total_articles', 'patch-ss_total_articles.sql' ),
to: + array( 'site_stats', 'ss_total_pages', 'patch-ss_total_articles.sql' ),
and re-run the installer.
-- brion vibber (brion @ pobox.com)