Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Upgraving to 2.2rc1


Guest

Recommended Posts

I'm trying to upgrade to the newest version of osCommerce. I can't find instructions on how to upgrade a current install, only how to do a new one. I currently don't have a CATALOG directory in my current structure. Are there some easy to follow UPGRADE instructions ?

 

Thanks in advance for the help

 

Mike.

Link to comment
Share on other sites

If you would take the time to read those list of problems you will see that those problems have been addressed with a patch that you must apply by following the directions.

 

This is an example of what you need to apply:

 

Solution:

 

The following lines must be replaced in catalog/includes/functions/compatibility.php:

 

Lines 22-23, from:

 

if (is_array($value)) {

do_magic_quotes_gpc($value);

 

to:

 

if (is_array($ar[$key])) {

do_magic_quotes_gpc($ar[$key]);

The following lines must be replaced in catalog/admin/includes/functions/compatibility.php:

Lines 22-23, from:

 

if (is_array($value)) {

do_magic_quotes_gpc($value);

 

to:

 

if (is_array($ar[$key])) {

do_magic_quotes_gpc($ar[$key]);

 

 

This is th only way to do a step by step update.

 

 

update-20060817.txt which looks like just a list of problems ?
Link to comment
Share on other sites

Sorry for not reading completely, I guess all that code scared me. I will make the changes then the upgrade will be complete ?

 

I still do not have a "catalog" directory in my current structure ?

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...