my redirection pages some how got turned off for all my members .. is there a query i can run to turn it back on for all users ??
matt you probably have the answer to this one
thanks ...
UPDATE `mybb_users` SET `showredirect` = '1'
Do you want to remove the ability for them to change it, too??
Yes lol give it to me baby ! haha

From usercp_options, find:
<tr>
<td valign="top" width="1"><input type="checkbox" class="checkbox" name="showredirect" id="showredirect" value="1" {$showredirectcheck} /></td>
<td><span class="smalltext"><label for="showredirect">{$lang->show_redirect}</label></span></td>
</tr>
replace with:
<input type="hidden" name="showredirect" id="showredirect" value="1">
And also make sure the ACP setting is how you want it, too.