I just started enable caching for our project and came across this.
I'm not sure whether this check should be removed, changed or enhanced :)

  • Removed because I can't find any "use_pager" config elsewhere in the whole panels module
  • Changed because ctools implements this related to the views content type plugin
  • Enhanced because I'm not sure if this will work on detecting paging for views / views_panes content types

Comments

mmtahir’s picture

Me 2

mmtahir’s picture

Issue tags: -panels, -7.x-3.x-dev

I solved my problem by just disabling cache for each panel

mmtahir’s picture

Issue tags: +panels, +7.x-3.x-dev

I solved my problem by just disabling cache for each panel i.e.
in the panel contents tab change caching (Caching->change=> No Caching) for each panel by clicking on the settings anchor at top-right of each panel.

(Note: I was using 7.x-3.x-alpha2 but the message was the same)

esmerel’s picture

Removing tags for duplicating the "Assigned" or "Component" fields.

erdembey’s picture

Status: Active » Needs review

I have this problem also ...
Let me share possible solution for this problem;

- Open file "plugins/cache/simple.inc" which is located in panels module folder,
- Find line 108;

if($pane->configuration['use_pager'] == 1) {

- Replace line 108 with the code below;

if(isset($pane->configuration['use_pager']) && $pane->configuration['use_pager'] == 1) {

I hope it works ...
It should be ...

merlinofchaos’s picture

Status: Needs review » Fixed

Fixed the notice.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

tipit’s picture

Version: 7.x-3.x-dev » 6.x-3.9
Assigned: Unassigned » tipit
StatusFileSize
new501 bytes

Here is a patch for Drupal 6. It was even in a same line so I guess it fits to D7 too, but I haven't tested.

kars-t’s picture

Assigned: tipit » Unassigned
Status: Closed (fixed) » Needs review
damienmckenna’s picture

Status: Needs review » Reviewed & tested by the community

Works for me.

damienmckenna’s picture

Status: Reviewed & tested by the community » Needs review
StatusFileSize
new510 bytes
new486 bytes

This is an alternative patch that changes that line to use the same code as the D7 version; I've also included a D7 patch to fix the formatting of that line.

dave reid’s picture

Version: 6.x-3.9 » 6.x-3.x-dev
Status: Needs review » Reviewed & tested by the community

Looks good.

  • Commit 9ff0a67 on 7.x-3.x, pipelines, 7.x-3.x-i18n, 8.x-3.x by merlinofchaos:
    Issue #1062290: "use_pager" notice when using simple cache.
    
    
damienmckenna’s picture

japerry’s picture

Version: 6.x-3.x-dev » 7.x-3.x-dev
Related issues: +#2423733: Plan for Panels 7.x-3.6 release

Fixed in d6. Need to bring into D7.

  • japerry committed 9ddff8c on 6.x-3.x authored by DamienMcKenna
    Issue #1062290 by DamienMcKenna, TipiT: Undefined index:  use_pager on...
damienmckenna’s picture

Status: Reviewed & tested by the community » Fixed

This was already committed to the 7.x-3.x branch.

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.