43 lines
2.2 KiB
PHP
43 lines
2.2 KiB
PHP
<?php defined('PHALAPI_INSTALL') || die('no access'); ?>
|
||
<?php include dirname(__FILE__) . DIRECTORY_SEPARATOR . '_header.php'; ?>
|
||
<div class="radius bg bouncein window window_big">
|
||
<div class="window_title t_normal">
|
||
<span class="icon-circle"> </span>
|
||
<span class="icon-circle"></span>
|
||
<span class="margin-small-left">安装向导</span>
|
||
</div>
|
||
<div class="padding-large text-black">
|
||
<h1 class="margin-small-bottom" >PhalApi Pro 环境检查</h1>
|
||
<h5 class="margin-big-bottom ">为了确保PhalApi Pro 专业版能正常使用, 您的服务器需要满足以下系统需求的运行环境。</h5>
|
||
<table class="table table-bordered">
|
||
<tbody>
|
||
<?php $num = 0; ?>
|
||
<?php foreach ($checkList as $item) { ?>
|
||
<tr class="<?php if ($item['status'] == -1) echo 'alert alert-danger'; else if ($item['status'] == 1) echo 'alert alert-success';?>">
|
||
<th style="vertical-align : middle;" align="center" scope="row"><?php echo ++ $num; ?></th>
|
||
<th style="vertical-align : middle;"><?php echo $item['name']; ?></th>
|
||
<td style="vertical-align : middle; font-size: 12px"><?php echo $item['tip']; ?></td>
|
||
<td align="center" style="vertical-align : middle;"><?php
|
||
if ($item['status'] == 1) {
|
||
echo '<span aria-hidden="true" class="text-green icon-check-circle"></span>';
|
||
} else {
|
||
echo '<span aria-hidden="true" class="text-red icon-times-circle"></span>';
|
||
}
|
||
?></td>
|
||
</tr>
|
||
<?php } ?>
|
||
</tbody>
|
||
</table>
|
||
|
||
<p><small>安装前,可手动执行脚本:./bin/install_check.sh,添加必要的目录写入权限。</small></p>
|
||
|
||
<div class="margin-big-top" >
|
||
<a class="button bg-yellow margin-small-right" href=".?step=2" role="button"> 下一步 </a>
|
||
<a class="button margin-small-right" href=".?step=0" role="button"> 上一步 </a>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
<?php include dirname(__FILE__) . DIRECTORY_SEPARATOR . '_footer.php'; ?>
|