助けて Posted August 25, 2021 Posted August 25, 2021 I have a custom table in the database with around 2 million rows, to paginate it I am using PageArray->renderPager() function. <?php $a = new PageArray(); $a->setTotal($total); $a->setLimit($limit); $a->setStart($start); $a->renderPager(); It is rendering it correctly: But when I open any page greater than /page999 it gives me Error 404. How to resolve this issue?
Jan Romero Posted August 25, 2021 Posted August 25, 2021 There is a configurable limit on page numbers that you can increase from the default 999: 4
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now