2012-11-04 44 views
1

我的客戶已向我提供跟蹤代碼,以跟蹤我放在我的joomla網站上的網頁外觀設計的展示次數和點擊次數。我已將此代碼添加到顯示圖形的模塊,但客戶端報告沒有發生跟蹤。我可以在代碼中看到一個timestamp標記,但不確定這些標記如何起作用。如何添加第三方點擊代碼

//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] 
+0

我沒有看到任何代碼。代碼示例在哪裏? –

回答

2

您可以通過<?php echo time(); ?>獲取當前時間戳。 因此,如果您的跟蹤代碼工作正常,則應在更換[時間戳]後跟蹤這些點擊。

例子:

<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(); ?>" />