Tricky tricky, but we know about this one.
crassus168:
i found that when i use an account to enter the billing information during the check out, once i click submit, it prompt out that message, what 's wrong with that? any idea?
Post edited by: soeren, at: 2004/06/11 20:41
jure:
same here. registration went through fine when i was logged in as admin, but i got tricky, tricky ... message when i was logged in as usual registered user.
crassus168:
what is this problem? no matter I used what account, this problem always insist. :(
Soeren:
The problem comes from a missing input field in the file html/checkout_register_form.php.
So go into the file and find:
Code:
<input type="hidden" name="id" value="<?php echo $my->id ?>" />
<input type="hidden" name="gid" value="<? echo $my->gid ?>" />
<input type="hidden" name="emailpass" value="<?php echo $_CONFIG->EMAILPASS ?>" />
<input type="hidden" name="option" value="com_phpshop" />
Change it to:
Code:
<input type="hidden" name="id" value="<?php echo $my->id ?>" />
<input type="hidden" name="user_id" value="<?php echo $my->id ?>" />
<input type="hidden" name="gid" value="<? echo $my->gid ?>" />
<input type="hidden" name="emailpass" value="<?php echo $_CONFIG->EMAILPASS ?>" />
<input type="hidden" name="option" value="com_phpshop" />
That fixes it...
Tricky, tricky, but I know about this one. ;)
jure:
yeap, this did fix the problem. thanx a lot.
Navigation
[0] Message Index
[#] Next page