toolman Posted October 5, 2007 Share Posted October 5, 2007 Hi there, I need to upgrade my store to 2.2, but I cannot find the upgrade files anywhere. Where are they? Thanks! Link to comment Share on other sites More sharing options...
Guest Posted October 5, 2007 Share Posted October 5, 2007 Hi there, I need to upgrade my store to 2.2, but I cannot find the upgrade files anywhere. Where are they? Thanks! Download the latest, the notes are included. Link to comment Share on other sites More sharing options...
Guest Posted October 6, 2007 Share Posted October 6, 2007 Download the latest, the notes are included. upgrade file is not in the newest download where can it be gotten at. Link to comment Share on other sites More sharing options...
Jan Zonjee Posted October 6, 2007 Share Posted October 6, 2007 upgrade file is not in the newest download where can it be gotten at. The 2006 upgrade still had it (in extras, pr21_to_pr22 directory). Link to comment Share on other sites More sharing options...
Guest Posted October 6, 2007 Share Posted October 6, 2007 The 2006 upgrade still had it (in extras, pr21_to_pr22 directory). Thanks Jan. I thought the upgrades were included in the latest download from OSC as a text file. Since many people have heavily modified stores, why aren't the upgrades available from OSC? Link to comment Share on other sites More sharing options...
Jan Zonjee Posted October 6, 2007 Share Posted October 6, 2007 Since many people have heavily modified stores, why aren't the upgrades available from OSC? I don't know. Perhaps Harald assumed that by now the upgrade from version 2.1 to 2.2 was no longer needed. The RC1 can be downloaded from the osC site of course. Link to comment Share on other sites More sharing options...
Guest Posted October 6, 2007 Share Posted October 6, 2007 I don't know. Perhaps Harald assumed that by now the upgrade from version 2.1 to 2.2 was no longer needed. The RC1 can be downloaded from the osC site of course. OK, thanks Jan. It is a pity that the upgrade files are not on the OSC site any more. Personally, I won't be using RC1 because I will have to redo all of my contribs that I have installed (I don't know if I will live long enough). Am looking forward to V3. Link to comment Share on other sites More sharing options...
Jan Zonjee Posted October 6, 2007 Share Posted October 6, 2007 Am looking forward to V3. Then you will certainly have to redo all of them. I would suggest to at least add the changes in the sort stuff on index.php that is in RC1... Link to comment Share on other sites More sharing options...
Guest Posted October 6, 2007 Share Posted October 6, 2007 Then you will certainly have to redo all of them. I would suggest to at least add the changes in the sort stuff on index.php that is in RC1... Hi Jan Do you mean on the admin side? I am up to date with the latest bugfixes and security fixes, it is just the RC1 cosmetic type changes that I have not done. Link to comment Share on other sites More sharing options...
Jan Zonjee Posted October 6, 2007 Share Posted October 6, 2007 Do you mean on the admin side?I am up to date with the latest bugfixes and security fixes, it is just the RC1 cosmetic type changes that I have not done. I believe this one was security related but it wasn't given much publicity. If you take a very close look at the order by stuff you will notice a small but significant change if you compare the two index.php's of RC1 and the 2006 update. This is the 2006 one: $sort_col = substr($HTTP_GET_VARS['sort'], 0 , 1); $sort_order = substr($HTTP_GET_VARS['sort'], 1); $listing_sql .= ' order by '; switch ($column_list[$sort_col-1]) { case 'PRODUCT_LIST_MODEL': $listing_sql .= "p.products_model " . ($sort_order == 'd' ? 'desc' : '') . ", pd.products_name"; break; and this is the RC1 one (the order by is added to each case): $sort_col = substr($HTTP_GET_VARS['sort'], 0 , 1); $sort_order = substr($HTTP_GET_VARS['sort'], 1); switch ($column_list[$sort_col-1]) { case 'PRODUCT_LIST_MODEL': $listing_sql .= " order by p.products_model " . ($sort_order == 'd' ? 'desc' : '') . ", pd.products_name"; break; Link to comment Share on other sites More sharing options...
Guest Posted October 6, 2007 Share Posted October 6, 2007 I believe this one was security related but it wasn't given much publicity. If you take a very close look at the order by stuff you will notice a small but significant change if you compare the two index.php's of RC1 and the 2006 update. This is the 2006 one: $sort_col = substr($HTTP_GET_VARS['sort'], 0 , 1); $sort_order = substr($HTTP_GET_VARS['sort'], 1); $listing_sql .= ' order by '; switch ($column_list[$sort_col-1]) { case 'PRODUCT_LIST_MODEL': $listing_sql .= "p.products_model " . ($sort_order == 'd' ? 'desc' : '') . ", pd.products_name"; break; and this is the RC1 one (the order by is added to each case): $sort_col = substr($HTTP_GET_VARS['sort'], 0 , 1); $sort_order = substr($HTTP_GET_VARS['sort'], 1); switch ($column_list[$sort_col-1]) { case 'PRODUCT_LIST_MODEL': $listing_sql .= " order by p.products_model " . ($sort_order == 'd' ? 'desc' : '') . ", pd.products_name"; break; OK, thanks Jan. I will check this one out tomorrow. I did think that all security issues and bug fixes were addressed in the August 2006 update. Link to comment Share on other sites More sharing options...
Guest Posted October 7, 2007 Share Posted October 7, 2007 OK, thanks Jan. I will check this one out tomorrow. I did think that all security issues and bug fixes were addressed in the August 2006 update. Hi Jan I have make the changes and all is well. Thank you for letting me know. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.