https://bugzilla.wikimedia.org/show_bug.cgi?id=19127
Tim Starling <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords|testme | --- Comment #2 from Tim Starling <[email protected]> 2009-06-09 15:48:29 UTC --- Reproduced. This will occur when you set $wgDBadminuser='postgres' in AdminSettings.php and then run update.php. It will work just fine if you set $wgDBadminuser='wikiuser' (or whatever your unprivileged user is called), and that's what you should do in the future. To repair a broken database, you can do: ALTER TABLE change_tag OWNER TO wikiuser; ALTER TABLE tag_summary OWNER TO wikiuser; ALTER TABLE valid_tag OWNER TO wikiuser; If you're upgrading from an earlier version, there may be more tables to fix. You can find them with the "\d" command in psql. I think I'll do a documentation fix for 1.15 and a more aggressive fix in trunk/1.16. -- Configure bugmail: https://bugzilla.wikimedia.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug. You are on the CC list for the bug. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
