Manage gallery not calling second page of galleries need help or have to switch plugins. Click on second page brings to blank page. PHP calls for wp-admin/admin.php?paged=2 nothing comes up.
Manage gallery not calling second page of galleries need help or have to switch plugins. Click on second page brings to blank page. PHP calls for wp-admin/admin.php?paged=2 nothing comes up.
I am having similar issues and the frustrating part is no one seems to be able to duplicate the issue... Did you create your own theme? Mine is a custom designed theme I am wondering if that is the problem.
yes i created my own theme, im not sure why that would affect it though since it is a backend ordeal. it is rather frustrating.
I found a possible solution but I dont assume it will be a permanent fix.
I went into the manage-gallery.php file and changed
$start = ( $_GET['paged'] - 1 ) * 25;
$gallerylist = $nggdb->find_all_galleries('gid', 'asc', TRUE, 25, $start);
to:
$start = ( $_GET['paged'] - 1 ) * 100;
$gallerylist = $nggdb->find_all_galleries('gid', 'asc', TRUE, 100, $start);
Now the manage gallery page will show up to 100 galleries, not efficient if you have alot of image galleries.
I hope someone has a better answer.
This topic has been closed to new replies.