Hey there,

I just upgraded my views install to the latest 1.6 version, and I realised that my node cloud view, which I love, does not work anymore.

ANy idea what could have caused this, are the settings different with the latest views version?

DO you want me to print my views code here soyou can see if there are obvious errors?

I don't get any error, just no content at all shows on the page.

Thanks,
Patchak

Comments

mfredrickson’s picture

I'm willing to bet the views API changed in some subtle way. THis would not be the first time. :-)

Pasting views would help. The other thing you could do would be to use a different output setting for your view (temporarily) to make sure that the query itself still works

patchak’s picture

Hey there, here is the view I try to make work... I tried to change the output to a list view and it also fails... any idea?
thanks

$view = new stdClass();
$view->name = 'nuage';
$view->description = 'nuage de nodes...';
$view->access = array (
);
$view->view_args_php = '';
$view->page = TRUE;
$view->page_title = 'Le nuage de billets Geekomatik.com';
$view->page_header = 'Voyez les 50 derniers billets ajoutés sur Geekomatik.com présentés dans un nuage de billets. Idéal pour voir ce qui se passe dans la blogosphère en un rapide coup d\'oeil.
';
$view->page_header_format = '3';
$view->page_footer = '';
$view->page_footer_format = '1';
$view->page_empty = '';
$view->page_empty_format = '1';
$view->page_type = 'list';
$view->url = 'nuage';
$view->use_pager = TRUE;
$view->nodes_per_page = '50';
$view->menu = TRUE;
$view->menu_title = 'Nuage';
$view->menu_tab = FALSE;
$view->menu_tab_weight = '0';
$view->menu_tab_default = FALSE;
$view->menu_tab_default_parent = NULL;
$view->menu_tab_default_parent_type = 'normal';
$view->menu_parent_tab_weight = '0';
$view->menu_parent_title = '';
$view->sort = array (
array (
'tablename' => 'node',
'field' => 'created',
'sortorder' => 'DESC',
'options' => 'normal',
),
array (
'tablename' => 'node_counter',
'field' => 'totalcount',
'sortorder' => 'DESC',
'options' => '',
),
);
$view->argument = array (
);
$view->field = array (
array (
'tablename' => 'node',
'field' => 'title',
'label' => '',
'handler' => 'views_handler_field_nodelink',
'options' => 'link',
),
);
$view->filter = array (
array (
'tablename' => 'node',
'field' => 'status',
'operator' => '=',
'options' => '',
'value' => '1',
),
array (
'tablename' => 'node',
'field' => 'type',
'operator' => 'OR',
'options' => '',
'value' => array (
0 => 'storylink',
1 => 'leech_news_item',
),
),
array (
'tablename' => 'node',
'field' => 'created',
'operator' => '>',
'options' => '-259000',
'value' => 'now',
),
);
$view->exposed_filter = array (
);
$view->requires = array(node, node_counter);
$views[$view->name] = $view;

dropcube’s picture

Status: Active » Closed (fixed)

If it also fails using other style plugin it should be due to other issue, not related with this module. I have noted that your are using several filters, remove the filters temporarily until you find what is causing the problem.