For some reason my pager on views pages is not working. I have a simple view named "business" set up using a table view to list 4 nodes per page. I have "Use Pager" checked and the pager shows up at the bottom of the list. The pager is 1 through 4 then "next" and "last" links. When I'm on the first page of the list and rollover the number 2, the url in the status bar shows "business?page=1", rolling over 3 the url shows as "business?page=2", next shows "business?page=1".

If I click on any of the links, the page submits but it always stays on page one, in other words the pager never advances to the next page.

Anybody got any ideas as to what might be wrong?

Thanks,

Tim

Comments

twooten’s picture

I just can't seem to figure out what the problem is.

twooten’s picture

My pager is not working. Can anyone help me with this? When I click "next" or any other link in the pager, the page submits but never advances to the next page. It only redisplays the same page. I don't even know where to start looking.

Thanks,

Tim

silverwing’s picture

that's the way it works. The first page is like page 0, then 1, etc. It should be the same on the recent posts here at drupal.org http://drupal.org/tracker

~silverwing

_____________________________________________
Land of Midnight | MisguidedThoughts | showcaseCMS

twooten’s picture

You're right, it does work that way. The problem I'm having is that the pager never advances me to the next page. I have probably 200 nodes in my site but if I go to admin/content/node and scroll to the bottom and click next, it never goes to the next page. Same problem with views, tracker, recent hits, etc. The pager doesn't work anywhere on my site.

Tim

twooten’s picture

if anyone runs across this again see http://drupal.org/node/104688#comment-891595. I don't know if this is a bug or what but anyway, changed line 1205 in includes/common.inc from

return $base . $path .'?'. $query . $fragment;

to

return $base . $path .'&'. $query . $fragment;

and now the pager works.

Tim