Check if the database profiler is enabled. There seems to be a conflict between the DB profiler and Zend_Paginator_Adapter_DbTableSelect .
I also created a new Paginator class that extends Zend_Paginator , and I changed the getItemsByPage function.
$offset = ($pageNumber - 1) * $this->getItemCountPerPage(); $items = $this->_adapter->getItems($offset, $this->getItemCountPerPage());
These two lines of code should be added at the beginning, after $pageNumber = $this->normalizePageNumber($pageNumber) .
source share