flash messages was working fine in local when i moved it into production(cpanel) its not displaying. I am not getting any error or warning.
In controller, i am setting flash like this
Yii::app()->user->setFlash('success', "Slider updated Successfully.");
and in view,
<?php if (Yii::app()->user->hasFlash('success')): ?>
<div class="success">
<?php echo Yii::app()->user->getFlash('success'); ?>
</div>
<?php endif; ?>