View Single Post
  #8  
Old 02-25-2005, 05:22 AM
 
jdedba jdedba is offline
 

Advanced Member
  
Join Date: Dec 2004
Posts: 96
 

Default

Thank you for checking back.

I did the following in include/register.php

Replace
Code:
$script = $xcart_catalogs['partner']."/home.php?mode=profile_created"; } if (empty($av_error)) { func_header_location($script); }

with

Code:
$script = $xcart_catalogs['partner']."/home.php?mode=profile_created"; } if (empty($av_error)) { if( $reg_error ) { func_header_location($script); } else { header("LOCATION: myfile.php"); # can be any x-cart file } }

It seems it works ok for me. I am not very good at x-cart and so I am not sure it will cause problem or not. If you see any, please post back.

Regards,

Jeff
__________________
version 4.1.1
Reply With Quote