Hi.

I need a little help getting the Paging module to work in 4.7.4 on a CCK node with TinyMCE enabled.

I've done the following:

  • Downloaded & installed Paging Module 4.7.x-1.x-dev.
  • Enabled Paging Module in Admin
  • Moved the Druaplbreak plugin to the appropriate TinyMCE Plugins folder - The buttons show up in the TinyMCE Buttons & Plugins tab, the two butons are checked
  • I've left the default pagebreak text as <!--pagebreak-->
  • Permissions are ok for my User role, I can see and use TinyMCE to format text, and the two Drupal Break buttons show up in the editor toolbar, clicking them inserts the correct pagebreak comment
  • Under Admin/Input Formats for both filtered HTML and Full HTML I've checked the Paging box
  • The html comment appears in the source of the rendered page correctly
  • I've even tried putting the <!--paging_filter--> comment at the start of my content (read it in another post)

Unfortunately, the pagination still isn't working... any thoughts/ tips/ help?

Thanks,
-Chris

Comments

hubris’s picture

• All content types have been enabled for Paging, under Admin/Settings/Paging

hubris’s picture

Bump...

Any thoughts?

Brian.Harris’s picture

i'm having the same problem.

I'm also using CCK with contemplates, and i have a feeling this is part of the problem.

have you been able to figure it out?

hubris’s picture

I had some other bigger issues to resolve...

I was thinking that the problem with this set up is that the Contemplates bypass the normal Body content of a page, and so it never gets processed by the Paging module. My idea was to see if I could copy the main processing code from the Paging Module into the Contemplate Template. But I never got around to it...

-Chris

Brian.Harris’s picture

so my issue was with cck and paging here was is my solution.

in body template for the content type i have:

if(isset($_GET['page'])) $page = $_GET['page']; else $page=0;
print $pages[$page];

hope this helps someone.