

NJRAS5
Members-
Content count
16 -
Joined
-
Last visited
Profile Information
-
Real Name
Shelley
-
Well good, I'm glad you backed up :) Those bloody white spaces - get you every time, lol.
-
Aye, you didn't back up first?? Well good luck!!!!!
-
http://addons.oscommerce.com/info/2841 Try this. Not the one I was talking about (can't find it at the moment) but this works great too and is super easy to install :)
-
Um...sorry about this seemingly blank post-I didn't know how to get anything to show up, but then I looked up a couple posts and found it, and I don't see where to delete my crybaby post, so...um...God I feel blonde :/
-
New UPS XML Shipping Module available
NJRAS5 replied to torinwalker's topic in General Add-Ons Support
Oh, ok, thanks Jan - so it's a UPS thing. Ok, cool, I can live with that. Thanks again :) -
New UPS XML Shipping Module available
NJRAS5 replied to torinwalker's topic in General Add-Ons Support
I have the following settings: Pickup Method Customer Counter Packaging Type UPS Express Box Customer Classification Code 03 Shipping Origin US Origin Origin City xxxxxxxx Origin State/Province xx Origin Country US Origin Zip/Postal Code xxxxx Test or Production Mode Production Unit Weight LBS Unit Length IN Dimensions Support No Quote Type Residential Negotiated rates False Handling Type Flat Fee Handling Fee 2.00 Enable Insurance False UPS Currency Code USD Tax Class Taxable Goods Shipping Zone --none-- Sort order of display. 0 Disallowed Shipping Methods Next Day Air, Express, Next Day Air Early A.M., Expedited, 2nd Day Air A.M., Saver, Express Early A.M., Express Plus Shipping Delay 2 Email UPS errors Yes Time in Transit Display No Time in Transit View Type Detailed And then when I go to make a test order, the only shipping options I get are: UPS 2nd Day Air UPS Next Day Air Saver Why does it only give me two options, and does anyone know how to correct this? :'( -
Never mind. I found something else that actually works.
-
Somebody's got to know what's up with this, either a fix or a contribution that works. Please?????
-
No one knows what's up with this?
-
Hi I'm trying to install the Category Descriptions contribution for osCommerce 2.2, which is what I'm using. Everything was going fine until I got to this step (change to be made in admin/categories.php): 7) Locate the following 7 lines (approximately line 85): $categories_image = tep_get_uploaded_file('categories_image'); $image_directory = tep_get_local_path(DIR_FS_CATALOG_IMAGES); if (is_uploaded_file($categories_image['tmp_name'])) { tep_db_query("update " . TABLE_CATEGORIES . " set categories_image = '" . $categories_image['name'] . "' where categories_id = '" . tep_db_input($categories_id) . "'"); tep_copy_uploaded_file($categories_image, $image_directory); } REPLACE those 7 lines with the following 11 lines: if (ALLOW_CATEGORY_DESCRIPTIONS == 'true') { tep_db_query("update " . TABLE_CATEGORIES . " set categories_image = '" . $HTTP_POST_VARS['categories_image'] . "' where categories_id = '" . tep_db_input($categories_id) . "'"); $categories_image = ''; } else { $categories_image = tep_get_uploaded_file('categories_image'); $image_directory = tep_get_local_path(DIR_FS_CATALOG_IMAGES); if (is_uploaded_file($categories_image['tmp_name'])) { tep_db_query("update " . TABLE_CATEGORIES . " set categories_image = '" . $categories_image['name'] . "' where categories_id = '" . tep_db_input($categories_id) . "'"); tep_copy_uploaded_file($categories_image, $image_directory); } } The problem is, those lines that are supposed to be replaced do not exist in version 2.2 in that file. >_< Does anyone have a fix for this?