Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Attributes admin error


SWC_Scotty

Recommended Posts

Posted

Hey guys,

 

im using v2.2 RC1 on my server and i have a problem with the attributres in the admin panel.

 

On the bottom section it shows there are 3 pages of attributes but when i click on any of the pages of click next page it stays on page one but the URL does change to admin/products_attributes.php?attribute_page=2.

 

I cant figure this out and really need to get to the other attributes. Anyone having the same problems?

 

Scotty

Posted

To fix the problem do the following:

 

Open admin/products_attributes.php and do the following:

 

Find the following code:

 

$action = (isset($HTTP_GET_VARS['action']) ? $HTTP_GET_VARS['action'] : '');

 

Replace that code with the following:

 

$action = (isset($HTTP_GET_VARS['action']) ? $HTTP_GET_VARS['action'] : '');

$option_page = (isset($HTTP_GET_VARS['option_page']) ? $HTTP_GET_VARS['option_page'] : '1');

$value_page = (isset($HTTP_GET_VARS['value_page']) ? $HTTP_GET_VARS['value_page'] : '1');

$attribute_page = (isset($HTTP_GET_VARS['attribute_page']) ? $HTTP_GET_VARS['attribute_page'] : '1');

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...