Jump1979man Posted November 21, 2007 Posted November 21, 2007 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.
Jump1979man Posted November 22, 2007 Author Posted November 22, 2007 Anyone? This cart is pretty much useless if this cant be solved.
Guest Posted November 24, 2007 Posted November 24, 2007 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
Jump1979man Posted November 25, 2007 Author Posted November 25, 2007 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......
Jump1979man Posted November 26, 2007 Author Posted November 26, 2007 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!
Recommended Posts
Archived
This topic is now archived and is closed to further replies.