Works just fine on 2.2.9. You should double check all of the steps and make sure you pay close attention to this part of the install:
Quote:
look for the following on line 208 (second occurence in file)
|
It won't work if you place it after the first one..
--
Also, the install file db query:
Code:
ALTER TABLE `forum` ADD `allowguestpostview` SMALLINT(6) DEFAULT '1' NOT NULL
sets all of the forums to allow viewing. If you wish to turn it off on ALL forums in one easy step, run this query on your vB db:
Code:
UPDATE `forum` SET `allowguestpostview` = 0
One other thing you might wish to do is set the default to be off in the db. This can be accomplished via this query:
Code:
ALTER TABLE `forum` CHANGE `allowguestpostview` `allowguestpostview` SMALLINT( 6 ) DEFAULT '0' NOT NULL
--
Hope that helps.