Hello, members.
I would like to know CLICKTRACK_SHOWDETAIL feature.
Could you tell me any document or screenshot about this feature?
I changed this parameter(set to 1), but I’m not sure what feature changed.
Best regards.
Hello, members.
I would like to know CLICKTRACK_SHOWDETAIL feature.
Could you tell me any document or screenshot about this feature?
I changed this parameter(set to 1), but I’m not sure what feature changed.
Best regards.
From what I can see the three files with any reference to CLICKTRACK_SHOWDETAIL have all the functionality commented out, so afaics it does nothing.
public_html/lists/config/config_extended.php
public_html/lists/admin/init.php
public_html/lists/admin/uclicks.php
public_html/lists/config/config_extended.php
672 // Click track, list detail
673 // if you enable this, you will get some extra statistics about unique users who have clicked the
674 // links in your messages, and the breakdown between clicks from text or html messages.
675 // However, this will slow down the process to view the statistics, so it is
676 // recommended to leave it off, but if you’re very curious, you can enable it
677 define(‘CLICKTRACK_SHOWDETAIL’, 0);
public_html/lists/admin/init.php
445 if (!defined(‘CLICKTRACK_SHOWDETAIL’)) {
446 define(‘CLICKTRACK_SHOWDETAIL’, 0);
447 }
public_html/lists/admin/uclicks.php
122 // if (CLICKTRACK_SHOWDETAIL) {
123 $uniqueclicks = Sql_Fetch_Array_Query(sprintf(‘select count(distinct userid) as users from %s
124 where messageid = %d and forwardid = %d’,
125 $GLOBALS[‘tables’][‘linktrack_uml_click’], $row[‘messageid’], $id));
126 // }
127
128 $ls->addElement($element, PageUrl2(‘mclicks&id=’.$row[‘messageid’]));
129 $ls->setClass($element, ‘row1’);
130 $ls->addColumn($element, s(‘firstclick’), formatDateTime($row[‘firstclick’], 1));
131 $ls->addColumn($element, s(‘latestclick’), formatDateTime($row[‘latestclick’], 1));
132 $ls->addRow($element,
133 ‘’.s(‘sent’).‘: ‘.$row[‘total’].’’, ‘’);
134 // $ls->addColumn($element,s(‘clicks’),$row[‘clicked’].‘’));
135 // $perc = sprintf(‘%0.2f’,($row[‘clicked’] / $row[‘total’] * 100));
136 // $ls->addColumn($element,s(‘clickrate’),$perc.‘%’);
137 $summary[‘totalsent’] += $row[‘total’];
138 // if (CLICKTRACK_SHOWDETAIL) {
139 $ls->addColumn($element, s(‘clicks’),
140 number_format($uniqueclicks[‘users’]).‘’);
141 $perc = sprintf(‘%0.2f’, ($uniqueclicks[‘users’] / $row[‘total’] * 100));
142 $ls->addColumn($element, s(‘click rate’), $perc.‘%’);
143 $summary[‘uniqueclicks’] += $uniqueclicks[‘users’];
144 // }
145 $summary[‘totalclicks’] += $row[‘clicked’];
146 }
147 $ls->addElement(s(‘total’));
148 $ls->setClass(s(‘total’), ‘rowtotal’);
149 //$ls->addColumn(s(‘total’),s(‘clicks’),$summary[‘totalclicks’]);
150 //$perc = sprintf(‘%0.2f’,($summary[‘totalclicks’] / $summary[‘totalsent’] * 100));
151 //$ls->addColumn(s(‘total’),s(‘clickrate’),$perc.‘%’);
152 //if (CLICKTRACK_SHOWDETAIL) {
153 $ls->addColumn(s(‘total’), s(‘clicks’), $summary[‘uniqueclicks’]);
154 $perc = sprintf(‘%0.2f’, ($summary[‘uniqueclicks’] / $summary[‘totalsent’] * 100));
155 $ls->addColumn(s(‘total’), s(‘click rate’), $perc.‘%’);