Quote:
Originally Posted by MichaelDance
Hi i use the usergroup = 8 redirect mod but when u ban an ip it dont redirect you to an page i was trying to do this myself but failed does anyone know how to do this?
i tried:
Code:
<if condition="$vbphrase[banip]">
<meta HTTP-EQUIV="REFRESH" content="0; url="http://www.urgamingzone.com/banned.html">
</if>
|
Do you want to redirect your banned members to a certain page? If so try this code instead:
HTML Code:
<if condition="$bbuserinfo['userid'] == 8">
<meta http-equiv="refresh" content="0; url=http://www.urgamingzone.com/banned.html">
</if>
If your banned group has another gid then replace 8 with the proper gid. Hope it helps.