Wasn't sure where to post this so please move as required. Thanks. There is a typo when a person tries to sign up without meeting the prerequisites. Example: "Your Product Name Here" can be ordered along with these products/subscriptons only: "Name of Product" The word "subscriptions" is misspelled. To correct, look in product.inc.php and find at line 454: Code: if ($titles){ $error[] = "\"{$pr[title]}\" can be ordered ". "along with these products/subscriptons only: " . join(', ', $titles); continue; Replace with: Code: if ($titles){ $error[] = "\"{$pr[title]}\" can be ordered ". "along with these products/subscriptions only: " . join(', ', $titles); continue; I think a language file would be very helpful for correcting things like this. Thanks, Pam