MyBB Community Forums

Full Version: Redirection Pages sql Query
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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 Smile

thanks ...
UPDATE `mybb_users` SET `showredirect` = '1'

Smile

Do you want to remove the ability for them to change it, too??
Yes lol give it to me baby ! haha
Big Grin 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.
thanks u da man !