从服务器请求文件时记录
每次从服务器请求特定文件时,我需要一种将条目记录到数据库中的方法。 该文件可以是任何类型,甚至是图像或其他媒体。
是否还可以记录哪个 IP 地址或主机名请求了该文件?
I need a way to log an entry into a database, everytime a particular file is requested from the server. The file can be any type, even images or other media.
Is it also possible to log which IP address or hostname has requested that file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
语言是什么? HTTP 处理程序技术?
示例:
java/servlet、ruby/rails、php/apache
...无论哪种情况,您都可以轻松分析日志文件:HTTP 日志文件包含 ip、文件名、时间戳。
在
perl+DBI
中需要十行来解析 apache 的配置并将下载次数统计到数据库中。 把它插入 cron 并完成。What's the language? HTTP handler technology?
Example:
java/servlet, ruby/rails, php/apache
...In either case you can analyze the log file easily: HTTP log files contain ip, file name, timestamp.
It would be a ten lines in
perl+DBI
to parse apache's config and count downloads into database. Stuck it int cron and be done.