2012-11-04 4 views
1

고객이 내 joomla 웹 사이트에 배치 한 페이지 스킨 디자인의 노출 및 클릭을 추적하는 추적 코드를 제공했습니다. 그래픽을 표시하는 모듈에이 코드를 추가했지만 클라이언트에서 추적이 발생하지 않는다고보고합니다. 코드에서 타임 스탬프 태그를 볼 수는 있지만 이것이 실제로 어떻게 작동하는지 확실하지 않습니다.제 3 자 클릭 태그를 추가하는 방법

//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(); ?>" /> 
관련 문제