Page 2 of 3 FirstFirst 123 LastLast
Results 11 to 20 of 244

Hybrid View

  1. #1
    Join Date
    Jan 2004
    Location
    N of San Antonio TX
    Posts
    9,691
    Plugin Contributions
    11

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

    The _docs folder contains information and advertising. The css files in the folder or used to present the html code in the _docs folder.
    It will not break anything if you upload the _docs folder, but I would not. Things such as LICENSE and README might be renamed to something like ceon_cc_LICENSE and ceon_cc_README in order to not overwrite an existing file and make the information easier to find later.
    A little help with colors.
    myZenCartHost.com - Zen Cart Certified, PCI Compatible Hosting by JEANDRET
    Free SSL & Domain with semi-annual and longer hosting. Updating 1.5.2 and Up.

  2. #2
    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 soxophoneplayer View Post
    In the download, 2.2.2, there are three sub folders within the docs folder: css, images, and javascript.
    Those are part of the documentation for the software!

    You only need to upload the files in the "files" folder.

    Things such as LICENSE and README might be renamed to something like ceon_cc_LICENSE and ceon_cc_README in order to not overwrite an existing file and make the information easier to find later.
    There's no need to upload anything except the contents of the files folder, all the other files in the distribution are for informational purposes or the initial setup only.

    Hope that helps!

    All the best..

    Conor
    ceon

  3. #3
    Join Date
    Jul 2010
    Posts
    1
    Plugin Contributions
    0

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

    I using zen cart 1.3.9.c
    my website for the the first month manage to accept manual credit card, however afer installing FAST AND EASY CHECKOUT from numinix. the manual credit card module does not work anymore.

    The order was accepted by the zencart as it shown in the order module however show this page https://www.cheekylittlemonkeys.com....eckout_process
    The website cannot display the page
    HTTP 500
    Most likely causes:
    •The website is under maintenance.
    •The website has a programming error.

    What you can try:
    Refresh the page.

    Go back to the previous page.

    More information

    we already remove the fact and esay check out from numix addon however the website still showing the same page.

    can you please help. if possible we still want to use the numinix addon

  4. #4
    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 CheekyLittleMonkey View Post
    I using zen cart 1.3.9.c
    my website for the the first month manage to accept manual credit card, however afer installing FAST AND EASY CHECKOUT from numinix. the manual credit card module does not work anymore.
    I'm afraid that in my experience the FEC module isn't the best written module and can cause all sorts of problems (mostly to do with the session in my own experience).

    I'm afraid that we don't provide free support for getting our software working with other peoples' modules when the other modules are the cause of a problem. Maybe someone else can help you if you post your problem on the FEC module's thread.

    All the best..

    Conor
    ceon

  5. #5
    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

  6. #6
    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

  7. #7
    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.

  8. #8
    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

  9. #9
    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

  10. #10
    Join Date
    Mar 2008
    Posts
    31
    Plugin Contributions
    0

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

    Hi,

    I have trouble in installing the Ceon Manual Card. Do I need to copy all files to the directory? I am using 1.39g version.

 

 
Page 2 of 3 FirstFirst 123 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

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