I read and followed the instructions below for upgrade from 3.0.1 to 3.0.2:
/////////////////////////////
// CubeCart v3 3.0.1 to 3.0.2
// UPGRADE INSTRUCTIONS
/////////////////////////////
PLEASE TAKE A FULL BACKUP OF YOUR CURRENT SITE FILES AND
DATABASE DUMP BEFORE PROCEEDING WITH THE UPGRADE PROCESS
+------------------------------------------------
| Manual Method
+------------------------------------------------
Upload every file to the server replacing your existing ones excluding:
includes/global.inc.php
install/
language/*/*.inc.php (If they have been modified)
Please check your payment gateway settings and test appropriately. (Authorize.net & WorldPay Only)
IMPORTANT: If you have made changes to the templates and do not wish to lose your work please make the following changes.
1. Open skins/*/styleTemplates/content/cart.tpl
+-------------------------------
| Find (at around line 126):
+-------------------------------
<input name="quan[{VAL_PRODUCT_KEY}]" type="text" value="{VAL_QUANTITY}" size="2" class="textbox" style="text-align:center;">
+-------------------------------
| Replace with:
+-------------------------------
<input name="quan[{VAL_PRODUCT_KEY}]" type="text" value="{VAL_QUANTITY}" size="2" class="{TEXT_BOX_CLASS}" style="text-align:center;" {QUAN_DISABLED} />
2. Open skins/*/styleSheets/style.css
+-------------------------------
| Add at the bottom:
+-------------------------------
.textboxDisabled {
background-color: #FFFFFF;
border: none;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 11px;
color: #000000;
}
Upgrade complete.
I'm confused by the statement "upgrade complete." Does that mean that these few changes are the only changes made between versions? If it's necessary to upload all the files in the upload file, I can do that, but these instructions lead me to believe it's not necessary? I've completely reskinned my site and don't want to overwrite more than I have to. Excluding the above, what other files are safe to leave out? I assume the whole contents of the "skins" folder as well as the "images" folder, correct?
Thanks.