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
https://forums.phpfreaks.com/topic/64315-solved-vbulletin-if_member_of/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.