You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
2.7 KiB
82 lines
2.7 KiB
12 years ago
|
<?php
|
||
|
/* @var $this YiiRequirementChecker */
|
||
|
/* @var $summary array */
|
||
|
/* @var $requirements array[] */
|
||
|
?>
|
||
12 years ago
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
12 years ago
|
<head>
|
||
12 years ago
|
<meta charset="utf-8"/>
|
||
|
<title>Yii Application Requirement Checker</title>
|
||
12 years ago
|
<?php $this->renderViewFile(dirname(__FILE__) . '/css.php'); ?>
|
||
12 years ago
|
</head>
|
||
|
<body>
|
||
12 years ago
|
<div class="container">
|
||
|
<div class="header">
|
||
|
<h1>Yii Application Requirement Checker</h1>
|
||
|
</div>
|
||
|
<hr>
|
||
12 years ago
|
|
||
12 years ago
|
<div class="content">
|
||
|
<h3>Description</h3>
|
||
|
<p>
|
||
|
This script checks if your server configuration meets the requirements
|
||
|
for running Yii application.
|
||
|
It checks if the server is running the right version of PHP,
|
||
|
if appropriate PHP extensions have been loaded, and if php.ini file settings are correct.
|
||
|
</p>
|
||
12 years ago
|
<p>
|
||
|
There are two kinds of requirements being checked. Mandatory requirements are those that have to be met
|
||
|
to allow Yii to work as expected. There are also some optional requirements beeing checked which will
|
||
|
show you a warning when they do not meet. You can use Yii framework without them but some specific
|
||
|
functionality may be not available in this case.
|
||
|
</p>
|
||
12 years ago
|
|
||
12 years ago
|
<h3>Conclusion</h3>
|
||
12 years ago
|
<?php if ($summary['errors'] > 0): ?>
|
||
|
<div class="alert alert-error">
|
||
|
<strong>Unfortunately your server configuration does not satisfy the requirements by this application.<br>Please refer to the table below for detailed explanation.</strong>
|
||
|
</div>
|
||
|
<?php elseif ($summary['warnings'] > 0): ?>
|
||
|
<div class="alert alert-info">
|
||
|
<strong>Your server configuration satisfies the minimum requirements by this application.<br>Please pay attention to the warnings listed below and check if your application will use the corresponding features.</strong>
|
||
|
</div>
|
||
12 years ago
|
<?php else: ?>
|
||
12 years ago
|
<div class="alert alert-success">
|
||
|
<strong>Congratulations! Your server configuration satisfies all requirements.</strong>
|
||
|
</div>
|
||
12 years ago
|
<?php endif; ?>
|
||
12 years ago
|
|
||
12 years ago
|
<h3>Details</h3>
|
||
12 years ago
|
|
||
12 years ago
|
<table class="table table-bordered">
|
||
|
<tr><th>Name</th><th>Result</th><th>Required By</th><th>Memo</th></tr>
|
||
|
<?php foreach($requirements as $requirement): ?>
|
||
|
<tr class="<?php echo $requirement['condition'] ? 'success' : ($requirement['mandatory'] ? 'error' : 'warning'); ?>">
|
||
|
<td>
|
||
|
<?php echo $requirement['name']; ?>
|
||
|
</td>
|
||
|
<td >
|
||
|
<?php echo $requirement['condition'] ? 'Passed' : ($requirement['mandatory'] ? 'Failed' : 'Warning'); ?>
|
||
|
</td>
|
||
|
<td>
|
||
|
<?php echo $requirement['by']; ?>
|
||
|
</td>
|
||
|
<td>
|
||
|
<?php echo $requirement['memo']; ?>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<?php endforeach; ?>
|
||
|
</table>
|
||
12 years ago
|
|
||
12 years ago
|
</div>
|
||
12 years ago
|
|
||
12 years ago
|
<hr>
|
||
12 years ago
|
|
||
12 years ago
|
<div class="footer">
|
||
12 years ago
|
<p>Server: <?php echo $this->getServerInfo() . ' ' . $this->getNowDate(); ?></p>
|
||
12 years ago
|
<p>Powered by <a href="http://www.yiiframework.com/" rel="external">Yii Framework</a></p>
|
||
|
</div>
|
||
|
</div>
|
||
12 years ago
|
</body>
|
||
|
</html>
|