Contributions

Features (Category Index)
Search: 

Admin Products Paging

This contribution was created because of the need of paging the list of products in admin.

Some categories needed to have hundreds of products, and inserting or just editing them was too slow or simply impossible.

After looking for some contributions doing that, I found one of Giuseppe Urso, wich didn't seem to work right for me, so I made some changes to it.

Expand All / Collapse All

Admin Products Paging v.4.0 dr_lucas 13 Jan 2008

This is an extensive update to categories.php.
Just extract the file and replace /admin/categories.php with this file or use a file comparison program to integrate the changes manually. Remember to backup any previous file.

Pagination works here properly in all tested cases.

this is NOT a full package. You will also need to run the SQL query from V3.0 if you haven't already.

If you get this error (Fatal error: Call to undefined function: tep_hide_session_id() in...) it's probably because you didn't upgrade to the latest OSC RC1.
This function comes with RC1, please add it to your admin/includes/functions/html_output.php file
Make sure you paste the code right ABOVE the final ?> at the bottom of the file:


// Hide form elements
function tep_hide_session_id() {
$string = '';
if (defined('SID') && tep_not_null(SID)) {
$string = tep_draw_hidden_field(tep_session_name(), tep_session_id());
}
return $string;
}

Admin Products Paging - v3.0 Patty 6 Mar 2007
Admin Products Paging V.2 con4mity 6 Mar 2007
Admin Product page splitting using osCommerce splitPageResults mastergigi 4 Nov 2006
Admin products paging forum Jordi 30 Sep 2006
Admin paging 2.2 Jordi 3 Sep 2006
Bug! Any help? Maik 16 Feb 2005
Admin Paging patch for REGISTER GLOBALS = OFF Luis Lopez 26 Nov 2004
Admin products paging 2.1 Jordi Oller 15 Oct 2004
Admin paging 2.0 Estable Jordi 12 Oct 2004
Admin Products Paging Update Manuel Barbancho 8 Sep 2004
Admin Products Paging Manuel Barbancho 23 Mar 2004

Note: Contributions are used at own risk.