Page 6 of 21 FirstFirst ... 4567816 ... LastLast
Results 51 to 60 of 204
  1. #51

    Default Re: Stamps.com integration - Couple small bugs need addressing

    Hi Badarac,

    We've finally received some info relating to Syntax from our dev team for your question back in Sept. Sorry for the lengthy time it took to get a response.

    Stamps.com shold recognize the default shipping status codes used by each shopping cart. So long as a ZenCart customer does not change these defaults, mail classes should be imported.

    If the default shipping status codes have been modified in any way, you will have to manually edit the mail class on orders that are pulled into the Stamps.com software.

    Let me know if you have any other questions.
    Thanks!
    Eric
    Stamps.com

  2. #52
    Join Date
    Aug 2009
    Location
    Longs, SC
    Posts
    626
    Plugin Contributions
    2

    Default Re: Stamps.com integration - Couple small bugs need addressing

    Quote Originally Posted by StampsCom View Post
    Hi Badarac,

    We've finally received some info relating to Syntax from our dev team for your question back in Sept. Sorry for the lengthy time it took to get a response.

    Stamps.com shold recognize the default shipping status codes used by each shopping cart. So long as a ZenCart customer does not change these defaults, mail classes should be imported.

    If the default shipping status codes have been modified in any way, you will have to manually edit the mail class on orders that are pulled into the Stamps.com software.

    Let me know if you have any other questions.
    Thanks!
    Eric
    Stamps.com
    Well I was hoping for something a little more specific than that. What are they testing for? The USPS delivery method name? The value of a DB variable? What values are they expecting for Zen Cart? How can I check my install to see if me settings are what is expected?

    As it stands now orders import in batch mode. For each order I must select the shipping method (which I must to each order in Zen Cart to find), adjust the weight of the package since that doesn't seem to come across either, and then print the labels.

    The order is then updated in the comments with the tracking info and an e-mail is sent from stamps.com to the customer with tracking info. Even though I have a package tracking add-on installed I cannot add a trackable link to the order so my customers can login and track their order. There is also no order shipped e-mail sent from Zen Cart to my customer.

    All in all a pretty sloppy implementation which is just moderately better than cut and paste. I don't mean to be harsh but the settings file that we have to update for the order status could be used to map the other settings which you expect to be defaults At the very least if I knew what may have been modified I could make a decision if I want to set things back to defaults or live with the batch processing the way it is.

    I appreciate your participation here but you really need to give your programmers a little whack for us.

  3. #53
    Join Date
    Aug 2009
    Location
    North Idaho, USA
    Posts
    2,008
    Plugin Contributions
    1

    Default Re: Stamps.com integration - Couple small bugs need addressing

    I don't understand why Stamps.com need to access the ShippingZZencart.php file 195 times every 2 hours.

    Still waiting on resolution to Incident:100831-002082 opened on 8/31/2010. Sounds to me like customer service/support takes a backseat to issuing code updates on a daily basis that have no changes other than the version number. OR the programmers are 3rd party contractors who are doing most of their work for someone else. That would explain why it takes days for someone to return a phone call.
    Rick
    RixStix (dot) com
    aka: ChainWeavers (dot) com

  4. #54
    Join Date
    Feb 2006
    Location
    Tampa Bay, Florida
    Posts
    10,298
    Plugin Contributions
    125

    Default Re: Stamps.com integration - Couple small bugs need addressing

    Quote Originally Posted by badarac View Post
    Well I was hoping for something a little more specific than that. What are they testing for? The USPS delivery method name? The value of a DB variable? What values are they expecting for Zen Cart? How can I check my install to see if me settings are what is expected?
    What Eric is saying here, is that if you look at ShippingZZencart.php at the function PrepareZencartOrderStatusFilter() it builds a query using the default values from Zen Cart.

    Pending = 1
    Processing = 2
    Delivered = 3
    Update = 4

    If you look in admin->Localization->Orders Status, and click each of these values, you'll see in the URL the parameter oID, which should correspond to the numbers shown above. If they're different, you will need to change ShippingZZencart.php function PrepareZencartOrderStatusFilter().
    That Software Guy. My Store: Zen Cart Support
    Available for hire - See my ad in Services
    Plugin Moderator, Documentation Curator, Chief Cook and Bottle-Washer.
    Do you benefit from Zen Cart? Then please support the project.

  5. #55

    Default Re: Stamps.com integration - Couple small bugs need addressing

    Hi RobertTimmons,

    Default behavior for ZenCart is to pull down orders that have been marked as "Processing." Once the customer processes the label in our Stamps.com software, the tracking number will be posted-back and the order status will be changed to "Delivered."

    If you have Email Notifications turned on inside the profile options, an email will be sent by Stamps.com once the label is processed.

    This should not interfere with your webstore’s ability to send an email -- if you are experiencing problems, there could be other issues causing the problem. We'll have to ask our dev team about the tracking info only showing up in the backend as this should not be the expected behavior.

    We definitely need to research this problem more as the problem could be due to customizations that have been made to the shopping cart.

    On the differences you noted with PayPal vs. CC for payment method, this should have no bearing on the information we post back.

    Let me know if you have any questions.
    Thanks!
    Eric
    Stamps.com

  6. #56

    Default Re: Stamps.com integration - Couple small bugs need addressing

    Hi Badarac,

    A "whack" will be given! I can certainly understand your frustration with this process and would like to apologize for having to deal with these issues.

    The whole implementation has been an eye-opening experience for us as Zen Cart customers such as yourself have really found a lot of areas of improvement with the Stamps.com software.

    But we're committed to getting the bugs out and making sure the integration works very well.

    Let me see if I can get more specific answers for you.

    Thanks!
    Eric
    Stamps.com

  7. #57
    Join Date
    Aug 2009
    Location
    Longs, SC
    Posts
    626
    Plugin Contributions
    2

    Default Re: Stamps.com integration - Couple small bugs need addressing

    Quote Originally Posted by swguy View Post
    What Eric is saying here, is that if you look at ShippingZZencart.php at the function PrepareZencartOrderStatusFilter() it builds a query using the default values from Zen Cart.

    Pending = 1
    Processing = 2
    Delivered = 3
    Update = 4

    If you look in admin->Localization->Orders Status, and click each of these values, you'll see in the URL the parameter oID, which should correspond to the numbers shown above. If they're different, you will need to change ShippingZZencart.php function PrepareZencartOrderStatusFilter().
    Actually that's not the settings we were discussing. Those settings are configured in the stamps settings file and I am receiving orders. The problem is that the orders do not contain the mail class selected and total weight of the shipment. These apparently rely on some values in the order which at this time are a mystery to us all.

  8. #58
    Join Date
    Sep 2009
    Posts
    48
    Plugin Contributions
    0

    Default Re: Stamps.com integration - Couple small bugs need addressing

    Quote Originally Posted by StampsCom View Post
    If you have Email Notifications turned on inside the profile options, an email will be sent by Stamps.com once the label is processed.
    I think what people are voicing here is that this is not acceptable behavior. E-mails sent to customers from ZC stores have a customized look, logo, etc. for each store and match other e-mails coming from each person's store(registrations, order confirmation and all status updates). The "item has shipped" e-mail with delivery confirmation needs to be sent through the ZC interface. I'm sure it's very easy for stamps.com to send it through the existing stamps.com system, but that is not a good, consistent, experience for the customer. The other problem with doing it that way is that there is no confirmation for the store owner that the e-mail was actually sent, nor does the owner have any control over what is said in that e-mail.

    UPDATE: My problem still exists where I cannot pull in orders any more because of receiving an error from the stamps.com code while trying to do so. The stamps.com team is working on it and I've received a couple of calls needing additional info and I appreciate that they are trying and I hope they find a solution soon.

  9. #59
    Join Date
    Apr 2010
    Posts
    133
    Plugin Contributions
    0

    Default Re: Stamps.com integration - Couple small bugs need addressing

    I too have recently started to use stamps.com. I have sent 2 orders so far and it seems to work well. I really would want these emails to be relayed out of my Zen Cart store as the post above indicates. I want the experience for the shopper to be seamless. When they start getting emails coming from all over it gets confusing to the customer as to whom they are dealing with. I want all communication to come or to be relayed through my store. Anything that can be done to improve this would be greatly appreciated.

  10. #60
    Join Date
    Apr 2010
    Posts
    40
    Plugin Contributions
    0

    Default Re: Stamps.com integration - Couple small bugs need addressing

    glad to see this thread is still going and we are all still working toward the same end goal. Today we got this error

    Stamps.com will not let me get the wholevacuums mailing infor tell me this This webstore misbehaved and was disabled. Reason: TooManyFailedJobs

    So i went ahead and downloaded the latest plugin. - will update back

 

 
Page 6 of 21 FirstFirst ... 4567816 ... LastLast

Similar Threads

  1. Integration with USPS/Stamps.com/Encidia
    By ericny in forum Built-in Shipping and Payment Modules
    Replies: 7
    Last Post: 26 Apr 2011, 06:51 PM
  2. A couple of small issues that I need help with...
    By C_R_C in forum Templates, Stylesheets, Page Layout
    Replies: 5
    Last Post: 19 Aug 2010, 09:42 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg
Zen-Cart, Internet Selling Services, Klamath Falls, OR