How to encrypt information like customer credit card information?

Hi I would like to know what is is the safe way to add a credit card information form for my customers, without compromising their information? ON Adobe Muse

Hi Veronica,
If you choose to host the site on Business Catalyst, you can take advantage of the BC's Ecommerce feature to achieve what you are looking for, For more info, Please refer to the following link Business Catalyst Help | E-commerce
Regards,
Aish

Similar Messages

  • HT2534 I was previously using itune gift cards to purchase music. Now, it requering to enter billing information and i don't want to have a credit card on the sytem. How can I bypass this billing/credit card requirement?

    I was previously using itune gift cards to purchase music. Now, it requering to enter billing information and i don't want to have a credit card on the sytem. How can I bypass this billing/credit card requirement?

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • HT2534 how can i take off my credit card information off my itunes account

    How do i take off my credit card information, cause my credit card was stolen...

    The message is telling you to add a valid payment method. Yo can purchase and redeem an iTunes gift card if yo want. It appears you have a negative balance and owe money.

  • How to install free game without credit card information

    how to install free game without credit card information

    You can create an iTune and App Store account without credit card
    1. Sign out of current Apple ID if you are sign-in to one (important)
    2. Go to App Store and select a free app
    3. Tap INSTALL APP
    4. Create New Apple ID
    5. Confirm Your Country
    6. Agree with Terms and Conditions
    7. Fill in your Apple ID and Password (you must create a new Apple ID; don't use your old Apple ID)
    8. Create and answer your secret question
    9. Select NONE for Payment Method
    10. Fill in Billing Address
    11. Submit application for new Apple ID
    12. Wait for verification email
    13. When email arrive, verify your account
    14. Start downloading your free apps

  • Customer Credit Card Informaiton.

    Hi All,
    How differentiate the credit cards are assigned at customer level and site level in iby_creditcard table.
    I am actually using the follwoing query to get the customer credit card information.
    SELECT o628511.card_owner_id
    , o628511.instrument_type
    , o628511.purchasecard_flag
    , o628511.active_flag
    , o628511.single_use_flag
    , o628511.information_only_flag
    , o628511.expirydate
    , o628511.masked_cc_number
    , SUBSTR (o628511.masked_cc_number, -4) last4digists_cc_number
    , o628511.card_issuer_code
    , order_of_preference "Credit Card Priority"
    , o364701.location_id
    , o364693.cust_account_id
    , o528349.party_site_use_id
    , o364687.start_date "Receipt Method Start Date"
    , o364687.end_date "Receipt Method End Date"
    , o364687.NAME "Receipt Method Name"
    , o436603.receipt_method_id
    , o436603.primary_flag "Receipt Primary Flag"
    , o628343.start_date "Credit Card Start Date"
    , o628343.end_date "Credit Card End Date"
    FROM ar.ar_receipt_methods o364687
    , ar.hz_cust_accounts o364693
    , ar.hz_locations o364699
    , ar.hz_parties o364700
    , ar.hz_party_sites o364701
    , ar.ra_cust_receipt_methods o436603
    , ar.hz_party_site_uses o528349
    , ar.hz_cust_acct_sites_all site
    , ar.hz_cust_site_uses_all aaa
    , iby.iby_pmt_instr_uses_all o628343
    , iby.iby_creditcard o628511
    WHERE o364699.location_id = o364701.location_id
    AND o364700.party_id = o364693.party_id
    AND o364700.party_id = o364701.party_id
    AND o364693.account_number = '111111'
    AND o364693.cust_account_id = o436603.customer_id(+)
    AND aaa.site_use_id(+) = o436603.site_use_id
    AND site.party_site_id = o364701.party_site_id
    AND aaa.cust_acct_site_id = site.cust_acct_site_id
    AND o364687.receipt_method_id(+) = o436603.receipt_method_id
    AND o364701.party_site_id = o528349.party_site_id
    AND o628511.instrid = o628343.instrument_id
    AND o628343.instrument_type = 'CREDITCARD'
    AND o528349.party_site_use_id = o628511.addressid
    Thanks in Advance
    ram

    I have solved the issue using bellow query.
    SELECT DISTINCT ibyc.card_owner_id
    , hzcsu.site_use_id
    , hzcsu.site_use_code
    , ibyc.instrument_type
    , ibyc.purchasecard_flag
    , ibyc.active_flag
    , ibyc.single_use_flag
    , ibyc.information_only_flag
    , ibyc.expirydate
    , ibyc.masked_cc_number
    , SUBSTR (ibyc.masked_cc_number, -4) last4digists_cc_number
    , ibyc.card_issuer_code
    , order_of_preference "Credit Card Priority"
    , hzps.location_id
    , hzca.cust_account_id
    , hzpsu.party_site_use_id
    , receipt.start_date "Receipt Method Start Date"
    , receipt.end_date "Receipt Method End Date"
    , receipt.NAME "Receipt Method Name"
    , receipt.receipt_method_id
    , receipt.primary_flag "Receipt Primary Flag"
    , ibypiu.start_date "Credit Card Start Date"
    , ibypiu.end_date "Credit Card End Date"
    , ibyep.ext_payer_id
    , DECODE (ibyep.acct_site_use_id, NULL, 'CUSTOMER_LEVEL', 'SITE_LEVEL') card_level
    FROM ar.hz_cust_accounts hzca
    , ar.hz_locations hzl
    , ar.hz_parties hzp
    , ar.hz_party_sites hzps
    , ar.hz_party_site_uses hzpsu
    , ar.hz_cust_acct_sites_all hzcas
    , ar.hz_cust_site_uses_all hzcsu
    , (SELECT aaa.cust_account_id
    , aaa.site_use_id
    , arrm.start_date
    , arrm.end_date
    , arrm.NAME
    , arcrm.receipt_method_id
    , arcrm.primary_flag
    FROM ar.ra_cust_receipt_methods arcrm
    , ar.ar_receipt_methods arrm
    , (SELECT hzca1.cust_account_id
    , hzcsu1.site_use_id
    FROM hz_cust_accounts hzca1
    , hz_cust_acct_sites_all hzcas1
    , hz_cust_site_uses_all hzcsu1
    WHERE hzca1.cust_account_id = hzcas1.cust_account_id
    AND hzcas1.cust_acct_site_id = hzcsu1.cust_acct_site_id) aaa
    WHERE arrm.receipt_method_id(+) = arcrm.receipt_method_id
    AND aaa.cust_account_id = arcrm.customer_id(+)
    AND aaa.site_use_id = arcrm.site_use_id(+)) receipt
    , iby.iby_pmt_instr_uses_all ibypiu
    , iby.iby_creditcard ibyc
    , iby_external_payers_all ibyep
    WHERE hzl.location_id = hzps.location_id
    AND hzp.party_id = hzca.party_id
    AND hzp.party_id = hzps.party_id
    --AND    hzca.account_number = '12345'
    AND SYSDATE <= NVL (ibyc.inactive_date, SYSDATE)
    AND hzcas.party_site_id = hzps.party_site_id
    AND hzcsu.cust_acct_site_id = hzcas.cust_acct_site_id
    AND hzps.party_site_id = hzpsu.party_site_id
    AND ibyc.instrid = ibypiu.instrument_id
    AND ibypiu.instrument_type = 'CREDITCARD'
    AND hzcsu.site_use_code = 'BILL_TO'
    AND hzpsu.party_site_use_id = ibyc.addressid
    AND ibyep.cust_account_id = hzca.cust_account_id
    AND ibyep.ext_payer_id = ibypiu.ext_pmt_party_id
    AND hzca.cust_account_id = receipt.cust_account_id
    AND hzcsu.site_use_id = receipt.site_use_id
    Thanks
    Ram
    Edited by: ram on Aug 31, 2009 1:37 PM

  • HT1918 how can i completely remove a credit card from my account?

    how can i completely remove a credit card from my apple id?

    Hi Craig,
    Thanks for visiting Apple Support Communities.
    Using the steps from the article above (iTunes Store: Changing your payment information), you should be able to select "None" as your payment method. This will remove your credit card from your iTunes Store account (Apple ID).
    Changing your payment information using an iOS device
    Tap Settings on the Home screen.
    Tap iTunes & App Stores.
    Tap your Apple ID. (If you aren't signed in, enter your Apple ID and password and tap Sign In.)
    Tap View Apple ID.
    Enter your Apple ID password.
    In the Edit section, tap Payment Information.
    Update the information that you want to change.
    Note: You can find the payment methods that the iTunes Store accepts in the Payment Type section. If you don't want a payment method on your account, select None in the Payment Type section.
    Best Regards,
    Jeremy

  • How can I take out my credit card number from purchasing anymore app

    How can I take out my credit card number from the App Store to prevent purchasing anymore apps

    How to Get Apps From the App Store Without a Credit Card
    http://ipadhelp.com/ipad-help/how-to-get-free-apps-from-the-app-store-without-a- credit-card/
    Creating an iTunes Store, App Store, iBookstore, and Mac App Store account without a credit card
    http://support.apple.com/kb/ht2534
    Why can’t I select None when I edit my payment information?
    http://support.apple.com/kb/ts5366
    If None is not available - On your computer launch iTunes and click “iTunes Store” in the left navigation pane. Click the “down arrow” next to your name at the top right side of the page and click “Account.” Enter your username and password and click “View Account” to log into your account information. Next to your Payment Type, click “Edit.” Select the “None” button and click “Done.” Confirm that your card has been removed by returning to the Apple account information screen. Under Payment Type, it should say that there is no credit card on file.
    iTunes Store: Changing your payment information
    http://support.apple.com/kb/HT1918
    iTunes Store Accepted Forms of Payment
    http://support.apple.com/kb/HT5552
     Cheers, Tom

  • How did Adobe auto update my credit card info??

    Hi, I have an issue with Adobe currently. This has happened twice now during my one-year CC subscription. I had to cancel my credit card due to fraudulent charges not associated with Adobe and as a result wasn't able to update my credit card info or make my payment because I hadn't received my new credit card yet. I received my new card on Monday and TODAY, I received an email saying this:
    Per your request, we have reactivated your subscription to Creative Cloud. It's a pleasure to welcome you back! Sign in to access all your membership features.
    I logged in to my Adobe account to see that I had been successfully charged my monthly amount and even verified that I had been through my bank account. The disturbing issue is that I NEVER logged in and updated my credit card info with Adobe to make this payment, I never authorized this payment, nor did I request my account to be reactivated.
    HOW DID ADOBE GET MY NEW CREDIT CARD INFORMATION??
    This happened previously as well and I just shrugged it off as me forgetting that maybe I had updated my card info, but this time, I know for sure that I didn't. So again, how was my new credit card information obtained by Adobe? This makes me want to forego using Adobe products ever again if no one can give me a clear answer to this.

    This is an open forum with a mix of program users and Adobe staff, not Adobe support... you need Adobe support
    Adobe contact information - http://helpx.adobe.com/contact.html may help

  • HT4990 In Itunes, how do I delete my old credit card and submit a new credit card for Itune purchase ?

    In Itunes , how do I delete my old credit card and submit a new one in order to buy music?

    Check this out, you can change the payment information this way: http://support.apple.com/kb/ht1918

  • How do i take out my credit card info from itunes store? thanks

    how do i take out my credit card info from itunes store? thanks

    Follow the instructions here: http://support.apple.com/kb/HT1918

  • How can i take off a credit card from my apple id

    How can i take off my credit card from my apple id

    go to iTunes
    open iTunes Store
    scroll down to settings>Account
    enter the password
    edit the credit card no (delete it)
    click finish

  • How can I use an American credit card to pay for a membership from outside the US?

    How can I use an American credit card to pay for a membership from outside the US? My payment page is set up for Japanese credit cards. I can't change to the US store, because the "Select a Store" page just jumps to the "Products" page.
    Has anyone else had this problem? Any help would be much appreciated!

    Hi Batt5721,
    Welcome to Adobe Forums.
    The address and the country on the Credit Card should match the billing address then only payment would be possible.
    Thanks
    Garima

  • How do I add a new credit card to my account

    How do I add a new credit card to my account?

    If you are doing it on your iPad then try tapping on your id in Settings > iTunes & App Stores and select 'View Apple ID' on the popup and log into your account, and on your account's page there should be a payments link.
    On your computer's iTunes you should be able to do it by going into the Store > View Account menu option and logging into your account, and on your account's details page there should also be a payment link.

  • When you make a Apple ID how can you choose none for credit card type

    When you make a Apple ID how can you choose none for credit card type

    You need to follow the instructions on this page when creating a new account : http://support.apple.com/kb/HT2534 - otherwise you won't get the 'none' option and you will need to enter credit card details before you will be able to use the account in the store

  • HT2731 How do I find out what credit card is stored in Apple ID account for purchases on I tunes, etc

    How do I find out what credit card is stored in my apple account to make purchases?

    You can log into your account on your computer's iTunes via the Store > View My Apple Id menu option at the top of the iTunes screen (if you are on iTunes 11 on a PC then Alt-S should get the Store menu to appear) - you can then log into your account and view your payment details

Maybe you are looking for