blob: 6ab2b7b8f6762dcce724ab5e37a414b0c8603edf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?php
/**
* Tisypics ImageMagick Location Test
*
* Called through ajax
*/
$location = $_GET['location'];
$command = $location . "convert -version";
$result = system($command, $return_val);
if ($return_val == 0) {
echo $result;
} else {
echo "Unable to run ImageMagick. Please check the path.";
}
?>
|