Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using codeigniter and its pagination class. It works perfectly and it looks something like this:

« First < 1 2 3 4 5 > Last »

Here is my code:

$this->load->library('pagination');
$config['base_url'] = base_url().'controlpanel/';
$config['first_link'] = 'First';
$config['total_rows'] = $count;
$config['per_page'] = '3'; 
$this->pagination->initialize($config); 
$data['pagination'] = $this->pagination->create_links();
$this->load->view('controlpanel', $data);

I have this in my routes:

$route['controlpanel/(:num)'] = "controlpanel/index/$1";

However, whenever I get to a differentpage i.e. controlpanel/3 - the number 1 is always bold - it should change to 2 or 3 etc!

Why doesn't it?

When I change the $config['base_url'] to base_url().'controlpanel/page' then does the pagination work correctly by boldening the correct number - but the link 1 points to the URL controlpanel/page which is the wrong page for me as the base is just controlpanel.

Thanks all for any help.

share|improve this question

3 Answers

up vote 18 down vote accepted

The pagination class should check the second parameter, not the third(default).

Add this to the config array to change this:

$config['uri_segment'] = '2'; 

This won't change anything but be helpful in creating the url needed. change this :

$config['base_url'] = base_url().'controlpanel/';

to this:

$config['base_url'] = site_url('controlpanel');
share|improve this answer
Thanks for your reply Thorpe - I tried the above and the same thing happened. Are you saying per_page is the segment of the URL that the pagination class will check?? Btw, I am using a htaccess file that just removes the index.php part. – Abs Feb 25 '10 at 2:03
I think you meant $config['uri_segment'] = 2; I have added this and it works! Please edit your question so others can see it more easily. Your answer sparked a thought in what was needed thank you very much. I didn't realise how the pagination class was getting the page number it needs to go to! – Abs Feb 25 '10 at 2:07
no problem. I figured the error and edited it a while ago. :) – Thorpe Obazee Feb 25 '10 at 2:12
Thanks for this, it fixed my issue. I remembered to use the segment in the model, but forgot to use it in the pagination settings as well, appreciate it! – Chris Oct 17 '12 at 23:35

Also dont forget to check out for.. $inboxMessageCount this value set from the controller

$config['total_rows'] = $inboxMessageCount;

If this value set, is less than the limit value, then pagination will not be displayed.

share|improve this answer

Also put this line

$config['uri_segment'] = 3;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.