We have already created custom module for searching but pagination not working. we have used following code for pagination.
jimport( 'joomla.html.pagination' );
$pagNav = new JPagination(6, 0, 5);
$pageNav = new JPagination( $db->loadResult(), $lim0, $lim );
echo $pagNav->getListFooter();
Try
I’m not sure what the purpose of your
pagNavvariable was, but it sure looked out of place. This is also assuming you’re setting$lim0and$limcorrectly, of course.