CodeIgniter Forums
Pagination not coming after 10410 rows - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived General Discussion (https://forum.codeigniter.com/forumdisplay.php?fid=21)
+--- Thread: Pagination not coming after 10410 rows (/showthread.php?tid=42832)



Pagination not coming after 10410 rows - El Forum - 06-21-2011

[eluser]SureshPHP[/eluser]
Pagination not working after 10410 rows .Can anyone give solution for this?


Pagination not coming after 10410 rows - El Forum - 06-21-2011

[eluser]osci[/eluser]
I'm having pagination working on 15K+ records.
Can you be a little more specific?
Are you referring to page number?
What is the error.


Pagination not coming after 10410 rows - El Forum - 06-21-2011

[eluser]SureshPHP[/eluser]
yes, referring page number.page number working upto 51680 from last record of page number 52055..

whats solution?


Pagination not coming after 10410 rows - El Forum - 06-22-2011

[eluser]osci[/eluser]
According to your numbers you have 5 records per page.
cur_page is int so you should have 2147483647(=max int) / 5 = 429496729,4 pages. Paginatkion should gie you in this case 429496730.
Pagination seems working fine here.

I asked you what the error is? No message? Nothing?

what solution is not an answer Wink


Pagination not coming after 10410 rows - El Forum - 06-22-2011

[eluser]SureshPHP[/eluser]
Thank you very much for your reply.I find the problem in join query.Pagination working fine here.Your suggestion is exactly.

Thanks.