View Single Post
  #11  
Old 04-27-2012, 04:00 AM
  qualiteam's Avatar 
qualiteam qualiteam is offline
 

X-Guru
  
Join Date: Dec 2010
Posts: 6,373
 

Default Re: X-Cart v4.5.0 released

Quote:
Originally Posted by handsonwebhosting
Also seeing the UPS Registration issue. We had a client earlier today asking questions on that as it wasn't working. We checked everything from HTTPS connections to .htaccess files, and everything appears correct, but once you click "Register" and then "Next" it dumps back to the login page and doesn't move forward.

Possible fix: alter the "modules/UPS_OnLine_Tools/ups_register.php" script and replace this code:

PHP Code:
u_process($request'u_elem_data_agree''License');
$ups_licensetext $ps['licensetext'];

$ups_reg_step 2

with this:
PHP Code:
u_process($request'u_elem_data_agree''License');
$ups_licensetext htmlentities($ps['licensetext']);

$ups_reg_step 2

OFFICIAL FIX FOR THIS ISSUE CAN BE FOUND HERE.
__________________
Alex Solovev,
Qualiteam

---

User manual Video tutorials X-Cart FAQ

You are welcome to press "Thanks" button
if you find this post useful

Click here to learn how to apply patches

X-Cart Extensions

Last edited by qualiteam : 06-25-2012 at 01:21 AM. Reason: Fix link added