[eluser]papasnorkle[/eluser]
[quote author="Aken" date="1345768615"]Post the code where you actually initialize and use the Pagination library. Your pagination config looks fine for using page numbers the way you want, so it's probably with how you're initializing the code.

[/quote]
Thanks for the swift response Aken, I really appreciate your help, see below for the additional code.
taken from the controller:
Code:
public function type($type = "home", $identifier1 = "", $identifier2 = "")
{
$this->load->spark('ci_alerts/1.1.7');
$this->load->spark('ci_authentication/1.3.4');
$this->load->library('pagination');
$config = $this->Main_model->get_pagination_config($type, $identifier1, $identifier2);
if( !empty($config) )
{
$this->pagination->initialize($config);
}
$data = array();
$data['identifier1'] = $identifier1;
$data['identifier2'] = $identifier2;
$data['page_name'] = $type;
$data['apps'] = $this->Main_model->get_main_layout($type,$identifier1,$identifier2);
$data['app_list'] = $this->Main_model->get_app_list($type);
if($data['apps']!="error")
{
$data['head'] = "template/html_top";
$this->load->view('default_view',$data);
} else {
$data = array();
$data['error_code'] = 404;
$this->load->view('error_view',$data);
}
}
taken from the view:
Code:
<div class="pagination">
<?php echo $this->pagination->create_links(); ?>
</div>