View Single Post
  #19  
Old 06-14-2004, 01:01 PM
 
NuAlpha NuAlpha is offline
 

X-Adept
  
Join Date: Aug 2003
Location: US
Posts: 598
 

Default

In the file "include/register.php", directly below...
Code:
$smarty->assign("error",$error);
...there should be:
Code:
if (@include('validate_zipcode.php')) { $b_zipcode = validate_zipcode($b_zipcode,$b_country); if (!empty($s_zipcode)) $s_zipcode = validate_zipcode($s_zipcode,$s_country); else $s_zipcode = $b_zipcode; }

Remove the "@" symbol before the "include" and then register a test customer to see if some problem shows up in your code. Note that PHP must be set to show errors for this to work.
__________________
X-Cart Pro 4.5.5 Platinum
X-Payments 1.0.6
PHP 5.3.14
MySQL 5.1.68
Apache 2.2.23
Reply With Quote