Jump to content

Cherry

Members
  • Posts

    14
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by Cherry

  1. On 12/15/2018 at 12:42 PM, digifx said:

    I am getting an error when I try to install the module:

     

    SQLSTATE[42000]: Syntax error or access violation: 1061 Duplicate key name 'contact_id'

    How to fix that?

    Sorry, please try version 1.0.9.

    On 10/21/2018 at 9:26 AM, jp_inaka said:

    Is there planning to publish the part that generates tokens using stripe.js in the quoted sentence?

    Maybe in the future. No immediate plans though, and there were quite a few changes needed to get things working.

  2. @bdacus01 According to https://stripe.com/docs/security, all you need to really do is use TLS on your origin (https), and only store the card data on Stripe's end. As Blesta only ever stores the last 4 digits when using this module, you should be safe. Our Stripe account is 6+ years old, so we didn't have any additional questionnaires to fill out when we started using this. Could you perhaps send me a copy / screenshot of the questionnaire? 

    We actually take a step further in our private implementation, and generate card tokens using stripe.js on our website, and only ever pass these to Blesta, so never transmitting card details to our server. This requires direct edits to Blesta though, which is why it is not a part of this module.

  3. On 26/09/2016 at 2:03 AM, viablethought said:

    @blazedd & @Cherry -

    I have updated to the latest release (as instructed) and I am experiencing issues. First issue I encountered was that I created an invoice for myself for $1.00 and that was sent to my personal email account. From there, I clicked on the "Pay Now" link from within the email and selected my contact information, and proceeded to enter my debit card information and clicked submit. This is what it spit back at me:

     

    I did this in order to test the gateway because I had another client email saying they weren't able to make a payment even after removing their account information and trying again.

    Also, I attempted to record payments from the administration panel and both the client and myself and said they were successful, however I checked my Stripe Dashboard and found that they were not recorded at all!! I then logged into my personal dummy account and removed whatever CC info I had there and re-entered my debit card info. I went through the process to pay for the invoice but this time it was successful. I got both the receipt email from the system & Stripe.

    I really don't understand why I am having so many issues capturing payments at this point. My clients are growing very frustrated with the process. Please help!

    Hi there, sorry for the delayed response.

    We've tried to replicate your scenario multiple times, but are finding it really difficult to see what you're seeing. We are using test Stripe credentials, and have tested every card at https://stripe.com/docs/testing, which are all returning the expected success, or error codes, with the data being saved as expected. We're honestly not entirely sure what could be causing your issues currently, but suspect that the old data, and mismatch you have now between Blesta and Stripe (after the upgrade process) is the primary cause. 

    Until we're able to replicate the issue that you're seeing, you may want to opt to switch back to the official Stripe gateway as provided by the Blesta team, sorry!

  4. This is something we did explore when developing this addon, but came to the conclusion that as Stripe sends this information along to the bank, it's really down to each individual bank if they choose to use it. From our experience, most european banks will display the company name, phone number, URL, and statement description, but this is a lot more rare to see in the US.

    It's something we'll definitely consider in a future iteration of the gateway, but have no plans currently. We're always happy to resolve and fix any bugs, but our time is pretty limited when it comes to feature requests, especially those beyond our use case, sorry! Let us know if there's anything else we can assist with, and thanks for using the gateway! :)

  5. On 08/09/2016 at 5:36 PM, Paul said:

    A customer reports that the Invoice ID, rather than the Invoice Number is passed along to Stripe. This number is then included on client's credit card statements. It's possible that this issue exists in the official Stripe gateway as well, but I thought I would mention it here in case @Cherry doesn't mind taking a peek. :blesta:

     

    @Paul Thanks for the information. It appears as if `invoiceArrayToAmounts` method within gateway_payments (which is eventually passed down to our gateway) only ever returns the raw `invoice_id` and `amount`, which is all we used. I suppose we could lookup every invoice and get the invoice number instead, but that wouldn't solve the issue from appearing in any other gateways that expose this information to the client, such as via the PayPal form (albeit a little more difficult to find).

    We'll push an update shortly to remove the invoice ID from statement descriptors for now until we've investigated a little further. Thanks! :blesta:

  6. Maybe I'm just loosing my marbles, but where does the client or admin see the void message? Usually you just click the void button, and you do not get a space to type in a message.

    You're not losing your marbles. :) It's added as a "public note" on the invoice, which can be seen under the collapsible "Notes" section via the "Edit Invoice" UI within Blesta.

  7. We have released version 1.0.2 of this gateway today, which patches a small bug that prevented users from making "credit payments", and depositing funds not applicable to any invoice. We also took the opportunity to update the Stripe PHP SDK version, which patches a few issues. Full changelog: https://github.com/nodecraft/stripe_plus_gateway/blob/master/CHANGELOG.md

     

    Download the latest version at https://github.com/nodecraft/stripe_plus_gateway/releases

  8. Blesta: Stripe (plus) Gateway
    Forked version of the original Stripe gateway which includes updated offsite storage and ACH payments.

     

    Some of the feature/bug requests this updated gateway resolves are listed below:

    Installation
    Download the latest release version from https://github.com/nodecraft/stripe_plus_gateway/releases and then simply upload the stripe_plus_gateway folder to ~/components/gateways/merchant directory on your Blesta installation.
     

    Feature changes from Original Gateway
    This gateway has been rewritten from the original version which was distributed with Blesta. The major changes are as follows:

    • Only creates one Stripe Customer per Client Contact, rather than one Stripe Customer per Credit Card
    • Only supports offsite card storage, onsite storage is removed
    • Supports ACH payments*
    • Updated Stripe API PHP SDK to version 3.14.2
    • Utilizes Stripe API Version 2016-06-15
    • Adds API key environment selection (test vs live)
    • Updated Currency list to Stripe Documentation
    • Does not utilize Blesta's $client_reference_id lookup to Stripe customer ID. This can cause multiple customer accounts if the user deletes all payment methods. Uses added MySQL table stripe_plus_meta

    Pros:

    • Prevents your Stripe account from having "dead" data by attaching one customer per payment source. This enhances your ability to fight fraud.
    • Added security by preventing payment source information from being stored locally

    Cons:

    • *ACH Payments by Stripe require "verification" before payments are accepted. Blesta does not provide any methods for this process to take place. You will need to manually verify the bank account with your customer until this is improved or a plugin created.

    Roadmap:

    • Add ACH verification if Blesta implements methods on Gateway

    Download: https://github.com/nodecraft/stripe_plus_gateway

    Issues/feature requests: https://github.com/nodecraft/stripe_plus_gateway/issues
     

  9. We've been working on a fork of the original Stripe module shipped with Blesta, as can be seen here: https://github.com/nodecraft/stripe_plus_gateway. Our primary goals are to support new Stripe features, and better complement Stripe's recommendations to its customers.

     

    One of the primary new features that Stripe now supports is ACH payments. We've already implemented ACH payments into our forked module, however unfortunately, Stripe's ACH verification process requires additional steps not currently supported by Blesta natively.

     

    When adding an ACH account to a Stripe account, Stripe makes two micro-deposits by default, which the customer is then required to enter after they've cleared. This is in order to verify their bank account details. Stripe provides the functionality via their API to then verify and match those amounts automatically for customers and without a plugin, Blesta would be unable to provide this verification process for it's users. https://stripe.com/docs/ach#manually-collecting-and-verifying-bank-accounts

     

    This can be worked around of course by contacting the customer, and then having an agent manually verify the micro-deposits via Stripe's UI, but having this available via Blesta would be much more ideal, and allow customers to add ACH accounts via Stripe, without any need of talking to a representative of the company.

     

    You can read more about ACH via their docs: https://stripe.com/docs/ach

     

    If any further information is required, don't hesitate to let us know and we'll be happy to assist in any way that we can.

×
×
  • Create New...