i originally posted here: #673140 thinking this was an issue with Advanced Profile module.. and it sort of is; but more generically an issue with ctools.

basically if a view is missing for a panel setup then ctools white screens

changing the code in the views_content_views_panes_content_type_admin_info() function to this:

  list($view_name, $display_name) = explode('-', $subtype);
  $view = views_get_view($view_name);
  if (!$view) return;
  $view->set_display($display_name);

fixes the problem.

Comments

merlinofchaos’s picture

Status: Active » Closed (duplicate)

This seems highly likely to be #612850: Fatal Error views_panes.inc on line 430 which is fixed in -dev.

liquidcms’s picture

k, thanks.. thought i tried dev.. will check it out.