vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   vBulletin 4 Request - Error with functions_login.php (https://vborg.vbsupport.ru/showthread.php?t=325418)

Alice 07-20-2017 01:01 AM

vBulletin 4 Request - Error with functions_login.php
 
So, I'm trying to add new code to the function_login.php file. I'm using v4.2.5. The following is that I added after the verify_authentication section, which is:

Code:

// ###################### Start verify_gameAuth #######################
function verify_gameAuth($username, $password, $md5password, $md5password_utf, $cookieuser, $send_cookies)
{
        global $vbulletin;

        $username = strip_blank_ascii($username, ' ');
        // See VBM-635: &#xxx; should be converted to windows-1252 extended char. This may not happen if a browser submits the form. But from API or user manually input, it does.
        // See also vB_DataManager_User::verify_username()
        $charset = strtolower(vB_Template_Runtime::fetchStyleVar('charset')) == 'iso-8859-1' ? 'windows-1252' : vB_Template_Runtime::fetchStyleVar('charset');       
        $callback = new Convert_unicode_char_to_charset_callback($charset);
        $username = preg_replace_callback(
                '/&#([0-9]+);/i',
                array($callback, 'callback'),
                $username
        );

        if ($vbulletin->userinfo = $vbulletin->db->query_first("SELECT userid, usergroupid, membergroupids, joindate, 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_value = false;
                        ($hook = vBulletinHook::fetch_hook('login_verify_failure_password')) ? eval($hook) : false;
                        if (isset($return_value))
                        {
                                // unset $return_value if you want to run the $send_cookies stuff
                                return $return_value;
                        }
                }
                else if ($vbulletin->userinfo['password'] == '')
                {
                        // sanity check, though there should never really be an empty string for a password
                        $return_value = false;
                        ($hook = vBulletinHook::fetch_hook('login_verify_failure_password')) ? eval($hook) : false;
                        if (isset($return_value))
                        {
                                // unset $return_value if you want to run the $send_cookies stuff
                                return $return_value;
                       
                }

                if ($send_cookies)
                {
                        set_authentication_cookies($cookieuser);
                }
               
                $return_value = true;
                ($hook = vBulletinHook::fetch_hook('login_verify_success')) ? eval($hook) : false;
                return $return_value;
        }

        $return_value = false;
        ($hook = vBulletinHook::fetch_hook('login_verify_failure_username')) ? eval($hook) : false;
        return $return_value;
}

After I save and upload the file, I get the following error, which is:

Code:

Parse error: syntax error, unexpected end of file in /home/swghopec/public_html/forums/includes/functions_login.php on line 612
Any help that can be provided, I would really appreciate it.

Thank you,

Alice 07-20-2017 02:06 AM

1 Attachment(s)
I uploaded the full file. :)

Dave 07-20-2017 01:14 PM

You're missing a closing bracket at line 265.

PHP Code:

            // sanity check, though there should never really be an empty string for a password
            
$return_value false;
            (
$hook vBulletinHook::fetch_hook('login_verify_failure_password')) ? eval($hook) : false;
            if (isset(
$return_value))
            {
                
// unset $return_value if you want to run the $send_cookies stuff
                
return $return_value

to

PHP Code:

            // sanity check, though there should never really be an empty string for a password
            
$return_value false;
            (
$hook vBulletinHook::fetch_hook('login_verify_failure_password')) ? eval($hook) : false;
            if (isset(
$return_value))
            {
                
// unset $return_value if you want to run the $send_cookies stuff
                
return $return_value;
            } 



All times are GMT. The time now is 12:01 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.00940 seconds
  • Memory Usage 1,734KB
  • 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
  • (2)bbcode_code_printable
  • (2)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)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