Hello,
I recently added some namespaces to my wiki. After adding an article in one of the new namespaces the corresponding row in recentchanges is linked to another custum namespace (a talk namespace) and no supprise, when following that link I get an empty page.
When I look in the cur table I find the correct id in the field cur_namespace. In the table recentchanges I find a incorrect namespace id.
Anybody any idea?
Tnx,
Arjen Wildemans
Arjen Wildemans wrote:
I recently added some namespaces to my wiki. After adding an article in one of the new namespaces the corresponding row in recentchanges is linked to another custum namespace (a talk namespace) and no supprise, when following that link I get an empty page.
When I look in the cur table I find the correct id in the field cur_namespace. In the table recentchanges I find a incorrect namespace id.
You're running 1.4, with a signed TINYINT rc_namespace field -- this gives a maximum namespace key of 127. Higher keys will be cropped at 127.
Either upgrade to 1.5rc3, which increases namespace fields to a full INT size for greater range, or manually change rc_namespace to an INT. (Don't make it an UNSIGNED TINYINT -- this will then cause log entries to fail to work in recentchanges.)
-- brion vibber (brion @ pobox.com)
wikitech-l@lists.wikimedia.org