2
0
mirror of https://github.com/boostorg/website.git synced 2026-01-28 07:42:16 +00:00
Files
website/development/snap.php
Rene Rivera 342ec79cf5 Log access.
[SVN r39844]
2007-10-09 15:48:01 +00:00

11 lines
333 B
PHP

<?php
/*
Copyright 2007 Redshift Software, Inc.
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt)
*/
header('Content-type: text/plain');
$file_handle = popen("ls -laF /var/log/httpd",'r');
fpassthru($file_handle);
pclose($file_handle);
?>