I've read through the whole forum on all posts regarding this and nobody seems to have this problem.
Not sure what to do.
jsgraphix.com/register.html
Thanks.
jsgraphix.com/register.html
<div class="form_item">
<div class="form_element cf_textbox">
<label class="cf_label" style="width: 150px;">Name*</label>
<input class="cf_inputbox required" maxlength="150" size="30" title="" id="text_0" name="text_0" type="text" />
</div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div class="form_element cf_textbox">
<label class="cf_label" style="width: 150px;">Username*</label>
<input class="cf_inputbox required" maxlength="150" size="30" title="" id="text_1" name="text_1" type="text" />
</div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div class="form_element cf_textbox">
<label class="cf_label" style="width: 150px;">Email*</label>
<input class="cf_inputbox required validate-email" maxlength="150" size="30" title="" id="text_2" name="text_2" type="text" />
</div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div class="form_element cf_password">
<label class="cf_label" style="width: 150px;">Password*</label>
<input class="cf_inputbox required" maxlength="150" size="30" title="" id="text_3" name="text_3" type="password" />
</div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div class="form_element cf_password">
<label class="cf_label" style="width: 150px;">Confirm Password*</label>
<input class="cf_inputbox required" maxlength="150" size="30" title="" id="text_4" name="text_4" type="password" />
</div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div class="form_element cf_captcha">
<label class="cf_label" style="width: 150px;">Image Verification</label>
<span>{imageverification}</span>
</div>
<div class="cfclear"> </div>
</div>
<div class="form_item">
<div class="form_element cf_button">
<input value="Register" name="button_6" type="submit" /><input type="reset" value="Reset"/>
</div>
<div class="cfclear"> </div>
</div>
$post: Array ( [text_0] => Testing [text_1] => Testing [text_2] => [email]bob@example.com[/email] [text_3] => xkZmgDWgV3 [text_4] => xkZmgDWgV3 [chrono_verification] => ufxc3 [button_6] => Register [22fdd8b1ce74d6b7ec5280ea05fc0d34] => 1 [1cf1] => c9eb774fb65fcbd729dfd1a754836ced [chronoformname] => register [username] => Testing [name] => Testing [email] => [email]bob@example.com[/email] [password] => xkZmgDWgV3 [password2] => xkZmgDWgV3 )
Hello Testing, Thank you for registering at JSGraphix. Your account is created and must be activated before you can use it. To activate the account click on the following link or copy-paste it in your browser: http://www.jsgraphix.com/index.php?option=com_user&task=activate&activation=3059a7d63aaf9afc4cb30d3fe7085bbc After activation you may login to http://www.jsgraphix.com/ using the following username and password: Username: Testing Password: xkZmgDWgV3Your account has been created and an activation link has been sent to the e-mail address you entered. Note that you must activate the account by clicking on the activation link when you get the e-mail before you can login.
Hello Testing,
Thank you for registering at JSGraphix. Your account is created and must be activated before you can use it.
To activate the account click on the following link or copy-paste it in your browser:
http://www.jsgraphix.com/index.php?option=com_user&task=activate&activation=3059a7d63aaf9afc4cb30d3fe7085bbc
After activation you may login to http://www.jsgraphix.com/ using the following username and password:
Username: Testing
Password: xkZmgDWgV3
but I tested out registering with the same username and same email and it let me register. It didn't give me an error saying that a user with that username already exists.
Oh, and one more thing, the Show Joomla messages still isn't working. Just a blank screen now.
<?php
$MyPlugins =& CFPlugins::getInstance($MyForm->formrow->id);
if(!$MyPlugins->cf_joomla_registration['errors']){
$MyPlugins->runPlugin('after_email', array('ONSUBMIT', 'ONLOADONSUBMIT'), 'cf_paypal_api');
if($MyPlugins->cf_paypal_api['payment_status'] == 'SUCCESS'){
echo "Thank you for registering at Mysite.com. You will be recieving a confirmation email shortly";
$MyFormEmails =& CFEMails::getInstance($MyForm->formrow->id);
$MyFormEmails->setEmailData(1, 'enabled', '1');
$MyFormEmails->sendEmails($MyForm, $MyFormEmails->emails);
}else{
$regUser = new JUser($MyPlugins->cf_joomla_registration['user']->id);
$regUser->delete();
$MyForm->addErrorMsg( 'An error occured : '.$MyPlugins->cf_paypal_api['error_message'] );
$MyForm->haltFunction["autogenerated_after_email"] = true;
}
}else{
$MyForm->addErrorMsg($MyPlugins->cf_joomla_registration['errors']);
$MyForm->haltFunction["autogenerated_after_email"] = true;
}
?>
<?php
$MyForm =& CFChronoForm::getInstance();
$MyPlugins =& CFPlugins::getInstance($MyForm->formrow->id);
if($MyPlugins->cf_joomla_registration['errors']){
$MyForm->stoprunning = true;
$MyForm->formerrors = $MyPlugins->cf_joomla_registration['errors'];
}
?>