- - Wsed the administration UI to uncheck "use Tracking".
- Verified that this is disabled in the database:- We restarted the web server, but tracking is still happening.Code: Select all
mysql> select config_name, config_value from faqconfig where config_name like '%User%'; +-------------------------+--------------+ | config_name | config_value | +-------------------------+--------------+ | main.enableUserTracking | false | +-------------------------+--------------+ 1 row in set (0.10 sec)
Code: Select all
function Tracking($action, $id = 0)
{
...
if (isset($PMF_CONF["main.enableUserTracking"])) {
Code: Select all
function Tracking($action, $id = 0)
{
...
if (isset($PMF_CONF["main.enableUserTracking"]) && ($PMF_CONF["main.enableUserTracking"]) ) {
Code: Select all
function getAll()
{
...
while ($row = $this->db->fetch_object($result)) {
$this->config[$row->config_name] = $row->config_value;
}
} // end func getAll()
Code: Select all
function getAll()
{
...
while ($row = $this->db->fetch_object($result)) {
if($row->config_value) {
$this->config[$row->config_name] = $row->config_value;
}
}
} // end func getAll()
Regards,
Ari Shamash