Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

cakephp Not Found error handle in pagination

use CakeHttpExceptionNotFoundException;

public function index()
{
    try {
        $this->paginate();
    } catch (NotFoundException $e) {
        // Do something here like redirecting to first or last page.
        // $this->request->getAttribute('paging') will give you required info.
    }
}
Source by book.cakephp.org #
 
PREVIOUS NEXT
Tagged: #cakephp #Not #Found #error #handle #pagination
ADD COMMENT
Topic
Name
3+4 =