Drupal 5.12
Adv5.19
I exclude poll from settting.php by using

<?php
$conf = array(
  'advcache_node_exclude_types' => array('poll', 'mytype1', 'mytype2' ....),
);
?>

It will show a error " unexpected <?...etc"

I removed <? and ?>

error gone, BUT poll seems still been cached badly

no aononymouse user could vote

All working patches applied including node patch

Comments

iKillBill2’s picture

to add

we use default drupal poll

dyardley’s picture

Change this:

$conf = array(
  'advcache_node_exclude_types' => array('poll', 'mytype1', 'mytype2' ....),
);

to this:

$conf = array(
  'advcache_node_exclude_types' => array('poll'),
);

the first block is an example and not what you add

iKillBill2’s picture

Hi
yes, we actually just added in the first place

<?php
$conf = array(
  'advcache_node_exclude_types' => array('poll'),
);
?>

not working, poll is still cached

iKillBill2’s picture

to add, we allowed anonymouse user to vote and it is where the issue is