hm...
anyway, i have another prob: the server send automatically a "Pragma: no cache" header for php files

This is ok for dynamic content but when using php for compressing css and js files (like me

) sending "Pragma: no cache" means that the css/js will never be cached by the browser (they are 70+kb!)
i've tried both
Header unset Pragma
and
Header set Pragma "public"
in the htaccess, and even
header('Pragma: public');
in the php script but none of these works, actually (they works for other headers but not with Pragma?!)
Any other ideas?
It's the pragma header really necessary?