vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Permission code (https://vborg.vbsupport.ru/showthread.php?t=173174)

anuanu 03-16-2008 01:57 PM

Permission code
 
What would the code be to not allow unregistered users go to my custom pages? Either template code or html will work.

Thanks in advance.

MoT3rror 03-16-2008 04:31 PM

PHP:
PHP Code:

if($vbulletin->userinfo['userid'] == 0)
{
//user isn't signed (error message goes here)


Template:
Code:

<if condition="$bbuserinfo[userid] == 0">User isn't currently signed in</if>

Lynne 03-16-2008 04:40 PM

I use a slightly different code. I must have gotten it from vb somewhere, cuz I don't just make these up. :)

PHP Code:

if (!isset($vbulletin->userinfo['userid']) OR $vbulletin->userinfo['userid'] == 0)
{
        
print_no_permission(); 


That gives a No Permission Page to the user.

Boofo 03-16-2008 04:41 PM

Or

if(!$vbulletin->userinfo['userid'])

Opserty 03-16-2008 04:53 PM

Go with Boofo's I'd say :p

In a template: <if condition="!$bbuserinfo['userid']">....</if>

Boofo 03-16-2008 05:32 PM

Quote:

Originally Posted by Opserty (Post 1466271)
Go with Boofo's I'd say :p

In a template: <if condition="!$bbuserinfo['userid']">....</if>

I didn't see the 'template or html' part of that message. Duh on me. ;)

anuanu 03-16-2008 11:04 PM

Thx guys for all the help, I would have to say that i like Lynne's code the most. Mostly cause i dont want a custom error message i just need to prevent unregistered users to access a custom page i created and getting the defualt message is perfect.

Dismounted 03-17-2008 06:18 AM

Quote:

Originally Posted by Lynne (Post 1466261)
I use a slightly different code. I must have gotten it from vb somewhere, cuz I don't just make these up. :)

PHP Code:

if (!isset($vbulletin->userinfo['userid']) OR $vbulletin->userinfo['userid'] == 0)
{
        
print_no_permission(); 


That gives a No Permission Page to the user.

The first bit is redundant as if a variable is not set, it will return false or 0 anyway :p.

Marco van Herwaarden 03-17-2008 07:45 AM

If it is not set, it will NOT return 0. If it is not set how should PHP even know it is numeric?

Opserty 03-17-2008 03:53 PM

Quote:

Originally Posted by Marco van Herwaarden (Post 1466835)
If it is not set, it will NOT return 0. If it is not set how should PHP even know it is numeric?

NULL returns false as a boolean value, 0 returns false as a boolean value. Therefore they are pretty much identical in an if() expression :p


All times are GMT. The time now is 05:51 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01197 seconds
  • Memory Usage 1,737KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (3)bbcode_php_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete