I have a view that I have enabled the pager on and also turned on Ajax. I see the animated image, as long as im logged in as myself. When I logout and use the view pager, I do not see the icon. Im sure this is a permissions issue, but not sure where to change it.

Comments

bitshift’s picture

anyone ?

The ajax effects occur, but I get no animated icon/graphic, unless I am logged in.

fliangz’s picture

we have the same issue here, I don't have a slightest clue where the problem lies.
I have even set the permission of status-active.gif to 777 along with the /view/images folder. But, once again it won't work. Probably, it wasn't a permission issue ?

l33roy’s picture

have the same issue

hoangd’s picture

I make sure this is a bug in views module. It cannot load css/views.css file with anonymous users.
You need to add the below line into page.tpl.php

 <link rel="stylesheet" type="text/css" media="Screen" href="<?php print base_path().drupal_get_path('module', 'views') . "/css/views.css"; ?>">
hoangd’s picture

It has a bug in views/theme/theme.inc at

function template_preprocess_views_view(&$vars)

here is code patch :
line 112 -- views_add_css('views');
line 118 ++ views_add_css('views');