Exemple #1
0
    foreach ($users as $user) {
        $guid = String::createGuid();
        Yii::app()->db->createCommand()->update("{{user}}", array('guid' => $guid), "`uid` = '{$user['uid']}'");
    }
    $cacheArr = array('AuthItem', 'CreditRule', 'Department', 'Ipbanned', 'Nav', 'NotifyNode', 'Role', 'Position', 'PositionCategory', 'Setting', 'UserGroup');
    foreach ($cacheArr as $cache) {
        Cache::update($cache);
    }
    Cache::load('usergroup');
    // 要注意小写
    Cache::update('Users');
    // 因为用户缓存要依赖usergroup缓存,所以放在最后单独更新
    file_put_contents(PATH_ROOT . 'data/install.lock', '');
    $configfile = CONFIG_PATH . 'config.php';
    $config = (require $configfile);
    $host = getHostInfo();
    //设置aeskey并保存
    $aeskey = substr(md5($_SERVER['SERVER_ADDR'] . $_SERVER['HTTP_USER_AGENT'] . $host . $dbName . $dbAccount . $dbPassword . $dbPre . time()), 14, 10) . random(33);
    Setting::model()->updateSettingValueByKey('aeskey', $aeskey);
    $bindingSrc = Wx::getInstance()->getBindingSrc($aeskey, $host, true);
    include 'extInfo.php';
    exit;
} else {
    if ($option == 'tablepreCheck') {
        $dbHost = $_POST['dbHost'];
        $dbAccount = $_POST['dbAccount'];
        $dbPassword = $_POST['dbPassword'];
        $dbName = $_POST['dbName'];
        $tablePre = $_POST['tablePre'];
        if (!function_exists('mysql_connect')) {
            $ret['isSuccess'] = false;
Exemple #2
0
<?php

include_once "graphics.php";
include_once "vbox-funcs.php";
HTMLheader();
HTMLnavbar(2);
HTMLcontainerOpen();
echo "<h3> Host information : </h3>";
echo getHostInfo();
echo "<div class='divider'></div>";
HTMLcontainerClose();
HTMLfooter();