MotoD3lux3 Posted January 19, 2009 Share Posted January 19, 2009 Hi, I have just set-up a working OSC v2.2 store. All is working fine except on the Products Attributes page within the admin section. The links that take you to see page 2, 3 and so on for the Option Values do nothing even though I have multi pages. I can't see anything beyond the first 10 attributes. I've tried re-uploading /admin/products_attributes.php but it makes no difference. Has anyone encountered this or know of a fix? -- Cheers MotoD3lux3 Link to comment Share on other sites More sharing options...
lindsayanng Posted January 19, 2009 Share Posted January 19, 2009 ugh.. this was an issue i have had many times in the past.. Did you install any new contributions that caused this to happen?? A great place for newbies to start Road Map to oscommerce File Structure DO NOT PM ME FOR HELP. My time is valuable, unless i ask you to PM me, please dont. You will get better help if you post publicly. I am not as good at this as you think anyways! HOWEVER, you can visit my blog (go to my profile to see it) and post a question there, i will find time to get back and answer you Proud Memeber of the CODE BREAKERS CLUB!! Link to comment Share on other sites More sharing options...
Denkster Posted January 3, 2010 Share Posted January 3, 2010 Hi, I have just set-up a working OSC v2.2 store. All is working fine except on the Products Attributes page within the admin section. The links that take you to see page 2, 3 and so on for the Option Values do nothing even though I have multi pages. I can't see anything beyond the first 10 attributes. I've tried re-uploading /admin/products_attributes.php but it makes no difference. Has anyone encountered this or know of a fix? Yes. A </form> tag is missing, that is the reaon. To be more precise, in /catalog/admin/products_attributes.php, Change this: <td> <form name="attributes" action="<?php echo tep_href_link(FILENAME_PRODUCTS_ATTRIBUTES, 'action=' . $form_action . '&option_page=' . $option_page . '&value_page=' . $value_page . '&attribute_page=' . $attribute_page); ?>" method="post"> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td colspan="7" class="smallText"> to this <td> <!-- form name="attributes" START 1 //--> <form name="attributes" action= "<?php echo tep_href_link(FILENAME_PRODUCTS_ATTRIBUTES, 'action=' . $form_action . '&option_page=' . $option_page . '&value_page=' . $value_page . '&attribute_page=' . $attribute_page); ?>" method="post"> </form> <!-- form name="attributes" END 1 //--> <table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td colspan="7" class="smallText"> The essential difference is </form> The other differences are for readability. Eveline Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.