mirror of
https://github.com/moodle/moodle.git
synced 2025-01-31 20:53:53 +01:00
Displays file permissions for mimetex and uses md5_file if available
This commit is contained in:
parent
0f87cb1d09
commit
e072c85e65
@ -236,10 +236,15 @@ function tex2image($texexp, $md5) {
|
||||
}
|
||||
if (file_exists($commandpath)) {
|
||||
echo "File size of mimetex executable $commandpath is " . filesize($commandpath) . "<br>";
|
||||
$handle = fopen($commandpath,"rb");
|
||||
$contents = fread($handle,16384);
|
||||
fclose($handle);
|
||||
echo "The md5 checksum of the first 16384 bytes is " . md5($contents) . "<br>";
|
||||
echo "The file permissions are: " . decoct(fileperms($commandpath)) . "<br>";
|
||||
if (function_exists("md5_file")) {
|
||||
echo "The md5 checksum of the file is " . md5_file($commandpath) . "<br>";
|
||||
} else {
|
||||
$handle = fopen($commandpath,"rb");
|
||||
$contents = fread($handle,16384);
|
||||
fclose($handle);
|
||||
echo "The md5 checksum of the first 16384 bytes is " . md5($contents) . "<br>";
|
||||
}
|
||||
} else {
|
||||
echo "mimetex executable $commandpath not found!<br>";
|
||||
}
|
||||
|
@ -147,10 +147,15 @@ function tex2image($texexp) {
|
||||
}
|
||||
if (file_exists($commandpath)) {
|
||||
echo "File size of mimetex executable $commandpath is " . filesize($commandpath) . "<br>";
|
||||
$handle = fopen($commandpath,"rb");
|
||||
$contents = fread($handle,16384);
|
||||
fclose($handle);
|
||||
echo "The md5 checksum of the first 16384 bytes is " . md5($contents) . "<br>";
|
||||
echo "The file permissions are: " . decoct(fileperms($commandpath)) . "<br>";
|
||||
if (function_exists("md5_file")) {
|
||||
echo "The md5 checksum of the file is " . md5_file($commandpath) . "<br>";
|
||||
} else {
|
||||
$handle = fopen($commandpath,"rb");
|
||||
$contents = fread($handle,16384);
|
||||
fclose($handle);
|
||||
echo "The md5 checksum of the first 16384 bytes is " . md5($contents) . "<br>";
|
||||
}
|
||||
} else {
|
||||
echo "mimetex executable $commandpath not found!<br>";
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user