PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Securing Credit Card Data through CryptoHeaven?

  1. Minnie
    Member

    There's a number of posts talking about getting secure data like credit card info. Not knowing PHP programming, I've been seeking a way to get data delivered safely end to end to the business computer.

    One way that should seemingly work I discovered is the secure email system from Cryptoheaven, which allows you to add some html to the post method of a form to have it sent out securely.

    So, my question is would this work and if so how would the code snippet they provide be applied?

    Using CryptoHeaven Web Forms

    Your existing form has a <FORM> tag that looks similar to this:

    <FORM METHOD=POST ACTION="http://www.yourserver.com/form.htm">

    Replace this entire tag with this one:

    <FORM METHOD=POST ACTION="https://www.cryptoheaven.com/ch/web-form.jsp" ENCTYPE="multipart/form-data">

    Add this line between the <FORM> and </FORM> tags. Replace the 2500000 number with your CryptoHeaven numeric ID.

    <INPUT TYPE="hidden" name="CH_uId" value="2500000">

    Optional parameters:

    <input type="hidden" name="CH_successPage" value="http://www.yourserver.com/success">
    <input type="hidden" name="CH_errorPage" value="http://www.yourserver.com/error">
    
    <input type="hidden" name="CH_fromName" value="CryptoHeaven Secure Form">
    <input type="hidden" name="CH_fromEmail" value="forms@cryptoheaven.com">
    <input type="hidden" name="CH_subject" value="CryptoHeaven Secure Form">

    http://cryptoheaven.com/secure-web-forms/secure-SSL-web-forms.htm

    Thanks, as always.

    Posted 11 years ago on Wednesday July 18, 2012 | Permalink
  2. Minnie
    Member

    Or a similar one using a competing product Hushmail...

    Where you insert...

    <form method="post" enctype="multipart/form-data" action="https://forms.hush.com/(email user)">
    Posted 11 years ago on Wednesday July 18, 2012 | Permalink
  3. I have no first hand experience integrating these services. However, you can use the gform_form_tag to completely change the form tag and send the data wherever you want.

    http://www.gravityhelp.com/documentation/page/Gform_form_tag

    Posted 11 years ago on Friday July 20, 2012 | Permalink
  4. Minnie
    Member

    I got this working with Hushmail, at least to send it, with the following added to the theme-child's 'functions.php' file:

    <form method="post" enctype="multipart/form-data"
    target="gform_ajax_frame_1" id="gform_1"
    action="https://forms.hush.com/yourform">

    But, the button click never got lost in a loop and the result of the form never landed on the success page.

    The form doesn't show field names, but only labels like:

    input_96_2:

    input_96_3: Joe

    input_96_6: Jones

    Can these be customized and CSS added to style the look of the received email?

    Also, there is no email notification to the customer that the order will be processed. Is there a way for that to get out?

    Thanks.

    Posted 11 years ago on Monday July 30, 2012 | Permalink
  5. David Peralty

    I am sorry, I don't understand. It looks like you were originally talking about securing data, and now you are discussing hushmail. Are the two connected? Did you change the form submission based on the hook that was mentioned? Can you give me more information about what you are experiencing and what you expect to have happen?

    Posted 11 years ago on Monday July 30, 2012 | Permalink