当前位置: 首页>>代码示例>>PHP>>正文


PHP auth::page_check方法代码示例

本文整理汇总了PHP中auth::page_check方法的典型用法代码示例。如果您正苦于以下问题:PHP auth::page_check方法的具体用法?PHP auth::page_check怎么用?PHP auth::page_check使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在auth的用法示例。


在下文中一共展示了auth::page_check方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: auth

# Author: ZYMO
#
# Description:
#
# Hardened version of vAuthenticate 3.0.1 to address exploits
# and update deprecated database functions on PHP v5.5 servers.
#
*/
// Check if the cookies are set
// This removes some notices (undefined index)
if (isset($_COOKIE['USERNAME']) && isset($_COOKIE['PASSWORD'])) {
    // Get values from superglobal variables
    $USERNAME = $_COOKIE['USERNAME'];
    $PASSWORD = $_COOKIE['PASSWORD'];
    $CheckSecurity = new auth();
    $check = $CheckSecurity->page_check($USERNAME, $PASSWORD);
} else {
    $check = false;
}
if ($check == false) {
    // Feel free to change the error message below. Just make sure you put a "\" before
    // any double quote.
    print "<b>Illegal Access</b>";
    print "<br>";
    print "<b>You do not have permission to view this page.</b>";
    // REDIRECT BACK TO LOGIN PAGE
    // REMOVE BLOCK IF NOT BEING USED
    print "<br>";
    print "You will be redirected back to the login page in a short while.";
    ?>
              <HEAD>
开发者ID:ZYMO,项目名称:vAuthenticate-4,代码行数:31,代码来源:check.php

示例2: microtime

            }
            $this->Priority = $this->priority;
        }
    }
    if (!$limitedStartup) {
        if ($config['softdebug'] == 1) {
            $starttime = microtime();
            $data->reset_counter();
        }
        $cookievalue = md5(time() . 'um');
        $expire = time() + $config['session_length'];
        if ($config['gzip'] == 1) {
            $tpl->load_filter('output', 'gzip');
        }
        if (!$skipUser) {
            $check = $Auth->page_check();
            $user_page_auths = get_user_auths();
            $user_groups = user_groups_id_key_array($check['id']);
            $onlineUserList = get_online_users_array();
            $userIdList = get_user_id_list_array();
        }
        $censorWords = get_censor();
        $scoutlanguage = read_scout_language();
        $tpl->assign("scoutlang", $scoutlanguage);
    }
    $timestamp = time();
} else {
    require_once "config.php";
    require_once "includes/db.php";
    require_once "includes/functions.php";
    $data = new database($dbname, $dbhost, $dbusername, $dbpassword, $dbprefix, $dbport);
开发者ID:burak-tekin,项目名称:CMScout2,代码行数:31,代码来源:common.php


注:本文中的auth::page_check方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。