You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The pagination doesn't work. In messages, I inserted 15 rows. When I go to page number 1, everithing is OK but page number 2 shows me messages with Id > 2 and it should show messages with id > 10.
Please check it out.
The text was updated successfully, but these errors were encountered:
Seems like its the setting for paginationlib.php inside 'application/libraries/app' directory. Please check the settings for "$config['uri_segment']" to the proper uri segment number based on the uri structure for your application. Let me know if it still doesn't work.
I haven't changed anything. The $config['uri_segment'] is 4 as in your code. Can you try adding 15 messages in message table to check? I think the cause is $start_record = 0 and get_by_range method in My_DModel. When I go to page 2, $start_record = 2 and findBy would start at record 2 and it should start at record 11.
The pagination doesn't work. In messages, I inserted 15 rows. When I go to page number 1, everithing is OK but page number 2 shows me messages with Id > 2 and it should show messages with id > 10.
Please check it out.
The text was updated successfully, but these errors were encountered: