POLL is not excluded
iKillBill2 - November 4, 2008 - 02:32
| Project: | Advanced cache |
| Version: | 5.x-1.9 |
| Component: | Code |
| Category: | support request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Jump to:
Description
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

#1
to add
we use default drupal poll
#2
Change this:
<?php$conf = array(
'advcache_node_exclude_types' => array('poll', 'mytype1', 'mytype2' ....),
);
?>
to this:
<?php$conf = array(
'advcache_node_exclude_types' => array('poll'),
);
?>
the first block is an example and not what you add
#3
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
#4
to add, we allowed anonymouse user to vote and it is where the issue is