2011-07-12, 08:49 PM
I get this image on my homepage
and index.php
and index.php
Quote:<?php
// pageok
// managed by puppet - hostingcms02
header("Content-type: text/plain");
// Total size of directory
$totalSize = 0;
// List of files in cwd
$dir = opendir('.');
while (($filename = readdir($dir)) ==! false) {
$files[] = $filename;
}
// The results of filesize are cached, clear that cache
clearstatcache();
// Total file sizes
foreach ($files as $file) {
// Add file to total size
$totalSize += filesize($file);
}
echo "pageok\n\n";
echo "Directory Size: $totalSize\n\n";
?>