vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   Get user details? (https://vborg.vbsupport.ru/showthread.php?t=187685)

high6 08-10-2008 12:04 AM

Get user details?
 
Can anyone provide a simple example of checking the usergroup and post count of $_POST['username'] and $_POST['password'].

Lynne 08-10-2008 02:57 AM

Have to tried looking at the login.php page or the functions_login.php page?

high6 08-10-2008 03:05 AM

that doesn't retrieve information about the usergroup or posts or does it?

Lynne 08-10-2008 03:07 AM

Um, no. It's like I read your post, but processed it wrong (I saw username and password and then....). Sorry. :/

high6 08-10-2008 03:59 AM

I think I found it out, forgot to just look through the files.

Code:

<?php

function UserInfo($username,$password)
global $vbulletin;

        $username = strip_blank_ascii($username, ' ');
if ($vbulletin->userinfo = $vbulletin->db->query_first("SELECT userid, usergroupid, membergroupids, infractiongroupids, username, password, salt FROM " . TABLE_PREFIX . "user WHERE username = '" . $vbulletin->db->escape_string(htmlspecialchars_uni($username)) . "'"))
        {
                if (
                        $vbulletin->userinfo['password'] != iif($password AND !$md5password, md5(md5($password) . $vbulletin->userinfo['salt']), '') AND
                        $vbulletin->userinfo['password'] != iif($md5password, md5($md5password . $vbulletin->userinfo['salt']), '') AND
                        $vbulletin->userinfo['password'] != iif($md5password_utf, md5($md5password_utf . $vbulletin->userinfo['salt']), '')
                )
{
        return false;
}
else if ($vbulletin->userinfo['password'] == '')
{
        return false;
}
        return $vbulletin->userinfo;
}
?>

Then I was going to print_r the return to check the array for post count and usergroup.

high6 08-30-2008 01:34 PM

Is it possible to access global.php out of the /forums/ folder?

Like

require_once("./forums/global.php");

My php file always freezes at the line if it isn't in the same directory.

Lynne 08-30-2008 03:45 PM

use these lines to call global.php
Code:

chdir ('/path/to/your/forums');
require_once('./global.php');


high6 08-30-2008 04:57 PM

Quote:

Originally Posted by Lynne (Post 1610641)
use these lines to call global.php
Code:

chdir ('/path/to/your/forums');
require_once('./global.php');


Just got the answer elsewhere XD.

Thanks though


All times are GMT. The time now is 05:00 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,726KB
  • 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
  • (3)bbcode_code_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (8)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
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete