class SmashingMagazine_LogProductUpdate_Model_Observer { public function processPreDispatch(Varien_Event_Observer $observer) { $action = $observer->getEvent()->getControllerAction()->getFullActionName(); // Check to see if $action is a CMScontroller if ($action == 'cms_page_view') { $cache = Mage::app()->getCacheInstance(); // Tell Magento to 'ban' the use of FPC for this request $cache->banUse('full_page'); } } } PS : Also try to use controller_action_predispatch_cms_page_view. If this event is working for you, then go for it. It would be the best event for this scenario
Edit
I have tested this in my local machine and it works for me. You can get my extension here. Please try to use it.