Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

credit card info not displaying on customers orders


herot

Recommended Posts

when i highlight an order and click "edit" i no longer see the credit card information...

 

i used to see this:

 

Payment Method: Credit Card

 

Credit Card Type: XXXX

Credit Card Owner: Shay Tester

Credit Card Number: 4060XXXXXXXXXXXX

Credit Card Expires: XXXX

 

and now i see only this:

 

Payment Method: Credit Card

 

i need to be able to see the customers CC info so that i can process their orders... this was working and i have installed some contributions (SPPC/Hide Products from Customer Groups/CoolMenus/Featured Products), but i dont think any of these have changed anything related to my issue.

 

i have also just discovered that when the customer enters his/her CC info... it does not get stored in the SQL database! i dont know how to fix this OR what file/files are responsible for putting this data into the SQL database...

 

Please help!

Did you get rid of the voices in your head? Do you now miss them and the things that they said?

-David Gilmour

Link to comment
Share on other sites

You have the Credit Card capture module installed. This does not process credit cards - but stores them (unsecurely) in the database for manual processing thru a terminal at a later date. Storing CC numbers is highly risky and this module should be avoided wherever possible.

 

Use Authorize.net or Secpay etc to process the cards in real time without storing the numbers. You will need accounts with these companies but they are easy and relatively simple to set up.

Link to comment
Share on other sites

You have the Credit Card capture module installed. This does not process credit cards - but stores them (unsecurely) in the database for manual processing thru a terminal at a later date. Storing CC numbers is highly risky and this module should be avoided wherever possible.

 

Use Authorize.net or Secpay etc to process the cards in real time without storing the numbers. You will need accounts with these companies but they are easy and relatively simple to set up.

 

my problem is that it the CC#'s are NOT getting stored in the database... so apparently the "credit card capture module" is not working correctly. or a *.php file is messed up somewhere... i want to get this issue fixed before i start working on another issue... this store is only in dev phase and is not live.

Did you get rid of the voices in your head? Do you now miss them and the things that they said?

-David Gilmour

Link to comment
Share on other sites

The first place I would look would be the credit card module file to see if its been altered from the original. Have you tried comparing the credit card module from a clean install with your current module?

 

The file to compare should be includes/modules/payment/cc.php

 

Download a fresh MS2 installation and compare the two files.

My advice comes in two flavors- Pick the one that won't offend you.

 

Hard and Cynical: How to Make a Horrible osCommerce Site

 

Warm and Fuzzy: How to Make an Awesome osCommerce Site

Link to comment
Share on other sites

The first place I would look would be the credit card module file to see if its been altered from the original. Have you tried comparing the credit card module from a clean install with your current module?

 

The file to compare should be includes/modules/payment/cc.php

 

Download a fresh MS2 installation and compare the two files.

 

the stock cc.php and mine are exactly the same... any other ideas?

thx for helping by the way :)

Did you get rid of the voices in your head? Do you now miss them and the things that they said?

-David Gilmour

Link to comment
Share on other sites

PLEASE HELP!!

 

i need to be able to see my customer's credit card info... the database the CC's are not getting stored in the SQL database... i dont know why or what file/files to check...

 

my cc.php module has NOT been altered

Did you get rid of the voices in your head? Do you now miss them and the things that they said?

-David Gilmour

Link to comment
Share on other sites

PLEASE HELP!!

 

i need to be able to see my customer's credit card info... the database the CC's are not getting stored in the SQL database... i dont know why or what file/files to check...

 

my cc.php module has NOT been altered

 

I was having a similar problem - this is what i did ... http://www.oscommerce.com/forums/index.php?sho...mp;#entry900573 don't know if it will help, but it's worth a try!

 

~bobsi18~

Link to comment
Share on other sites

I think I've got it... I was missing a tiny bit of code from checkout_confirmation:

SQL

if ( (is_array($payment_modules->modules)) && (sizeof($payment_modules->modules) > 1) && (!is_object($$payment) && (!$credit_covers)) && (!$customer_shopping_points_spending) || (is_object($$payment) && ($$payment->enabled == false)) ) {

 

 

i was missing the bit in bold... oops blush.gif

~bobsi18~

ok well i tried that and its still not working... the "(!$customer_shopping_points_spending..." part is for your customer gift voucher contrib, correct??

 

should i try setting "$$payment->enabled == true)) ) {" ????

Did you get rid of the voices in your head? Do you now miss them and the things that they said?

-David Gilmour

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...