Results 1 to 3 of 3
  1. #1
    Join Date
    Jun 2004
    Posts
    130
    Plugin Contributions
    0

    Default Transfirst Epay Mod problem

    When I install this in the admin, I get the following error:

    1064 You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ''`id` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT', '`customer_id`
    in:
    [CREATE TABLE zen_transfirst_epay ('`id` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT', '`customer_id` INT(11) DEFAULT \'0\' NOT NULL', '`order_id` INT(11) DEFAULT \'0\' NOT NULL', '`trans_code` INT(2) DEFAULT \'0\' NOT NULL', '`seq_num` INT(8) DEFAULT \'0\' NOT NULL', '`trans_status` VARCHAR(2) NOT NULL', '`ref_num` VARCHAR(14) NOT NULL', '`auth_resp_code` VARCHAR(6) NOT NULL', '`auth_source_code` INT(1) DEFAULT \'0\' NOT NULL', '`auth_char_ind` INT(1) DEFAULT \'0\' NOT NULL', '`trans_id` VARCHAR(15) NOT NULL', '`valid_code` VARCHAR(4) NOT NULL', '`avs_resp_code` VARCHAR(1) NOT NULL', '`sent` LONGTEXT NOT NULL', '`received` LONGTEXT NOT NULL', '`time` VARCHAR(50) NOT NULL', '`session_id` VARCHAR(255) NOT NULL', 'UNIQUE (`id`)') TYPE = myisam]
    If you were entering information, press the BACK button in your browser and re-check the information you had entered to be sure you left no blank fields.

  2. #2
    Join Date
    Aug 2004
    Location
    Austin
    Posts
    56
    Plugin Contributions
    0

    Default Re: Transfirst Epay Mod problem

    Same problem here...

    I resorted to creating the table manually:

    CREATE TABLE zen_transfirst_epay (
    id INT(11) UNSIGNED NOT NULL AUTO_INCREMENT
    , customer_id INT(11) DEFAULT 0 NOT NULL
    , order_id INT(11) DEFAULT 0 NOT NULL
    , trans_code INT(2) DEFAULT 0 NOT NULL
    , seq_num INT(8) DEFAULT 0 NOT NULL
    , trans_status VARCHAR(2) NOT NULL
    , ref_num VARCHAR(14) NOT NULL
    , auth_resp_code VARCHAR(6) NOT NULL
    , auth_source_code INT(1) DEFAULT 0 NOT NULL
    , auth_char_ind INT(1) DEFAULT 0 NOT NULL
    , trans_id VARCHAR(15) NOT NULL
    , valid_code VARCHAR(4) NOT NULL
    , avs_resp_code VARCHAR(1) NOT NULL
    , sent LONGTEXT NOT NULL
    , received LONGTEXT NOT NULL
    , time VARCHAR(50) NOT NULL
    , session_id VARCHAR(255) NOT NULL
    , UNIQUE (id)) TYPE = myisam;

  3. #3
    Join Date
    Aug 2004
    Location
    Austin
    Posts
    56
    Plugin Contributions
    0

    red flag Re: Transfirst Epay Mod problem

    After installing this module and looking at the code I would not use it. In fact, I'd recommend against it. The credit card data is stored in the session and then published in the page source on the order confirmation screen. The CC isn't processed until then.

    TransFirst has their own in-house developed module for ZC but you'll have to contact them to get it.


    HTH,
    Jeremy

 

 

Similar Threads

  1. v150 Does TransFirst Epay Module work with ZC 1.5?
    By gwynwyffar in forum Addon Payment Modules
    Replies: 0
    Last Post: 25 Jul 2012, 03:20 PM
  2. Who uses Transaction Central (Transfirst) Merchant Mod? URGENT
    By beyre in forum Addon Payment Modules
    Replies: 0
    Last Post: 3 May 2009, 05:49 PM
  3. TransFirst ePay Module 1.2 Problems
    By DeV0id in forum Addon Payment Modules
    Replies: 0
    Last Post: 25 Apr 2007, 04:05 AM
  4. Transfirst epay
    By wapnoj in forum Built-in Shipping and Payment Modules
    Replies: 0
    Last Post: 26 Oct 2006, 07:35 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