1

クライアントから、joomlaWebサイトに配置したページスキンデザインのインプレッションとクリックを追跡するための追跡コードが提供されました。グラフィックを表示しているモジュールにこのコードを追加しましたが、クライアントは追跡が行われていないことを報告します。コードにタイムスタンプタグが表示されていますが、これが実際にどのように機能するかはわかりません。

  //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 に答える