I have a Drupal 6 site where I created a view that shows a list of nodes. Nothing complicated - except that when I select "use pager" β "yes" (and select the option "full pager"), the pager does not appear on the page. The first page of the nodes appears, but there is no access to other pages.
Through googling, I saw that some people had a problem with the Pager Element element, so I changed this from 0 to 1 - no luck.
It should not be very difficult, but I was on it for a while!
Help!
ETA: I traced it to the following lines in /modules/views/theme/theme.inc:
$pager_theme = views_theme_functions($pager_type, $view, $view->display_handler->display); $vars['pager'] = theme($pager_theme, $exposed_input, $view->pager['items_per_page'], $view->pager['element']);
The first line returns an array; the second line returns nothing.
Now I suspect that this is a problem with the custom theme that I use, maybe not completely updated for Drupal 6 - like, maybe for some reason I miss the pager template? βHowever, I am pretty new to Drupal and donβt understand how to further track and fix the problem.β Any advice would be highly appreciated!
ETA again:
The pager also does not appear when using Garland, so in the end it is not a topic. ALSO: I have a copy of this site configured on the development server, and this copy works on a pagination basis! I checked what I thought could be different - the files in the topic, which modules are included, and it looks like everything is the same. However, one thing I know is different from the fact that the production server has a lower version of MySQL (lower than recommended for Drupal 6 - we expect the hosting company to be able to change this later). Does it make sense that the old version of MySQL cannot correctly render pages in Drupal 6? If so, does anyone know a workaround that I can make until we can upgrade MySQL?