HEX
Server: nginx/1.28.1
System: Linux 10-41-63-61 6.8.0-31-generic #31-Ubuntu SMP PREEMPT_DYNAMIC Sat Apr 20 00:40:06 UTC 2024 x86_64
User: www (1001)
PHP: 7.4.33
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot//www.elwrky.com/public/install/step2.html
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <title>安装环境检测 - 多站点CMS系统安装</title>
    <link rel="stylesheet" href="/static/libs/layui/css/layui.css">
    <link rel="stylesheet" href="style/css/install.css">
</head>
<body>
<div class="layui-main">
    <h1 class="site-h1">环境检测</h1>
    <!--系统环境信息-->
    <table class="layui-table" lay-skin="line">
        <tr>
            <th width="25%">环境</th>
            <th width="25%">最低配置</th>
            <th width="25%">当前配置</th>
            <th width="25%">是否符合</th>
        </tr>
        <tr>
            <td>操作系统</td>
            <td>不限</td>
            <td><?php echo php_uname('s'); ?></td>
            <td class="yes"><i class="layui-icon layui-icon-ok" style="font-size: 30px; color: #0fe229;"></i></td>
        </tr>
        <tr>
            <td>php版本</td>
            <td>7.1+</td>
            <td><?php echo PHP_VERSION ?></td>
            <?php $php_version = explode('.', PHP_VERSION);?>
            <td class="<?php if(($php_version['0']>=7) || ($php_version['0']>=7 && $php_version['1']>=1))echo 'yes'; ?>">
                <?php if (($php_version['0']>=7) || ($php_version['0']>=7 && $php_version['1']>=1)): ?>
                <i class="layui-icon layui-icon-ok" style="font-size: 30px; color: #0fe229;"></i>
                <?php else: ?>
                <i class="layui-icon layui-icon-close" style="font-size: 30px; color: #ec430d;"></i>
                <?php endif ?>
            </td>
        </tr>
    </table>
    <!--扩展插件信息-->
    <table class="layui-table" lay-skin="line">
        <tr>
            <th width="25%">扩展</th>
            <th width="25%">最低配置</th>
            <th width="25%">当前配置</th>
            <th width="25%">是否符合</th>
        </tr>
        <tr>
            <td>数据库模块</td>
            <td>PDO_MYSQL 或 MySQLi</td>
            <td>
                <?php
                    $pdo = false;
                    if(class_exists('PDO', false))
                    {
                        if(defined('PDO::MYSQL_ATTR_USE_BUFFERED_QUERY'))
                        {
                            echo 'PDO_MYSQL';
                            $pdo = true;
                        }
                        else
                        {
                            echo '不支持PDO_MYSQL';
                        }
                    }
                    else
                    {
                        echo '不支持PDO_MYSQL';
                    }

                    if(!$pdo)
                    {
                        if (function_exists('mysqli_close'))
                        {
                            echo 'MySQLi';
                            $pdo = true;
                        }
                    }
                ?>
            </td>
            <td class="<?php if($pdo) echo 'yes'; ?>">
                <?php if ($pdo): ?>
                    <i class="layui-icon layui-icon-ok" style="font-size: 30px; color: #0fe229;"></i>
                <?php else: ?>
                    <i class="layui-icon layui-icon-close" style="font-size: 30px; color: #ec430d;"></i>
                <?php endif ?>
            </td>
        </tr>
        <tr>
            <td>图象处理库</td>
            <td>GD 或 ImageMagick</td>
            <td>
                <?php if(function_exists('gd_info')): ?>
                <?php if(class_exists('Imagick', false)): ?>
                ImageMagick
                <?php else: ?>
                GD
                <?php endif ?>
                <?php else: ?>
                不支持
                <?php endif ?>
            </td>
            <td class="<?php if(function_exists('gd_info')) echo 'yes'; ?>">
                <?php if(function_exists('gd_info')): ?>
                    <i class="layui-icon layui-icon-ok" style="font-size: 30px; color: #0fe229;"></i>
                <?php else: ?>
                    <span class="layui-badge">no</span>
                <?php endif ?>
            </td>
        </tr>
        <tr>
            <td>Session</td>
            <td>支持</td>
            <td>
                <?php if(function_exists('session_start')): ?>
                支持
                <?php else: ?>
                不支持
                <?php endif ?>
            </td>
            <td class="<?php if(function_exists('session_start')) echo 'yes'; ?>">
                <?php if(function_exists('session_start')): ?>
                    <i class="layui-icon layui-icon-ok" style="font-size: 30px; color: #0fe229;"></i>
                <?php else: ?>
                    <i class="layui-icon layui-icon-close" style="font-size: 30px; color: #ec430d;"></i>
                <?php endif ?>
            </td>
        </tr>
        <tr>
            <td>Cookie</td>
            <td>支持</td>
            <td>
                <?php if(isset($_COOKIE)): ?>
                支持
                <?php else: ?>
                不支持
                <?php endif ?>
            </td>
            <td class="<?php if(isset($_COOKIE)) echo 'yes'; ?>">
                <?php if(isset($_COOKIE)): ?>
                    <i class="layui-icon layui-icon-ok" style="font-size: 30px; color: #0fe229;"></i>
                <?php else: ?>
                    <i class="layui-icon layui-icon-close" style="font-size: 30px; color: #ec430d;"></i>
                <?php endif ?>
            </td>
        </tr>
        <tr>
            <td>CType</td>
            <td>支持</td>
            <td>
                <?php if(function_exists('ctype_xdigit')): ?>
                支持
                <?php else: ?>
                不支持
                <?php endif ?>
            </td>
            <td class="<?php if(function_exists('ctype_xdigit')) echo 'yes'; ?>">
                <?php if(function_exists('ctype_xdigit')): ?>
                    <i class="layui-icon layui-icon-ok" style="font-size: 30px; color: #0fe229;"></i>
                <?php else: ?>
                    <i class="layui-icon layui-icon-close" style="font-size: 30px; color: #ec430d;"></i>
                <?php endif ?>
            </td>
        </tr>
        <tr>
            <td>CURL</td>
            <td>支持</td>
            <td>
                <?php if(function_exists('curl_exec')): ?>
                支持
                <?php else: ?>
                不支持
                <?php endif ?>
            </td>
            <td class="<?php if(function_exists('curl_exec')) echo 'yes'; ?>">
                <?php if(function_exists('curl_exec')): ?>
                    <i class="layui-icon layui-icon-ok" style="font-size: 30px; color: #0fe229;"></i>
                <?php else: ?>
                    <i class="layui-icon layui-icon-close" style="font-size: 30px; color: #ec430d;"></i>
                <?php endif ?>
            </td>
        </tr>
        <tr>
            <td>FreeType</td>
            <td>支持</td>
            <td>
                <?php if(function_exists('imageftbbox')): ?>
                支持
                <?php else: ?>
                不支持
                <?php endif ?>
            </td>
            <td class="<?php if(function_exists('imageftbbox')) echo 'yes'; ?>">
                <?php if(function_exists('imageftbbox')): ?>
                    <i class="layui-icon layui-icon-ok" style="font-size: 30px; color: #0fe229;"></i>
                <?php else: ?>
                    <i class="layui-icon layui-icon-close" style="font-size: 30px; color: #ec430d;"></i>
                <?php endif ?>
            </td>
        </tr>
        <tr>
            <td>Zlib</td>
            <td>支持</td>
            <td>
                <?php if(function_exists('gzcompress')): ?>
                支持
                <?php else: ?>
                不支持
                <?php endif ?>
            </td>
            <td class="<?php if(function_exists('gzcompress')) echo 'yes'; ?>">
                <?php if(function_exists('gzcompress')): ?>
                    <i class="layui-icon layui-icon-ok" style="font-size: 30px; color: #0fe229;"></i>
                <?php else: ?>
                    <i class="layui-icon layui-icon-close" style="font-size: 30px; color: #ec430d;"></i>
                <?php endif ?>
            </td>
        </tr>
        <tr>
            <td>编码转换</td>
            <td>支持</td>
            <td>
                <?php if(function_exists('iconv')): ?>
                支持
                <?php else: ?>
                不支持
                <?php endif ?>
            </td>
            <td class="<?php if(function_exists('iconv')) echo 'yes'; ?>">
                <?php if(function_exists('iconv')): ?>
                    <i class="layui-icon layui-icon-ok" style="font-size: 30px; color: #0fe229;"></i>
                <?php else: ?>
                    <i class="layui-icon layui-icon-close" style="font-size: 30px; color: #ec430d;"></i>
                <?php endif ?>
            </td>
        </tr>
        <tr>
            <td>Fileinfo</td>
            <td>支持</td>
            <td>
                <?php if(extension_loaded('fileinfo')): ?>
                支持
                <?php else: ?>
                不支持
                <?php endif ?>
            </td>
            <td class="<?php if(extension_loaded('fileinfo')) echo 'yes'; ?>">
                <?php if(extension_loaded('fileinfo')): ?>
                    <i class="layui-icon layui-icon-ok" style="font-size: 30px; color: #0fe229;"></i>
                <?php else: ?>
                    <i class="layui-icon layui-icon-close" style="font-size: 30px; color: #ec430d;"></i>
                <?php endif ?>
            </td>
        </tr>
        <tr>
            <td>pdo</td>
            <td>支持</td>
            <td>
                <?php if(extension_loaded('pdo')): ?>
                支持
                <?php else: ?>
                不支持
                <?php endif ?>
            </td>
            <td class="<?php if(extension_loaded('pdo')) echo 'yes'; ?>">
                <?php if(extension_loaded('pdo')): ?>
                    <i class="layui-icon layui-icon-ok" style="font-size: 30px; color: #0fe229;"></i>
                <?php else: ?>
                    <i class="layui-icon layui-icon-close" style="font-size: 30px; color: #ec430d;"></i>
                <?php endif ?>
            </td>
        </tr>
    </table>
    <!--目录权限信息-->
    <table class="layui-table" lay-skin="line">
        <tr>
            <th width="25%">目录</th>
            <th width="25%">最低配置</th>
            <th width="25%">当前配置</th>
            <th width="25%">是否符合</th>
        </tr>
        <tr>
            <td>./runtime</td>
            <td>可写</td>
            <td>
                <?php if (is_writable('../../runtime')): ?>
                可写
                <?php else: ?>
                不可写
                <?php endif ?>
            </td>
            <td class="<?php if(is_writable('../../runtime'))echo 'yes'; ?>">
                <?php if (is_writable('../../runtime')): ?>
                    <i class="layui-icon layui-icon-ok" style="font-size: 30px; color: #0fe229;"></i>
                <?php else: ?>
                    <i class="layui-icon layui-icon-close" style="font-size: 30px; color: #ec430d;"></i>
                <?php endif ?>
            </td>
        </tr>
        <tr>
            <td>./templates</td>
            <td>可写</td>
            <td>
                <?php if (is_writable('../../templates')): ?>
                可写
                <?php else: ?>
                不可写
                <?php endif ?>
            </td>
            <td class="<?php if(is_writable('../../templates'))echo 'yes'; ?>">
                <?php if (is_writable('../../templates')): ?>
                <i class="layui-icon layui-icon-ok" style="font-size: 30px; color: #0fe229;"></i>
                <?php else: ?>
                <i class="layui-icon layui-icon-close" style="font-size: 30px; color: #ec430d;"></i>
                <?php endif ?>
            </td>
        </tr>
        <tr>
            <td>./route</td>
            <td>可写</td>
            <td>
                <?php if (is_writable('../../route')): ?>
                可写
                <?php else: ?>
                不可写
                <?php endif ?>
            </td>
            <td class="<?php if(is_writable('../../route'))echo 'yes'; ?>">
                <?php if (is_writable('../../route')): ?>
                <i class="layui-icon layui-icon-ok" style="font-size: 30px; color: #0fe229;"></i>
                <?php else: ?>
                <i class="layui-icon layui-icon-close" style="font-size: 30px; color: #ec430d;"></i>
                <?php endif ?>
            </td>
        </tr>
        <tr>
            <td>./application/lang</td>
            <td>可写</td>
            <td>
                <?php if (is_writable('../../application/lang')): ?>
                可写
                <?php else: ?>
                不可写
                <?php endif ?>
            </td>
            <td class="<?php if(is_writable('../../application/lang'))echo 'yes'; ?>">
                <?php if (is_writable('../../application/lang')): ?>
                <i class="layui-icon layui-icon-ok" style="font-size: 30px; color: #0fe229;"></i>
                <?php else: ?>
                <i class="layui-icon layui-icon-close" style="font-size: 30px; color: #ec430d;"></i>
                <?php endif ?>
            </td>
        </tr>
        <tr>
            <td>./public/static/modules</td>
            <td>可写</td>
            <td>
                <?php if (is_writable('../../public/static/modules')): ?>
                可写
                <?php else: ?>
                不可写
                <?php endif ?>
            </td>
            <td class="<?php if(is_writable('../../public/static/modules'))echo 'yes'; ?>">
                <?php if (is_writable('../../public/static/modules')): ?>
                    <i class="layui-icon layui-icon-ok" style="font-size: 30px; color: #0fe229;"></i>
                <?php else: ?>
                    <i class="layui-icon layui-icon-close" style="font-size: 30px; color: #ec430d;"></i>
                <?php endif ?>
            </td>
        </tr>
        <tr>
            <td>./public/uploads</td>
            <td>可写</td>
            <td>
                <?php if (is_writable('../../public/uploads')): ?>
                可写
                <?php else: ?>
                不可写
                <?php endif ?>
            </td>
            <td class="<?php if(is_writable('../../public/uploads'))echo 'yes'; ?>">
                <?php if (is_writable('../../public/uploads')): ?>
                <i class="layui-icon layui-icon-ok" style="font-size: 30px; color: #0fe229;"></i>
                <?php else: ?>
                <i class="layui-icon layui-icon-close" style="font-size: 30px; color: #ec430d;"></i>
                <?php endif ?>
            </td>
        </tr>
        <tr>
            <td>./public/install</td>
            <td>可写</td>
            <td>
                <?php if (is_writable('../../public/install')): ?>
                可写
                <?php else: ?>
                不可写
                <?php endif ?>
            </td>
            <td class="<?php if(is_writable('../../public/install'))echo 'yes'; ?>">
                <?php if (is_writable('../../public/install')): ?>
                <i class="layui-icon layui-icon-ok" style="font-size: 30px; color: #0fe229;"></i>
                <?php else: ?>
                <i class="layui-icon layui-icon-close" style="font-size: 30px; color: #ec430d;"></i>
                <?php endif ?>
            </td>
        </tr>
        <tr>
            <td>./config</td>
            <td>可写</td>
            <td>
                <?php if (is_writable('../../config')): ?>
                可写
                <?php else: ?>
                不可写
                <?php endif ?>
            </td>
            <td class="<?php if(is_writable('../../config'))echo 'yes'; ?>">
                <?php if (is_writable('../../config')): ?>
                    <i class="layui-icon layui-icon-ok" style="font-size: 30px; color: #0fe229;"></i>
                <?php else: ?>
                    <i class="layui-icon layui-icon-close" style="font-size: 30px; color: #ec430d;"></i>
                <?php endif ?>
            </td>
        </tr>
    </table>
    <div class="btn-box">
        <a class="layui-btn layui-btn-radius layui-btn-normal" href="./index.php?type=<?php echo $config['indexPage']; ?>"><i class="layui-icon">&#xe603;</i>上一步</a>
        <a class="layui-btn layui-btn-radius next" href="javascript:;" url-href="./index.php?type=<?php echo $config['createPage']; ?>">下一步<i class="layui-icon">&#xe602;</i></a>
    </div>
</div>
<script type="text/javascript" src="/static/libs/layui/layui.js"></script>
<script>
    layui.use('layer', function(){
        var $ = layui.jquery, 
            layer = layui.layer;
        // 判断是否通过
        $('.next').on('click',function(){
            // 判断检测是否达标
            if($('.yes').length != 21){
                layer.msg('您的配置或权限未满足要求');
            }else{
                location.href = $(this).attr('url-href');
            }
        });
    });
</script>
</body>
</html>