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
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

iKillBill2 - November 4, 2008 - 02:33

to add

we use default drupal poll

#2

dyardley - November 16, 2008 - 02:40

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

iKillBill2 - November 16, 2008 - 14:27

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

iKillBill2 - November 17, 2008 - 06:17

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

 
 

Drupal is a registered trademark of Dries Buytaert.