在WordPress中跟踪文件下载

时间:2015-01-06 09:11:48

标签: wordpress wordpress-plugin woocommerce download

我想知道是否有人知道我可以跟踪用户是否在WordPress中下载了文件的方式。我需要为多个用户跟踪同一个文件,但不知道最好的方法。

是否有插件可以执行此操作?

如果有帮助,我们也会使用WooCommerce。

由于

1 个答案:

答案 0 :(得分:0)

这是一个建议,其中包含我用来提供图片的代码

代码:

// neads parameter $filePath
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.basename($filePath));
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($filePath));
ob_clean();
flush();
readfile($filePath);
exit;

当用户点击文件链接时,您可以将它们重定向到包含类似代码的页面。在那里,您可以轻松实现计数器的som kinde(使用SQL)