Hits: 16031

 

Absolute path found. Loading as relative.

 

List

Try: ca/tecreations/ViewFile.php -- Online


<h6>Apache Access Log</h6>
<?php
$log_file = '/var/log/apache2/access.log';

if (file_exists($log_file) && is_readable($log_file)) {
    echo '<pre>'; 
    echo htmlspecialchars(file_get_contents($log_file));
    echo '</pre>';
} else {
    echo 'Error: Apache access log file not found or not readable. Until Engine has a process to deal with Linux ownership modification method and schedule, will only be updated manually. This message will be removed after configuration and testing.';
}
?>