OsCommerce problems with administrting products attributesIn you have some paging problems with paging in products attributes page in administration admin/products_attributes.phpPlease add this lines at line 18 in file admin/products_attributes.phpUNDER $action = (isset($HTTP_GET_VARS['action']) ? $HTTP_GET_VARS['action'] : '');ADD: if( isset($HTTP_GET_VARS['option_page']) ) { $option_page = $HTTP_GET_VARS['option_page']; } if( isset($HTTP_GET_VARS['value_page']) ) { $value_page = $HTTP_GET_VARS['value_page']; } if( isset($HTTP_GET_VARS['attribute_page']) ) { $attribute_page = $HTTP_GET_VARS['attribute_page']; }