Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

atlasoff

Pioneers
  • Posts

    26
  • Joined

  • Last visited

About atlasoff

  • Birthday 04/01/1977

Profile Information

  • Real Name
    Julie
  • Gender
    Female
  • Location
    Mexico
  • Website

atlasoff's Achievements

  1. After a more thorough search of this thread - I found the the fact that I have to modify Configuration part of the Admin section - missed this somehow...
  2. cbonnar, The range is the *lower* limit, so what you're seeing when you make that change is correct - from what I discovered tonight. Before I embarked on this module, I was busy finding the "table rate" module wasn't good enough. The table rate module uses "up to the appropriate weight," as you say. This Multitable module uses the *lower* limit. julie
  3. I cannot get a 4th zone to show up, and it's making me crrrrrrrazy!!! When I set the 3 geozones, they work beautifully, and I'm so happy! Yet, I need to add another zone, and I've uninstalled the module, made the language file additions, reinstalled the module, and grrrrrr... no 4th Geo Zone. I've done this again and again and again tonight because I know I'm probably doing something stupid. If anyone can point out my dunce-i-tude, I'll be very very grateful. My language file mzmt.php: define('MODULE_SHIPPING_MZMT_TEXT_TITLE', 'MultiGeoZone MultiTable'); define('MODULE_SHIPPING_MZMT_TEXT_DESCRIPTION', 'Multiple geo zone shipping with multiple tables to each geo zone.'); define('MODULE_SHIPPING_MZMT_GEOZONE_1_TEXT_TITLE', 'United Parcel Service (UPS)'); define('MODULE_SHIPPING_MZMT_GEOZONE_1_ICON', 'shipping_ups.gif'); define('MODULE_SHIPPING_MZMT_GEOZONE_1_TABLE_1_TEXT_WAY', 'Ground'); define('MODULE_SHIPPING_MZMT_GEOZONE_1_TABLE_2_TEXT_WAY', 'Second Day'); define('MODULE_SHIPPING_MZMT_GEOZONE_1_TABLE_3_TEXT_WAY', 'Next Day'); define('MODULE_SHIPPING_MZMT_GEOZONE_2_TEXT_TITLE', 'MultiGeoZone MultiTable2'); define('MODULE_SHIPPING_MZMT_GEOZONE_2_ICON', ''); define('MODULE_SHIPPING_MZMT_GEOZONE_2_TABLE_1_TEXT_WAY', ''); define('MODULE_SHIPPING_MZMT_GEOZONE_2_TABLE_2_TEXT_WAY', ''); define('MODULE_SHIPPING_MZMT_GEOZONE_2_TABLE_3_TEXT_WAY', ''); define('MODULE_SHIPPING_MZMT_GEOZONE_3_TEXT_TITLE', 'MultiGeoZone MultiTable3'); define('MODULE_SHIPPING_MZMT_GEOZONE_3_ICON', ''); define('MODULE_SHIPPING_MZMT_GEOZONE_3_TABLE_1_TEXT_WAY', ''); define('MODULE_SHIPPING_MZMT_GEOZONE_3_TABLE_2_TEXT_WAY', ''); define('MODULE_SHIPPING_MZMT_GEOZONE_3_TABLE_3_TEXT_WAY', ''); define('MODULE_SHIPPING_MZMT_GEOZONE_4_TEXT_TITLE', 'MultiGeoZone MultiTable4'); define('MODULE_SHIPPING_MZMT_GEOZONE_4_ICON', ''); define('MODULE_SHIPPING_MZMT_GEOZONE_4_TABLE_1_TEXT_WAY', ''); define('MODULE_SHIPPING_MZMT_GEOZONE_4_TABLE_2_TEXT_WAY', ''); define('MODULE_SHIPPING_MZMT_GEOZONE_4_TABLE_3_TEXT_WAY', ''); ?> Thanks in advance, folks! Julie
  4. Any ideas here? I'm having the same trouble and wanting to do the same thing...
  5. I have a store where I have STS and Header Tags SEO installed. In my header.php file, if I have any of the following lines, my store breaks to the point of a WHITE SCREEN :( in IE Explorer (although it works perfectly fine and well in Firefox). This is making me nuts! If I comment out everything, the store works fine minus any of the Header Tags SEO functionality which I need to work desperately. If anyone can throw me a bone on this one, I'll owe you my first born. (her name is Chloé, and she's a doll) :P Julie ------- header.php code: // START STS 4.1 $sts->restart_capture ('applicationtop2header'); // Capture header from the actual script, needed to take out javascript // END STS 4.1 /*** Begin Header Tags SEO ***/ We include header_tags.php early on to make $header_tags_array available to subsequent scripts if ( file_exists(DIR_WS_INCLUDES . 'header_tags.php') ) { require(DIR_WS_INCLUDES . 'header_tags.php'); $sts->restart_capture ('headertags'); /*** End Header Tags SEO ***/
  6. Ok. In the spirit of this wonderful and amazing and friendly forum, I'm just posting this to share my issues with my USPS Methods 4.3.2 installation and what eventually solved them: ~ I had contacted USPS and gotten a username and password and had told them to switch me to the Production server (and consequently got a reply message saying they had done that). ~ I had uninstalled the former USPS module before running through the installation instructions. ~ My zipcode in the admin configuration was correct. ~ The shipping address for the account I was using on the website to test was valid. YET I kept on getting this message in the checkout area of the site where there should have been the listing of options: "An error occured with the USPS shipping calculations. If you prefer to use USPS as your shipping method, please contact the store owner." SO Taking the troubleshooting suggestion from the installation instructions, I went into the catalog/includes/modules/shipping/usps.php script that sends an email containing the rate quote response from USPS. I found the commented statement at line 526, inserted my correct email address in place of "[email protected]" in both places it occurs, and removed the leading "//" characters that make the line a comment. I then "checked out" with another shopping cart full of items in my site and found the same error ("... error occurred with the USP shipping..."). I went into my email's *SPAM* box where the USPS Rate Request email was deposited. It said: <Error> <Number>80040b1a</Number> <Description>Authorization failure. Perhaps username and/or password is incorrect.</Description> <Source>UspsCom::DoAuth</Source> </Error> On reading another forum post that referred to this Error response from USPS where the user said they went back and found some code they forgot to insert during installation. Well, I went back and found nothing in the first section of the installation instructions, but then I went into the second part that begins... "*************************************** * PRE v.3.0 Installation Instructions * *************************************** YOU DO NOT NEED TO DO THIS IF YOU ALREADY HAVE 3.0 to 4.2.x INSTALLED..." I did not before understand this part to apply to me, but just out of pure frustration, I went ahead and tried step 5, which seems to be the only difference in this set of instructions: ********** * STEP 5 * ********** catalog/admin/modules.php ***************************************** Find This code somewhere around line 43: ***************************************** if (tep_not_null($action)) { switch ($action) { case 'save': while (list($key, $value) = each($HTTP_POST_VARS['configuration'])) { *********************************************** INSERT THE FOLLOWING CODE AFTER THE ABOVE LINE: *********************************************** if( is_array( $value ) ){ $value = implode( ", ", $value); $value = ereg_replace (", --none--", "", $value); } **************************** SO IT SHOULD LOOK LIKE THIS: **************************** if (tep_not_null($action)) { switch ($action) { case 'save': while (list($key, $value) = each($HTTP_POST_VARS['configuration'])) { if( is_array( $value ) ){ $value = implode( ", ", $value); $value = ereg_replace (", --none--", "", $value); } tep_db_query("update " . TABLE_CONFIGURATION . " set configuration_value = '" . $value . "' where configuration_key = '" . $key . "'"); } tep_redirect(tep_href_link(FILENAME_MODULES, 'set=' . $set . '&module=' . $HTTP_GET_VARS['module'])); break; case 'install': ..... Well, IT WORKED! I'm in no state to wonder why or figure it out right now because I've spent HOURS trying to get this working. It might be the answer you're looking for as well, so hopefully it helps you into USPS Methods bliss like the majority of the contrib-users here! Cheers, Julie :thumbsup:
  7. OOH-LA-LA. Turns out, TiM's osC Solutions Products in Columns (http://addons.oscommerce.com/info/7159) IS THE BOMB! I upload a *one* file only, don't have to make modifications, it updates the DB immediately without any work on my part, and voila! I have my colums!!!!! Oh my gosh, I feel like dancing down my street right now. No joke. Julie :thumbsup:
  8. Actually, in looking up the link for "Product Listing in Columns" (http://addons.oscommerce.com/info/112) to give it to you, I found a much newer contribution "[TiM's osC Solutions] Products in Columns" (http://addons.oscommerce.com/info/7159) that implies it works happily for STS users! So instead of you spending one lick of time trying to help me solve my problem, I'll first give this contribution a shot and report back with the results. *Thank you* so much for responding!! :) Julie
  9. Can anyone who's successfully implemented the "Products Listing in Columns" contribution in a store using the STS template share the customizations you made to make the contrib work with the template? Here's one person who would be INSANELY grateful. And I do mean insane. :) Thanks in advance for your help!! Julie :)
  10. OK, I'm needing a knight/knightess in shining armor to give me a magical answer on this one. And I'v searched the forum like mad looking for something like this, so I apologize in advance if it's here, and I missed it. The question: How would I go about taking out the heading_title text *and space* from a page if I'm using the STS system? It's existence is 98% okay with me and clearly necessary in many locations, but the new product page, ugh! Here's my page, and you'll note the annoying white bar that breaks the page horizontally: http://thetreasurechestcompany.netfirms.co...0aa415162ad7bde I want that white stripe gone. Gone. Please, please help. ... thank you... from a girl with a dream (a dream that doesn't include a white stripe) P.S. I'm new to CSS and php (and osCommerce and STS!), so the more detailed the answer, the better...
×
×
  • Create New...