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
Comment #1
liquidcms commented#673140: apk_ur_friends_gallery view doesn't install so ctools white screens
Comment #2
merlinofchaos commentedThis seems highly likely to be #612850: Fatal Error views_panes.inc on line 430 which is fixed in -dev.
Comment #3
liquidcms commentedk, thanks.. thought i tried dev.. will check it out.