1

我的客户向我提供了跟踪代码,用于跟踪我放置在我的 joomla 网站上的页面外观设计的印象和点击。我已将此代码添加到显示图形的模块中,但客户端报告未发生跟踪。我可以在代码中看到一个时间戳标记,但不确定它是如何真正起作用的。

  //To track Impressions use the following URL:
http://bs.serving-sys.com/example/adServer.bs?cn=tf&c=19&mc=i4p&pli=5460041&PluID=0&ord=[timestamp]&rtu=-1

//To track Clicks use the following URL:
//Note: Please ensure that you implement a click tracking URL only in the clicks location in your ad server, 
//and an impression tracking URL only in the impression tracking location.
//Incorrect implementation of these URLs will result in major billing and reporting discrepancies.
http://bs.serving-sys.com/example/adServer.bs?cn=tf&4=20&mc=click&pli=5460041&PluID=0&ord=[timestamp]
4

1 回答 1

2

您可以使用 获取当前时间戳<?php echo time(); ?>。因此,如果您的跟踪代码工作正常,您应该能够在替换 [timestamp] 后跟踪这些点击。

例子:

<a href="http://bs.serving-sys.com/example/adServer.bs?cn=tf&4=20&mc=click&pli=5460041&PluID=0&ord=[timestamp]" />

来到

<a href="http://bs.serving-sys.com/example/adServer.bs?cn=tf&4=20&mc=click&pli=5460041&PluID=0&ord=<?php echo time(); ?>" />
于 2013-03-27T10:05:59.633 回答