View Single Post
  #1444  
Old 03-15-2020, 03:38 PM
  peggyr's Avatar 
peggyr peggyr is offline
 

X-Adept
  
Join Date: Dec 2005
Posts: 631
 

Default Re: X-Cart - reBOOT - Responsive Template

I just upgraded my test server to

1) PHP 7.4

2) 4.7.12 code

3) reBOOT 4.7.11

I use few of the modules in the code, but my site in closed mode works but I have only done minimal testing, but ran a test order through Cybersource Test payment gateway

I had 'one bug' which I have reported to X-cart.

I've included the bug and fix (that I made) below, in case anyone else uses Cybersource

BAD in 4.7.12 code payment/cc_csrc_sa_wm.php on line 149

$csrc_sa_wm_url = 'https://'.(($module_params['testmode'] == 'Y') ? 'testsecureacceptance' : '') . 'secureacceptance.cybersource.com/pay';

SHOULD BE

$csrc_sa_wm_url = 'https://'.(($module_params['testmode'] == 'Y') ? 'test' : '') . 'secureacceptance.cybersource.com/pay';

The only other problem I had, was I had no robots.demo.txt in my root, and got 'Not Found' during the 'pre-apply' step of the upgrade.
__________________
X-Cart GP 4.7.12 | XCARTMODS.CO.UK reBOOT (reDUX)4.7.12.8 | Live
IONOS Hosting | Linux | PHP 7.4.33 | MySQL 5.7
Reply With Quote