I have downloaded cTools and cTools plugin example, after enabling them, I found there is a "cTools plugin example" item added in the administration bar. I clicked on this item then found there was an error message shown: "Error messageNotice: Undefined index: pipeline in panels_panel_context_render() (line 282 of /var/www/drupal/sites/all/modules/panels/plugins/task_handlers/panel_context.inc).

CommentFileSizeAuthor
#6 panel_context-980438.patch535 bytesrobidigital

Comments

Dien’s picture

Status: Active » Closed (fixed)

Sorry, I didn't explain it clearly.
The error message occured when I clicked on "cTools demo panel" link in the messge text which is shown after I clicked on "cTools plugin example" item. I think this may not belong to "Download Tools" project. Looks like I have to post it on the cTools module site for bug report.

ericmaster’s picture

I'm getting the same thing, could you figure out what was wrong? is there a issue thread about this on the ctools project?

accesspoint’s picture

I get the same error as well

Chuck

krymp’s picture

Same error as well:
Notice: Undefined index: pipeline in panels_panel_context_render() (line 282 of /home/ysadmin/public_html/sites/all/modules/panels/plugins/task_handlers/panel_context.inc).

robidigital’s picture

on line 282 of panel_context.inc, I replaced

       $renderer = panels_get_renderer($handler->conf['pipeline'], $display);

with

	if(isset($handler->conf['pipeline'])){
		$renderer = panels_get_renderer($handler->conf['pipeline'], $display);
	} else {
		$renderer = panels_get_renderer('', $display);
	}

Error went away.

robidigital’s picture

Status: Closed (fixed) » Patch (to be ported)
StatusFileSize
new535 bytes

Here is a patch that covers my last post.

Anticosti’s picture

Subscribe...

mhamed’s picture

Assigned: Unassigned » mhamed
Status: Patch (to be ported) » Needs work

done
but once clicking the 'edit panels'
there is series of errors:

* Notice: Undefined index: 1 in filter_list_format() (line 675 of ...modules/filter/filter.module).
* Warning: Invalid argument supplied for foreach() in filter_list_format() (line 675 of .....modules/filter/filter.module).
* Notice: Undefined index: 2 in filter_list_format() (line 675 of .....modules/filter/filter.module).
* Warning: Invalid argument supplied for foreach() in filter_list_format() (line 675 of.....modules/filter/filter.module).

can anyone detect the problem thanks

Project: » Lost & found issues

This issue’s project has disappeared. Most likely, it was a sandbox project, which can be deleted by its maintainer. See the Lost & found issues project page for more details. (The missing project ID was 973786)