Welcome Guest, Not a member yet? Register   Sign In
Pagination and .htaccess
#2

[eluser]fesweb[/eluser]
In my experience, that is more often a problem with your pagination config. If it is not looking for the correct uri_segment, then it won't do much.

Code:
$pages['total_rows'] = $query->num_rows();
$pages['num_links'] = 3;
$pages['per_page'] = 10;
// make sure that the uri_segment that passes the pagination offset is correct
// by comparing it to your url and testing it with different numbers
$pages['uri_segment'] = 4;
        
$this->pagination->initialize($pages);


Messages In This Thread
Pagination and .htaccess - by El Forum - 12-03-2008, 11:17 AM
Pagination and .htaccess - by El Forum - 12-03-2008, 05:42 PM



Theme © iAndrew 2016 - Forum software by © MyBB