thecodingmonkey 0 Posted April 5, 2004 I am having serious problems with integrating When i use the cotribution provided all i get is a loop that keeps takes me to the insert credit card information and a url that say credit card error %21 basically it can't connect to verisign to even send information this is where it screws up function before_process() { global $HTTP_POST_VARS,$order; include(DIR_WS_FUNCTIONS . 'php_pfpro.php'); pfpro_init(); $transaction = array(USER => trim(MODULE_PAYMENT_PAYFLOWPRO_USER), VENDOR => trim(MODULE_PAYMENT_PAYFLOWPRO_VENDOR), PARTNER => trim(MODULE_PAYMENT_PAYFLOWPRO_PARTNER), PWD => trim(MODULE_PAYMENT_PAYFLOWPRO_PWD), TRXTYPE => trim(MODULE_PAYMENT_PAYFLOWPRO_TRXTYPE), TENDER => trim(MODULE_PAYMENT_PAYFLOWPRO_TENDER), AMT => $HTTP_POST_VARS['AMT'], ACCT => $HTTP_POST_VARS['cc_number'], EXPDATE => $HTTP_POST_VARS['cc_expires'], FREIGHTAMT => $HTTP_POST_VARS['FREIGHTAMT'], TAXAMT => $HTTP_POST_VARS['TAXAMT'], FIRSTNAME => $HTTP_POST_VARS['FIRSTNAME'], LASTNAME => $HTTP_POST_VARS['LASTNAME'], STREET => $HTTP_POST_VARS['STREET'], CITY => $HTTP_POST_VARS['CITY'], STATE => $HTTP_POST_VARS['STATE'], ZIP => $HTTP_POST_VARS['ZIP'], COUNTRY => $HTTP_POST_VARS['COUNTRY'], EMAIL => $HTTP_POST_VARS['EMAIL'], SHIPTOFIRSTNAME => $HTTP_POST_VARS['SHIPTOFIRSTNAME'], SHIPTOLASTNAME => $HTTP_POST_VARS['SHIPTOLASTNAME'], SHIPTOSTREET => $HTTP_POST_VARS['SHIPTOSTREET'], SHIPTOCITY => $HTTP_POST_VARS['SHIPTOCITY'], SHIPTOSTATE => $HTTP_POST_VARS['SHIPTOSTATE'], SHIPTOZIP => $HTTP_POST_VARS['SHIPTOZIP'], CSC => $HTTP_POST_VARS['CSC'] ); $response = pfpro_process($transaction); if (!$response||$response[RESULT]!=0) { tep_redirect(tep_href_link(FILENAME_CHECKOUT_PAYMENT, 'error_message=' . urlencode(MODULE_PAYMENT_PAYFLOWPRO_TEXT_ERROR.' '.$response[RESPMSG]), 'SSL', true, false)); the $response is where it dies I had to include this include(DIR_WS_FUNCTIONS . 'php_pfpro.php'); because it kept saying that pfpro_init(); was an undeclared class I really need help with this please anyone I will take ideas, thoughts, illusion anything Share this post Link to post Share on other sites
thecodingmonkey 0 Posted April 5, 2004 THANKS TO NO ONE never mind I just rewrote the module now it works just fine Share this post Link to post Share on other sites
subscript 0 Posted April 15, 2004 Just downloaded and installed this module today -- running into the same 'undefined function' error function as you described. Will you share your fix for this? Share this post Link to post Share on other sites