clipbucket/upload/cb_install/modes/precheck.php

39 lines
1.3 KiB
PHP
Raw Normal View History

2014-03-21 11:16:06 +00:00
<?php
$php_ver = check_module('php'); var_dump($php_ver);die();
?>
2013-10-07 12:17:06 +00:00
<h2>Prechecking</h2>
Clipbucket requires following modules in order to work properly, we are performing some initial search to find modules.
<a href="http://docs.clip-bucket.com/clipbucket-docs/clipbucket-installation#requirments">Click here</a> for why we need these modules
<p>
</p>
<dl>
<dt>PHP</dt>
2014-03-21 11:16:06 +00:00
<?php $php_ver = check_module('php'); var_dump($php_ver) ?>
2013-10-07 12:17:06 +00:00
<dd><?=msg_arr($php_ver);?></dd>
<dt>FFMPEG</dt>
2014-03-21 11:16:06 +00:00
<?php $ffmpeg_ver = check_module('ffmpeg'); ?>
2013-10-07 12:17:06 +00:00
<dd><?=msg_arr($ffmpeg_ver);?></dd>
<dt>FLVtool2</dt>
2014-03-21 11:16:06 +00:00
<?php $flvtool2_ver = check_module('flvtool2'); ?>
2013-10-07 12:17:06 +00:00
<dd><?=msg_arr($flvtool2_ver);?></dd>
<dt>MP4Box</dt>
2014-03-21 11:16:06 +00:00
<?php $mp4boxver = check_module('mp4box'); ?>
2013-10-07 12:17:06 +00:00
<dd><?=msg_arr($mp4boxver);?></dd>
<dt>cURL</dt>
2014-03-21 11:16:06 +00:00
<?php $curlver = check_module('curl'); ?>
2013-10-07 12:17:06 +00:00
<dd><?=msg_arr($curlver);?></dd>
<dt>PHPShield</dt>
2014-03-21 11:16:06 +00:00
<?php $phpshield = check_module('phpshield'); ?>
2013-10-07 12:17:06 +00:00
<dd><?=msg_arr($phpshield);?></dd>
</dl>
<p></p>
<form name="installation" method="post" id="installation">
<input type="hidden" name="mode" value="permission" />
<div style="padding:10px 0px" align="right"><?=button('Continue To Next Step',' onclick="$(\'#installation\').submit()" ');?></div>
</form>