Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Product Attributes and Option Values pages


Jump1979man

Recommended Posts

Posted

Sorry if this has already been asked, I tried searching and found nothing. I cant believe I am the only one this is happening to....

 

In the admin area for product attributes and Option Values I cannot click another page for each of these two things to try and change the value or even delete them. It just stays on the #1 page for each. I have over 4 pages of both yet it will not advance or go to any selectable numbered page.

 

Any help is appreciated.

Posted
Anyone? This cart is pretty much useless if this cant be solved.

 

 

 

I was having the same problem. Finally found this code snippet and it worked like a charm.

Starting with your main directory i.e.; catalog, public_html /var/www/html then go to

/admin/products_attributes.php

Back up this files first, just in case.

 

Look for this code:

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

Should be around Line 16;

 

Underneath this code enter the following:

$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');

 

Before you do this remember to backup your original file.

 

Good Luck

Posted
I was having the same problem. Finally found this code snippet and it worked like a charm.

Starting with your main directory i.e.; catalog, public_html /var/www/html then go to

/admin/products_attributes.php

Back up this files first, just in case.

 

Look for this code:

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

Should be around Line 16;

 

Underneath this code enter the following:

$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');

 

Before you do this remember to backup your original file.

 

Good Luck

 

 

Thanks for your reply, I will try this.

 

Why this is a BUG in the system and we need to apply code for this to work properly is beyond me. HELLO OSCOMMERCE, WAKE UP......

Posted
Thanks for your reply, I will try this.

 

Why this is a BUG in the system and we need to apply code for this to work properly is beyond me. HELLO OSCOMMERCE, WAKE UP......

 

 

that code worked great. many thanks to you!

Archived

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

×
×
  • Create New...