Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

tradez

Pioneers
  • Posts

    20
  • Joined

  • Last visited

About tradez

  • Birthday 06/09/1981

Profile Information

tradez's Achievements

  1. Figured it out!!! Back in 06 i guess i had tried to install this, and left some of the define() statements in the application_top.php
  2. Ok I am COMPLETELY lost. My featured.php is the below and i get "Fatal error: Cannot redeclare tep_set_featured_status() (previously declared in /home/vplaza/public_html/catalog/laurent/includes/functions/featured.php:16) in /home/vplaza/public_html/catalog/laurent/includes/functions/featured.php on line 18": <?php /* osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright (c) 2002 osCommerce Released under the GNU General Public License Featured Products V1.1 Expiry Functions */ //// // Sets the status of a featured product function tep_set_featured_status($featured_id, $status) { return tep_db_query("update " . TABLE_FEATURED . " set status = '" . $status . "', date_status_change = now() where featured_id = '" . $featured_id . "'"); } //// // Auto expire featured products function tep_expire_featured() { $featured_query = tep_db_query("select featured_id from " . TABLE_FEATURED . " where status = '1' and now() >= expires_date and expires_date > 0"); if (tep_db_num_rows($featured_query)) { while ($featured = tep_db_fetch_array($featured_query)) { tep_set_featured_status($featured['featured_id'], '0'); } } } ?> I simply uploaded the documents into the right places, made all of the adjustments in the manual file, etc...
  3. Hello, I run a store that ships furniture. I have always used IMS gateway contrib, but the problem is that i process the card immediately. There are legality issues, and when a customer cancels i have to incur the 2.35% 2 times to issue back to their card. I would rather store the info, but have it all verified. Then when i am ready to ship, click a process button and have it actually be processed. I would almost consider switching gateways to do this as it would help my business so much. What i have done so far is just go back to the standard CC module, which does do some verification, then when i am ready to ship i manually enter all the data to process the card. It's tedious, plus sometimes at that point i realize that like address verification is failing and i have to call the customer and such. Anyone else have this issue, or know of a resolution? Ryan homesweetfurniture.com
  4. Why is there no logic between the 2 contributions to be tied together in the logic? Meaning, the RFQ2 module for payment should only show up as an option if the RFQ1 shipping option has been selected.
  5. Also, FEDEX has size requirements on packages. The maximum "Girth" is 165. This is calculated as Length + 2(width) + 2(depth). Length is always whatever the largest is. I think this would be a simple addition. Just add Package_width, etc.. to the table, and a simple check if enabled. For my site, my ultimate goal is to provide the most information of each product as possible, and give only the right options to my customers. I have a lot of customers that choose the fedex option, then i have to contact them to inform them the package is too big, or its just a bit too heavy, etc... I'd like to have RFQ be the only option when it should be, and fedex be the only option when it can be.
  6. So is what i said above inaccurate? Is mine just not working correctly?
  7. I have all of my items tagged to ship sep. But if i have ship_sep = 1, and the combined weight of multiple < 150 lbs packages exceeds a grand total of 150 lbs, it disables. I figure that it should only disable if one particular item is over 150 lbs. (150 lbs being what i have set the max_weight to in the module config). Basically it seems like the max weight is a max weight of the total shipment, where i believe it should be the max weight for any particular item (when ship_sep is enabled). Am i understanding the point incorrectly? If so, i would definately LOVE this functionality as an option in future updates :).
  8. I have that set to like 30,000 :). When i set the max weight to like 150 say, i want to be able to get a fedex quote for like 6 149 lb packages, but if a shopping cart with an item considered "freight", the fedex option should be disabled. Right? Well now, if i set the max weight in the module config to 150, and i try to ship 3 60 lb packages, it disables.
  9. Ok, i am starting to annoy myself even, sorry for all of these posts. First, i can't say enough how much i appreciate this mod. Having this ability has caused my plans and business to ramp up dramatically. If you haven't already, the label mod is GREAT and makes my shipping so seemless now its crazy. The problem i am still having is this. I ship furniture. SO about 50% of my product is UNDER 165 lbs (fedex max), and the other have is not. I have a table shipping module installed to handle the over 150 lbs items, but i would like to get the max weight feature of this to work correctly so that only the right option will show up. Basically, if you set the max weight (from what i have seen), if your grand total exceeds the max (even with the ship_sep turned on) you will get disabled. This is not correct logic. If i ship 5 x 100 lb items, fedex can take this no problem. If i ship 1 150 lbs item, they will not take it (not without freight). Thoughts?
  10. Ok so i fixed this with something i found in this thread. I updated the DB to have a company name for everyone of "testco, inc.". Problem is that this is a patch, not a fix. Home Delivery is cheaper, and can be used for all packages meeting the guidelines on size AND under 70 lbs. If a package is OVER 70 lbs it needs to use ground no matter what. If you are shipping primarily to residences, such as I, this creates a dispondency in the quotes. If a customer is a residence, and doesn't have a company, when you do a quote on fedex.com you will get Home Delivery quotes for under 70 lb packages, and Ground quotes for over. Also, am i supposed to just by default add everyone's company to be some default crap? Is there any way to get this contribution to work this way? I am well versed in php, mysql, and oSC in general but it is very hard to reverse engineer someone else's code and logic.
  11. FYI, DIM weight is a way that they can charge you based on how much space it takes up. Typically you have like a DIM # tarriff, like a DIM 250. What they do is take the 3 dimesinos, multiply them together, and divide by # to get a weight. So a 50x50x50 box of air on a DIM 250 gets charged as a 500lb box of nuts and bolts. Hope this helped
  12. I am at a loss. I was using this contribution just fine, then i started not being able to get fedex ground quotes. Whenever i ship AN item of 69 lbs or less, or ship sep multiple items, i get a "Home Delivery" quote no problem. As soon as an item meets "Ground" specifications, over 70 lbs, i get no quotes back. Also, i turn debug on and off, and i get no messages on the screen, should this be in the checkout_shippinp.php display or in another location. My apologies if this has already been answers, i searched alot. If it has, just link me to that thread. Thanks!
  13. When i get an error, the &error in the form post gets turned into & as shown here https://www.homesweetfurniture.com/checkout...expires_year=09 which does not allow the fix to show the error message to work because that error is not being passed properly into the CGI object. Can anyone help me figure out the fix to this? thanks! Ryan www.HomeSweetFurniture.com
×
×
  • Create New...