New MasterCard and Discover Processing Requirements

Discussion in 'Payment Processing' started by greatlogix, May 11, 2010.

  1. #1
    I am using authorize.net as payment gateway. I got following email from authorize.net

    Has anybody implemented it? What i need to change in my php code so that i can achieve required changes.

    $authnet_values				= array
    (
    	"x_login"				=> $auth_net_login_id,
    	"x_version"				=> "3.1",
    	"x_delim_char"			=> "|",
    	"x_delim_data"			=> "TRUE",
    	"x_url"					=> "FALSE",
    	"x_type"				=> "AUTH_ONLY",
    	"x_method"				=> "CC",
     	"x_tran_key"			=> $auth_net_tran_key,
     	"x_relay_response"		=> "FALSE",
    	"x_duplicate_window"	=> "3",
    	"x_allow_partial_Auth"	=> "TRUE",
    	"x_card_num"			=>"888888",
    	"x_card_code"			=> "332",
    	"x_exp_date"			=> "2010-12",
    	"x_description"			=> "Products",
    	"x_amount"				=> "50.95",
    	"x_first_name"			=> stripcslashes($b_fname),
    	"x_last_name"			=> stripcslashes($b_lname),
    	"x_company"				=> stripcslashes($b_company),
    	"x_address"				=> stripcslashes($b_add),
    	"x_city"				=> $b_city,
    	"x_state"				=> $b_state,
    	"x_zip"					=> $b_zip,
    	"x_country"				=> $b_country,
    	"x_phone"				=> $b_phone,
    	"x_email"				=> $b_email,
    	"x_ship_to_first_name"	=> stripcslashes($s_fname),
    	"x_ship_to_last_name"	=> stripcslashes($s_lname),
    	"x_ship_to_address"		=> stripcslashes($s_add),
    	"x_ship_to_city"		=> $s_city,
    	"x_ship_to_state"		=> $s_state,
    	"x_ship_to_zip"			=> $s_zip,
    	"x_ship_to_country"		=> $s_country,
    	"x_test_request"		=> $TESTING,
    	
    ); 
    PHP:
     
    greatlogix, May 11, 2010 IP
  2. jestep

    jestep Prominent Member

    Messages:
    3,659
    Likes Received:
    215
    Best Answers:
    19
    Trophy Points:
    330
    #2
    Just hold off until there is more development on this. The whole partial auth junk creates a mess for programming and the entire process of an ecommerce checkout system. I would wait until the absolute last minute to implement this, and at least 6 more months until someone makes some better scripts on how to do it.
     
    jestep, May 13, 2010 IP