2
0
mirror of https://github.com/boostorg/website.git synced 2026-01-27 19:32:16 +00:00

Log access.

[SVN r39844]
This commit is contained in:
Rene Rivera
2007-10-09 15:48:01 +00:00
parent f013abe006
commit 342ec79cf5

11
development/snap.php Normal file
View File

@@ -0,0 +1,11 @@
<?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);
?>