Jump to content

[SOLVED] vBulletin if_member_of


d22552000

Recommended Posts

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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.