1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 01:39:24 +02:00
Oinktube/view/ImageMagick.check.php

20 lines
689 B
PHP

<?php
$convertPath = trim(shell_exec('which convert'));
if (empty($convertPath)) {
?>
<div class="row">
<div class="col-md-12">
<div class="alert alert-danger alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
<strong><?php echo __("ImageMagick not installed."); ?></strong>
<p><?php echo __("Please install it with:"); ?></p>
<pre><code>sudo apt update && sudo apt install imagemagick</code></pre>
</div>
</div>
</div>
<?php
}
?>