Quote from: splittingred at Aug 09, 2011, 09:50 AM
Can you post your Register snippet call, and the form? Also, your server environment.
ok thanks, my Register snippet call is:
[[!Register?
&submitVar=`registerbtn`
&activationResourceId=`20`
&activationEmailTpl=`myActivationEmailTpl`
&activationEmailSubject=`Thanks for Registering!`
&submittedResourceId=`18`
&usergroups=`Customers`
&validate=`nospam:blank,
username:required:minLength=^6^,
password:required:minLength=^6^,
password_confirm:password_confirm=^password^,
fullname:required,
email:required:email`
&placeholderPrefix=`reg.`
]]
<div class="register">
<div class="registerMessage">[[!+reg.error.message]]</div>
<form class="form" action="[[~[[*id]]]]" method="post">
<input type="hidden" name="nospam" value="[[!+reg.nospam]]" />
<p><label for="username">[[%register.username? &namespace=`login` &topic=`register`]]
<span class="error">[[!+reg.error.username]]</span>
</label>
<input type="text" name="username" id="username" value="[[!+reg.username]]" /></p>
<p><label for="password">[[%register.password]]
<span class="error">[[!+reg.error.password]]</span>
</label>
<input type="password" name="password" id="password" value="[[!+reg.password]]" /></p>
<p><label for="password_confirm">[[%register.password_confirm]]
<span class="error">[[!+reg.error.password_confirm]]</span>
</label>
<input type="password" name="password_confirm" id="password_confirm" value="[[!+reg.password_confirm]]" /></p>
<p><label for="fullname">[[%register.fullname]]
<span class="error">[[!+reg.error.fullname]]</span>
</label>
<input type="text" name="fullname" id="fullname" value="[[!+reg.fullname]]" /></p>
<p><label for="email">[[%register.email]]
<span class="error">[[!+reg.error.email]]</span>
</label>
<input type="text" name="email" id="email" value="[[!+reg.email]]" /></p>
<br class="clear" />
<div class="form-buttons">
<input type="submit" name="registerbtn" value="Register" />
</div>
</form>
</div>
This then redirects to resource number 18 which is just a page saying "check your email and follow the link to activate". Clicking the email link received redirects me back to the correct activate resource with this call in it:
[[!ConfirmRegister &authenticate=`1` &redirectTo=`22` &errorPage=`27`]]
but this is the page that gets stuck and just shows a blank...
Server environment is linux:
Apache version 2.2.17
PHP version 5.2.17
MySQL version 5.0.92-community-log
Architecture x86_64
Operating system linux
Perl version 5.8.8
Kernel version 2.6.18-194.32.1.el5
not sure what else to post but I can find out for you if you need to know anything else?