Page 12 of 25 FirstFirst ... 2101112131422 ... LastLast
Results 111 to 120 of 244
  1. #111
    Join Date
    Mar 2010
    Posts
    72
    Plugin Contributions
    0

    Default Suggested enhancement

    Hi, Conor,

    Ceon Manual Card currently records with the order information the first and last 4 digits of the credit/debit card plus its expiry date.

    After you have charged the card, you normally delete the email with the middle digits of the card number. You have a hard copy of the card details on the merchant copy of the credit card slip which you would deal with in the same way as for customer present transactions.

    So there's actually no reason to retain any card information against the order.

    I was wondering how easy it would be, as an additional security measure, to create a utility which, when run, went through the database removing all card information from completed orders.

    Regards

    Nick

  2. #112
    Join Date
    Aug 2004
    Location
    Belfast, Northern Ireland
    Posts
    2,480
    Plugin Contributions
    14

    Default Re: Suggested enhancement

    Hi Nick,

    Quote Originally Posted by nickgreaves View Post
    So there's actually no reason to retain any card information against the order.
    That's how you use the software, not how most other people use it.

    Most people don't have any other copy, they use online terminals, copying and pasting the data in.


    Quote Originally Posted by nickgreaves View Post
    I was wondering how easy it would be, as an additional security measure, to create a utility which, when run, went through the database removing all card information from completed orders.
    It will provide no extra security on a practical level.

    A lot of stores like to have the last 4 digits on the order page so they can match orders up with things if they do print the order out. Not something we've ever needed either, but at Ceon we right software that suits everyone as much as possible, not just individual businesses.

    If you do want to purge the database of the card information, simply "Empty" the Ceon Manual Card database table. (SQL: TRUNCATE ceon_manual_card). Obviously all data will be lost forever if you don't have a backup.

    All the best..

    Conor
    ceon

  3. #113
    Join Date
    Mar 2010
    Posts
    72
    Plugin Contributions
    0

    Default Re: Ceon Manual Card Payment Module v2.0.0!

    I wasn't suggesting that this deletion should be compulsory, or even the default, simply that it might be a useful option for those who wished to use it.

  4. #114
    Join Date
    Mar 2010
    Posts
    72
    Plugin Contributions
    0

    Default Re: Suggested enhancement

    Quote Originally Posted by conor View Post
    If you do want to purge the database of the card information, simply "Empty" the Ceon Manual Card database table. (SQL: TRUNCATE ceon_manual_card). Obviously all data will be lost forever if you don't have a backup.
    I did this and verified that the table was empty. However, when I view orders the card information is still shown.

    Regards

    Nick

  5. #115
    Join Date
    Aug 2004
    Location
    Belfast, Northern Ireland
    Posts
    2,480
    Plugin Contributions
    14

    Default Re: Suggested enhancement

    Hi,

    Quote Originally Posted by nickgreaves View Post
    I wasn't suggesting that this deletion should be compulsory, or even the default, simply that it might be a useful option for those who wished to use it.
    I understand. Unfortunately we can't afford to add any new features to the software at this time. I'll maybe just add a FAQ.

    Quote Originally Posted by nickgreaves View Post
    I did this and verified that the table was empty. However, when I view orders the card information is still shown.
    Of course, sorry, that will only clear the start date and issue number. To clear the remaining data you must empty the CC fields of your orders table.

    Code:
    UPDATE orders SET cc_type = NULL, cc_owner = NULL, cc_number = NULL, cc_expires = NULL;
    Honestly I don't see the point of what you are doing really as no-one can use the first and last four digits of a card but each unto his own! :)

    All the best..

    Conor
    ceon

  6. #116
    Join Date
    Feb 2008
    Posts
    71
    Plugin Contributions
    0

    Default Re: Ceon Manual Card Payment Module v2.0.0!

    Hi Conor,

    I had previously installed CEON 2.0 for my client. It worked fine, except my client didn't want to collect the CCV code. I saw that 2.2 had the option to turn it off, so I went about upgrading it.

    Unfortunately, when I uploaded the files (3 different attempts now), it causes all screens to go completely blank. The cache file which would normally show errors is empty. The other "public" debugger is also not displaying any information. Client is running 1.3.9.f. His site is at http://shopinhisimage.com.

    I will leave the site down for a few hours if you or anybody else has a minute to look at this, I would greatly appreciate it.

    Thank you!

    Christopher

  7. #117
    Join Date
    Feb 2008
    Posts
    71
    Plugin Contributions
    0

    Default Re: Ceon Manual Card Payment Module v2.0.0!

    I should also add, I can access the client's admin with no problem, as well as configure the CEON mod, its just the main site which cannot be accessed.

    Thanks,

    Christopher

  8. #118
    Join Date
    Aug 2004
    Location
    Belfast, Northern Ireland
    Posts
    2,480
    Plugin Contributions
    14

    Default Re: Ceon Manual Card Payment Module v2.0.0!

    Hi,

    Quote Originally Posted by DCDC View Post
    Unfortunately, when I uploaded the files (3 different attempts now), it causes all screens to go completely blank.
    First check that you've uploaded the files properly by attempting the upload with different FTP software (you'd be surprised how many people have problems with their FTP software even after multiple upload attempts).

    Also check if the path to your admin folder is set correctly for the DIR_FS_ADMIN define in

    admin/includes/configure.php

    (Obviously if you've changed the name of the admin folder to something other than "admin" the path to that file and to the folder will both be different)!

    If you're still having trouble send me FTP and admin details at this address and I'll take a quick look.

    All the best..

    Conor
    ceon

  9. #119
    Join Date
    Feb 2008
    Posts
    71
    Plugin Contributions
    0

    Default Re: Ceon Manual Card Payment Module v2.0.0!

    Ok, Conor. I will review this.

    I just checked the cache again after reloading this morning and am given the following error which wasn't there yesterday. Perhaps this is a clue:

    [05-Oct-2010 12:13:43] PHP Warning: require_once(/home/wilson/public_html/zencart/includes/functions/extra_functions/ceon_file_system_functions.php) [<a href='function.require-once'>function.require-once</a>]: failed to open stream: No such file or directory in /home/wilson/public_html/zencart/admin/includes/functions/extra_functions/ceon_file_system_functions.php on line 17
    [05-Oct-2010 12:13:43] PHP Fatal error: require_once() [<a href='function.require'>function.require</a>]: Failed opening required '/home/wilson/public_html/zencart/includes/functions/extra_functions/ceon_file_system_functions.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/wilson/public_html/zencart/admin/includes/functions/extra_functions/ceon_file_system_functions.php on line 17

    Thanks,

    Christopher

  10. #120
    Join Date
    Aug 2004
    Location
    Belfast, Northern Ireland
    Posts
    2,480
    Plugin Contributions
    14

    Default Re: Ceon Manual Card Payment Module v2.0.0!

    Hi,

    Quote Originally Posted by DCDC View Post
    Ok, Conor. I will review this.
    You've forgotten to upload

    includes/functions/extra_functions/ceon_file_system_functions.php

    There are two of these files, one for the admin and one for the store, be careful to upload both to the right places and all will be fine.

    All the best..

    Conor
    ceon

 

 
Page 12 of 25 FirstFirst ... 2101112131422 ... LastLast

Similar Threads

  1. Ceon Manual Card Payment Module v4
    By conor in forum Addon Payment Modules
    Replies: 87
    Last Post: 7 Apr 2021, 04:44 PM
  2. Ceon Manual Card Payment Module v3.0.0
    By conor in forum Addon Payment Modules
    Replies: 136
    Last Post: 15 Nov 2012, 06:36 PM
  3. Ceon manual card module - cc error leads to page not found
    By jenniesummitreks in forum Addon Payment Modules
    Replies: 2
    Last Post: 16 Sep 2009, 09:28 PM
  4. Ceon Manual/Offline Card Payment Module v1.0.0!
    By conor in forum Addon Payment Modules
    Replies: 117
    Last Post: 27 Feb 2009, 10:04 PM
  5. Re: Ceon Manual/Offline Card Payment Module v1.0.0!
    By wizarddave in forum Addon Payment Modules
    Replies: 0
    Last Post: 2 Jan 2008, 05:13 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