Guest ms_arbez Posted September 12, 2006 Share Posted September 12, 2006 I wasn't sure if possibly I was made my first entry in the wrong thread, but I'm almost to the point of desperation in getting this resolved. I've scoured any and everywhere I can look to find a solution, and I've come up empty. I cannot get the Print Order Form to work correctly. When I've run several test purchases, And choose it as my way to pay, I get a 404 Error page, as if it doesn't exist. I upgraded not too long ago, and I thought maybe the file had been wiped out. Opened up WSFTP Pro, looked under the /modules/gateway/Print_Order_Form folder, and it's in there. I've even tried changing the URL in the "transfer.inc" file, but no dice. Is there anything I'm missing here? I am using CubeCart v.3.1.0 Quote Link to comment Share on other sites More sharing options...
Guest PCARS Posted September 13, 2006 Share Posted September 13, 2006 How do you get v3.1.0? The release version is 3.0.12 only! v3.1.0 is in beta or alpha now so no support yet. Quote Link to comment Share on other sites More sharing options...
Guest ms_arbez Posted September 14, 2006 Share Posted September 14, 2006 oops... that was supposed to be 3.0.10. That upgrade came with my hosting package. Quote Link to comment Share on other sites More sharing options...
Guest PCARS Posted September 14, 2006 Share Posted September 14, 2006 Upgrade to 3.0.12 and use the transfer.inc of 3.0.11. That works for me! Quote Link to comment Share on other sites More sharing options...
convict Posted September 18, 2006 Share Posted September 18, 2006 There is a little modificaton since 3.0.12 in modules/gateway/Print_Order_Form/transef.inc.php however 50% sucesfull only. This line:$formAction = $GLOBALS['rootRel']."/modules/gateway/Print_Order_Form/orderForm.php"; causes doubled shlash in URL. Have to be: $formAction = $GLOBALS['rootRel']."modules/gateway/Print_Order_Form/orderForm.php"; + new line in orderForm.php just below include_once("../../../includes/sessionStart.inc.php"); include_once("../../../includes/sslSwitch.inc.php"); OR use old versions line: 3.0.10 and older uses this: $formAction = $glob['storeURL']."/modules/gateway/Print_Order_Form/orderForm.php"; However the first fix is sugested because of clean solution (SSL in use) Quote Link to comment Share on other sites More sharing options...
Guest Posted September 20, 2006 Share Posted September 20, 2006 There is a little modificaton since 3.0.12 in transef.inc.php however 50% sucesfull only. This line:$formAction = $GLOBALS['rootRel']."/modules/gateway/Print_Order_Form/orderForm.php"; causes doubled shlash in URL. Have to be: $formAction = $GLOBALS['rootRel']."modules/gateway/Print_Order_Form/orderForm.php"; + new line in orderForm.php just below include_once("../../../includes/sessionStart.inc.php"); include_once("includes/sslSwitch.inc.php"); OR use old versions line: 3.0.10 and older uses this: $formAction = $glob['storeURL']."/modules/gateway/Print_Order_Form/orderForm.php"; However the fix is sugested because of clean solution (SSL in use) where the location of transef.inc.php? How to edit it? Quote Link to comment Share on other sites More sharing options...
Guest Arild Posted September 24, 2006 Share Posted September 24, 2006 Location is modules/gateway/Print_Order_Form/ For both files Quote Link to comment Share on other sites More sharing options...
Guest Arild Posted September 24, 2006 Share Posted September 24, 2006 One more error in Print_Order_Form This code: <!-- BEGIN: repeat_card --> <img src="images/box.gif" alt="" /> {VAL_CARD_NAME}<br /> <!-- END: repeat_card --></td> Should be replaced by this one to show the check boxes correctly <!-- BEGIN: repeat_card --> <img src="/modules/gateway/Print_Order_Form/images/box.gif" alt="" /> {VAL_CARD_NAME}<br /> <!-- END: repeat_card --></td> Quote Link to comment Share on other sites More sharing options...
Al Brookbanks Posted September 25, 2006 Share Posted September 25, 2006 I'd recommend fixing it by changing: $formAction = $GLOBALS['rootRel']."/modules/gateway/Print_Order_Form/orderForm.php"; to: $formAction = "modules/gateway/Print_Order_Form/orderForm.php"; Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.