Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

CAnneB2

Archived
  • Posts

    68
  • Joined

  • Last visited

Everything posted by CAnneB2

  1. Hmmm, well, seems I found the answer from a while ago. Just didn't think it was relevant to my problem. Ah well. To resolve: 1) Open "admin/includes/fedexdc.php" 2) Find "function _sendCurl() {" 3) After "curl_setopt( $ch, CURLOPT_POSTFIELDS, $this->sBuf );" - insert "curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);" (without quotes) This resolved my problem - for now.
  2. Hi all, I'm still getting this error: There was one person here who did some db changes which corrected the error. I've pm'd him/her, but no reply. Does anyone have a solution for this? I've deleted every shipping manifest from the "Tools" tab in the admin area, yet still get this error. TIA, Chris B.
  3. tilteffect, Are you still on the test server, or the production server? The label is created and saved on your site as a .png image file. (The .png file is saved in your Admin>images>fedex folder on your site.) You are able to then print the label once you have gone through the Fedex shipping process (in the Admin area of your site). To view the label at any time after it is created, you go to your "Orders" area of your site (in Admin). On orders that have been marked as "Delivered", on the right of the orders screen, you should see a few buttons. ("Fedex Label", "Track", "Cancel Shipment") If you want to view the label again to print or just view it, then click on the button "Fedex Label" for that particular order. Now, I'm not quite sure what you mean by "Fedex Label Log". If you mean being able to view a list of all your shipments in one area, then no one has written an add-on to this contribution for that. It does create a shipping manifest for all your ground orders, though. The program will continue to make new manifests which are viewable by day. But like I said, it's only for ground shipping. This should be located under the "Reports" section of the Admin area. HTH, Chris
  4. I've recently been receiving this error when shipping: It doesn't happen all the time, usually only when there is no weight associated. However, this has me stumped because I have an order where all the correct information is filled in, but I'm still unable to ship since I receive this error. Anyone know what might be happening? Thanks! Chris B.
  5. Thanks, Jackal. I'll see if I can talk to the IT guys at FedEx about what I can do. Will post if I find solution. Chris B.
  6. Thanks, Jackal for uploading the thermal label support. Really appreciated! But now, I'm wondering since my client uses the 4 x 6.75 with doc-tab at top (label code from fedex is 6), and I replace the "7" in the 1370 field in ship_fedex.php, I keep getting a 1602 error (duplicate entry ' ' in key 2) in the shipping_manifest table. Anyone have any suggestions as to why I get that error only when I switch from "7" to "6" in the 1370 field in ship_fedex.php? Thanks! Chris B.
  7. SORRY - THIS NEEDS TO BE MOVED TO AUTOMATED FEDEX LABELS SUPPORT! Is anyone else having a problem all of a sudden with broken Astra barcode images? Everything was fine this morning, then problems came around 12:30pm (est). Been using this contrib for over a year and have not had probs b4, so maybe this is fedex problem? Thanks for any help! Chris B.
  8. Hi, Just wondering if anyone might help with my dilemma above. Thanks! Chris B.
  9. Hi all, I'm using a heavily loaded version of CRELoaded. I've had the Options Type feature installed for well over a year now, everything working perfectly. Now, I need to modify the Options Type contrib to include the file uploads. I've got everything installed, the upload feature shows correctly on the product_info page, the image information passes through from the shopping cart to the admin screen with a completed order, as well as shows the image name in the database. My problem is this: the file just doesn't upload to the "uploads" image directory. The information goes through, just not the actual file itself. I'm not sure what information would help here, so if anyone has any ideas... I appreciate any help I can get on this. Chris B.
  10. Your web hosting company should have this done for you. Just check with them to make sure, though. Chris B.
  11. I fixed this problem. Since I was using a loaded version of osC, I found that you need to change the reference in the psigate_xml.php file from cc_validation.php to cc_validation1.php. Just FYI.
  12. Hi all, I've just installed and have put in the test server info. When I hit continue after putting in the test account info on the checkout_payment page of the catalog, I get the following error: Anyone have this situation before or know how to resolve? Thanks! Chris B.
  13. Never mind. I figured out for myself what I was doing. Since I'm using a loaded version of osC, I was changing the wrong categories php file. That solved everything. :blush: Chris B.
  14. Hi all, I've installed this contrib, but I guess it doesn't work exactly as I thought it would/should. When I disable the category in admin, I expected to go to my front end catalog and find that the category would not show in the "categories" box. However, this isn't what's happening. I still see the category in the "categories" box, and when I click on the category I disabled, it says "there currently are no products within this category". Is this supposed to happen? I changed my "categories" box code to the new "categories_query" used in "index.php", however this did not resolve my issue. Has anyone been able to figure if this is supposed to be happening or if I'm missing something? Thanks for the help! Chris B.
  15. The Real Time Quotes and the Fedex Shipping only share the fedexdc.php file. They are not otherwise related. The "Home Delivery" option has not been coded into the Fedex Shipping Module. If you only ship to businesses then just go through your test scenarios and print out your labels for whichever Ground and Express scenarios you need. I believe a couple of the scenarios are not coded within the shipping module, so you will not be able to print and send those. When I did my scenarios, I created the orders in admin, not in my store area. I think that is where you are confused. HTH, Chris B.
  16. You need to set up the file permissions for "shipping_manifest.php", "fedex_popup.php", "ship_fedex.php", "track_fedex.php" under your admin area. (Should be under "Administrator" > "File Access") HTH, Chris B.
  17. Hi everyone, I've been working on a new shipping module based on the Multi-Zone Multi-Table Shipping (MZMT) which will include pull down menus for the customer to choose their desired delivery date. We have been working with a coder who wrote an extensive script for the available delivery dates, however he does not have any experience with osCommerce. So instead of creating a shipping module, he just inserted a new <tr> and <td> which draws a pull down menu using html in the "checkout_shipping.php" page. His pull down menus work (they update themselves for the month the person chooses, i.e. if the person selects "February" from the "month" pull down menu, the "day" pull down menu will show only the available dates for February - it won't show day 30, day 31, day 29 if not a leap year), but when the customer clicks on the "continue" button, they are presented with an error, because he created an html radio button using a non-existent MZMT table. So since his solution doesn't work, I decided that since the MZMT shipping module works so nicely, I figured that adding 2 pull down menus after the shipping method name wouldn't be so hard. :rolleyes: Well, I've got the table rates working, no problem. I have the pull down menus showing, but the variables being called are not populating the pull down menu. I was wondering if anyone out here may be able to help with this. It would be a really nice contrib, I'm sure! (I originally had on our site the "Delivery Date for Florists" contrib installed, however my client didn't like the fact that people were selecting a delivery date of the next day, and choosing "ground" shipping.) If you are interested in helping develop this, please let me know! (I have all the files, I just need some help with figuring out which variables need to be called within the "tep_draw_pull_down_menu" function within the new "pick_date" shipping module.) Sorry for the long post -- it's been a loooong day. :P Thanks! Chris B.
  18. You need to be added to the test server first. You will get invalid account/meter id error until then. (If I remember correctly.) You should get an email from them with the subject line similar to: "Web Integrated Solutions Initial Certification Request", all the instructions are included in this email on what to do from there. Chris B.
  19. So after doing some research, (over at OSCMax forum) it seems that others are having problems with the constant redirection to login screen with other contribs, not caused by this contrib but from the Admin Access contrib. Here is the link to the forum. Check it out. They offer some assistance, but apparently no real solution. Someone out there must have a solution somewhere... When I searched, I searched for "login screen". You'll have to wade through some unrelated material. Are you using a shared SSL on your server? We have our own, I'm using CRELoaded and I don't have the redirect to login screen problem. As for the 0 bytes for the png files, I can't ask if you are able to see the label image, since you keep getting redirected to login. Chris B.
  20. Just looked it up and it does. I would be looking for some support there for that contrib. Chris B.
  21. He said he was using OSCMax. So, do you know if OSCMax uses the Ultimate SEO contrib? That contrib seems to be giving a lot of problems since the OSCId isn't in the url... Chris B.
  22. Irin, If you select "Your Packaging", you must input the dimension height, width and length. Have you done that? Chris B.
  23. Sorry about the EMAIL_TEXT_CONTENT problem, it was something I had done previously to updating the ship_fedex.php to include the Saturday Delivery. My client needed to add text to the email sent when updating to status "delivered". Chris B.
  24. Keith, I had the same thing happen as you did earlier. Scared the crap out of me, because as you said it shut down the entire site. What I'm wondering is will this clean up the textarea field in the Option Type when a customer is on the "checkout_confirmation.php" page. We are getting customers who see the html code for an apostrophe (') rather than the apostrophe itself. So when they see this they go back to correct their message. What I'd like to do is instead of using the "tep_output_string_protected" function, I'd like to use the "tep_decode_specialchars" function on the "checkout_confirmation.php" page where it calls the product attribute. Will your fix enable me to do this? Thanks! Chris B.
×
×
  • Create New...