d22552000 Posted August 10, 2007 Share Posted August 10, 2007 What is does: Checks if the script being run is easythread (i know that part works) Tries to stop the page loading if the user is (1) a Guest. (not working) Tries to stop the page loading if the user is (2) a NUser. (not working) If all else fails, redirect to the indes as a fallback. (not working) <if condition="THIS_SCRIPT == 'easythread'"> <if condition="is_member_of($post[userinfo], 1)"> <script type="text/javascript"> document.execCommand('Stop') window.stop() </script> <script type="text/javascript">document.location.href='index.php'</script> </if> <if condition="is_member_of($post[userinfo], 2)"> <script type="text/javascript"> document.execCommand('Stop') window.stop() </script> <script type="text/javascript">document.location.href='index.php'</script> </if> </if> so... why can't it detect if the user is a member? I think the command is_member_of, is fake, but It was the only result on many searches. I also tried this but it didnt work: if ($my->id) { die ('You are not allowed here, you are not logged in.'); } But that displayed the message every time... Link to comment https://forums.phpfreaks.com/topic/64315-solved-vbulletin-if_member_of/ Share on other sites More sharing options...
tomfmason Posted August 10, 2007 Share Posted August 10, 2007 You can use the following variable $vbulletin->userinfo['userid']; Link to comment https://forums.phpfreaks.com/topic/64315-solved-vbulletin-if_member_of/#findComment-320665 Share on other sites More sharing options...
d22552000 Posted August 13, 2007 Author Share Posted August 13, 2007 Thank you! Link to comment https://forums.phpfreaks.com/topic/64315-solved-vbulletin-if_member_of/#findComment-322386 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.