InfoNut Posted March 11, 2006 Posted March 11, 2006 I have been having nothing but fun (she said sarcastically) with verisign (link, not pro) and oscommerce. No fix I have found on the oscommerce site has help and ipower (the stores hosting company) is so not helpful. I am just trying to get the information on the order (that it was processed and approved, the information on what was ordered, etc.) to show up on the site after the credit card goes through. Also, to get it to send an email to both the company and the customer with the information on the order. Everything has been set up, however it isn't working. Here is what happens. The order is placed.. the person chooses to pay by credit card... they are taken to a page on the verisign site... the information is verified by verisign and the triple check with the customer if they want to actually place this order (which I find a tad over done actually)... then they are told the order has been approved and are to click the button below to be returned to the site. That is when it gets ugly and the following error occurs. I am getting the following error after a customer submits credit card order (which is handled through Verisign). This is what they/I get when the order is done processing at the verisign site and tries to return to the store... Parse error: parse error, unexpected T_STRING in /home/activenu/public_html/store/catalog/checkout_process.php on line 15 The code lines ( in the checkout_process.php file) it is referring to are the following... 13 if($HTTP_POST_VARS['RESPMSG'] == 'Approved') { 14 15 $HTTP_POST_VARS[$HTTP_POST_VARS['USER1']] = $HTTP_POST_VARS['USER2']; 16 $HTTP_GET_VARS[$HTTP_POST_VARS['USER1']] = $HTTP_POST_VARS['USER2']; 17 reset ($HTTP_POST_VARS); 18 reset ($HTTP_GET_VARS); 19 20 } I also tried using 13 if($_POST['RESPMSG'] == 'Approved') { 14 15 $_POST[$_POST['USER1']] = $_POST['USER2']; 16 $_GET[$_POST['USER1']] = $_POST['USER2']; 17 reset ($_POST); 18 reset ($_GET); 19 20 } No Luck. I still get the same error. Ipower.com (which is where this site is hosted through) and Verisign have been no help what so ever in finding an answer to this problem. Any suggestions or help would be greatly appreciated.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.