예제 #1
0
echo $assetUrl;
?>
/css/home.css?<?php 
echo VERHASH;
?>
">
<link href="<?php 
echo $this->getAssetUrl();
?>
/css/weixin.css" type="text/css" rel="stylesheet" />
<div class="ct sp-ct">
	<div class="clearfix">
		<h1 class="mt">绑定微信企业号, 体验IBOS微办公!</h1>
	</div>
	<div class="ctb ps-type-title">
		<h2 class="st">企业号绑定流程引导</h2>
	</div>
	<div class="conpamy-info-wrap binding-info-wrap">
		<iframe src="<?php 
echo Wx::getInstance()->getBindingSrc();
?>
" name="<?php 
echo Ibos::app()->setting->get('siteurl') . '?r=dashboard';
?>
" class="setting-bind-iframe">
			<div class="fill-nn step-tip-content" id="bind_apply_content">

			</div>
		</iframe>
	</div>
</div>
예제 #2
0
    $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;
            $ret['msg'] = 'mysql_connect' . $lang['func not exist'];
            echo json_encode($ret);
            exit;
        }