2014-03-21 11:16:06 +00:00
|
|
|
<?php
|
2014-03-21 11:22:43 +00:00
|
|
|
$php_ver = check_module('php');
|
2014-03-21 11:16:06 +00:00
|
|
|
?>
|
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:24:50 +00:00
|
|
|
<?php $php_ver = check_module('php'); ?>
|
2014-03-21 11:22:43 +00:00
|
|
|
<dd><?php echo msg_arr($php_ver);?></dd>
|
2013-10-07 12:17:06 +00:00
|
|
|
<dt>FFMPEG</dt>
|
2014-03-21 11:16:06 +00:00
|
|
|
<?php $ffmpeg_ver = check_module('ffmpeg'); ?>
|
2014-03-21 11:22:43 +00:00
|
|
|
<dd><?php echo msg_arr($ffmpeg_ver);?></dd>
|
2013-10-07 12:17:06 +00:00
|
|
|
<dt>FLVtool2</dt>
|
2014-03-21 11:16:06 +00:00
|
|
|
<?php $flvtool2_ver = check_module('flvtool2'); ?>
|
2014-03-21 11:22:43 +00:00
|
|
|
<dd><?php echo msg_arr($flvtool2_ver);?></dd>
|
2013-10-07 12:17:06 +00:00
|
|
|
|
|
|
|
<dt>MP4Box</dt>
|
2014-03-21 11:16:06 +00:00
|
|
|
<?php $mp4boxver = check_module('mp4box'); ?>
|
2014-03-21 11:22:43 +00:00
|
|
|
<dd><?php echo msg_arr($mp4boxver);?></dd>
|
2013-10-07 12:17:06 +00:00
|
|
|
<dt>cURL</dt>
|
2014-03-21 11:16:06 +00:00
|
|
|
<?php $curlver = check_module('curl'); ?>
|
2014-03-21 11:22:43 +00:00
|
|
|
<dd><?php echo msg_arr($curlver);?></dd>
|
2013-10-07 12:17:06 +00:00
|
|
|
<dt>PHPShield</dt>
|
2014-03-21 11:16:06 +00:00
|
|
|
<?php $phpshield = check_module('phpshield'); ?>
|
2014-03-21 11:22:43 +00:00
|
|
|
<dd><?php echo msg_arr($phpshield);?></dd>
|
2013-10-07 12:17:06 +00:00
|
|
|
</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>
|