kodokbangkong90 Posted September 3, 2016 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 10 Reputation: 0 Joined: 09/02/16 Last Seen: October 3, 2016 Share Posted September 3, 2016 (edited) Help me, im using ParDesign - YourROv1 - Free FluxCP Theme 1.0 but im register error, command is email adresses do not match, where im edit file ?? pleaseee Edited September 4, 2016 by kodokbangkong90 Link to comment Share on other sites More sharing options...
0 Emistry Posted September 3, 2016 Group: Forum Moderator Topic Count: 93 Topics Per Day: 0.02 Content Count: 10018 Reputation: 2369 Joined: 10/28/11 Last Seen: Sunday at 05:32 PM Share Posted September 3, 2016 Please elaborate the problem you currently facing. Provide us with the following or more details if possible: - Run-time server console errors/warnings (if any). - Client side errors/warnings (if any). - Any edits to scripts or source mods (if any). Link to comment Share on other sites More sharing options...
0 kodokbangkong90 Posted September 4, 2016 Group: Members Topic Count: 2 Topics Per Day: 0.00 Content Count: 10 Reputation: 0 Joined: 09/02/16 Last Seen: October 3, 2016 Author Share Posted September 4, 2016 (edited) Halo semuanya, Aku mau nanya, aku pakai web flux cp, aku edit theme pakai ParDesign - YourROv1 - Free FluxCP Theme 1.0 aku tidak tau errornya di mana, tapi pas register ada bacaan email adresses do not match terus setiap aku register pasti begitu, salah settingan dimana aku tidak tau, adakah yang tau??? ini gambar errornya di web pas register, ini pasti ada kesalahan script tapi dimana yang harus aku rubah? Terimakasih. Aku tidak tau emistry errornya dimana, mungkin salah settingan script nya, tapi dimana aku bisa merubahnya??? Terimakasih. <?php if (!defined('FLUX_ROOT')) exit; ?><h2><?php echo htmlspecialchars(Flux::message('AccountCreateHeading')) ?></h2><p><?php printf(htmlspecialchars(Flux::message('AccountCreateInfo')), '<a href="'.$this->url('service', 'tos').'">'.Flux::message('AccountCreateTerms').'</a>') ?></p><?php if (Flux::config('RequireEmailConfirm')): ?><p><strong>Note:</strong> You will need to provide a working e-mail address to confirm your account before you can log-in.</p><?php endif ?><p><strong>Note:</strong> <?php echo sprintf("Your password must be between %d and %d characters.", Flux::config('MinPasswordLength'), Flux::config('MaxPasswordLength')) ?></p><?php if (Flux::config('PasswordMinUpper') > 0): ?><p><strong>Note:</strong> <?php echo sprintf(Flux::message('PasswordNeedUpper'), Flux::config('PasswordMinUpper')) ?></p><?php endif ?><?php if (Flux::config('PasswordMinLower') > 0): ?><p><strong>Note:</strong> <?php echo sprintf(Flux::message('PasswordNeedLower'), Flux::config('PasswordMinLower')) ?></p><?php endif ?><?php if (Flux::config('PasswordMinNumber') > 0): ?><p><strong>Note:</strong> <?php echo sprintf(Flux::message('PasswordNeedNumber'), Flux::config('PasswordMinNumber')) ?></p><?php endif ?><?php if (Flux::config('PasswordMinSymbol') > 0): ?><p><strong>Note:</strong> <?php echo sprintf(Flux::message('PasswordNeedSymbol'), Flux::config('PasswordMinSymbol')) ?></p><?php endif ?><?php if (!Flux::config('AllowUserInPassword')): ?><p><strong>Note:</strong> <?php echo Flux::message('PasswordContainsUser') ?></p><?php endif ?><?php if (isset($errorMessage)): ?><p class="red" style="font-weight: bold"><?php echo htmlspecialchars($errorMessage) ?></p><?php endif ?><form action="<?php echo $this->url ?>" method="post" class="generic-form"> <?php if (count($serverNames) === 1): ?> <input type="hidden" name="server" value="<?php echo htmlspecialchars($session->loginAthenaGroup->serverName) ?>"> <?php endif ?> <table class="generic-form-table"> <?php if (count($serverNames) > 1): ?> <tr> <th><label for="register_server"><?php echo htmlspecialchars(Flux::message('AccountServerLabel')) ?></label></th> <td> <select name="server" id="register_server"<?php if (count($serverNames) === 1) echo ' disabled="disabled"' ?>> <?php foreach ($serverNames as $serverName): ?> <option value="<?php echo htmlspecialchars($serverName) ?>"<?php if ($params->get('server') == $serverName) echo ' selected="selected"' ?>><?php echo htmlspecialchars($serverName) ?></option> <?php endforeach ?> </select> </td> </tr> <?php endif ?> <tr> <th><label for="register_username"><?php echo htmlspecialchars(Flux::message('AccountUsernameLabel')) ?></label></th> <td><input type="text" name="username" id="register_username" value="<?php echo htmlspecialchars($params->get('username')) ?>" /></td> </tr> <tr> <th><label for="register_password"><?php echo htmlspecialchars(Flux::message('AccountPasswordLabel')) ?></label></th> <td><input type="password" name="password" id="register_password" /></td> </tr> <tr> <th><label for="register_confirm_password"><?php echo htmlspecialchars(Flux::message('AccountPassConfirmLabel')) ?></label></th> <td><input type="password" name="confirm_password" id="register_confirm_password" /></td> </tr> <tr> <th><label for="register_email_address"><?php echo htmlspecialchars(Flux::message('AccountEmailLabel')) ?></label></th> <td><input type="text" name="email_address" id="register_email_address" value="<?php echo htmlspecialchars($params->get('email_address')) ?>" /></td> </tr> <tr> <th><label><?php echo htmlspecialchars(Flux::message('AccountGenderLabel')) ?></label></th> <td> <p> <label><input type="radio" name="gender" id="register_gender_m" value="M"<?php if ($params->get('gender') === 'M') echo ' checked="checked"' ?> /> <?php echo $this->genderText('M') ?></label> <label><input type="radio" name="gender" id="register_gender_f" value="F"<?php if ($params->get('gender') === 'F') echo ' checked="checked"' ?> /> <?php echo $this->genderText('F') ?></label> <strong title="<?php echo htmlspecialchars(Flux::message('AccountCreateGenderInfo')) ?>">?</strong> </p> </td> </tr> <tr> <th><label><?php echo htmlspecialchars(Flux::message('AccountBirthdateLabel')) ?></label></th> <td><?php echo $this->dateField('birthdate',null,0) ?></td> </tr> <?php if (Flux::config('UseCaptcha')): ?> <tr> <?php if (Flux::config('EnableReCaptcha')): ?> <th><label for="register_security_code"><?php echo htmlspecialchars(Flux::message('AccountSecurityLabel')) ?></label></th> <td><?php echo $recaptcha ?></td> <?php else: ?> <th><label for="register_security_code"><?php echo htmlspecialchars(Flux::message('AccountSecurityLabel')) ?></label></th> <td> <div class="security-code"> <img src="<?php echo $this->url('captcha') ?>" /> </div> <input type="text" name="security_code" id="register_security_code" /> <div style="font-size: smaller;" class="action"> <strong><a href="javascript:refreshSecurityCode('.security-code img')"><?php echo htmlspecialchars(Flux::message('RefreshSecurityCode')) ?></a></strong> </div> </td> <?php endif ?> </tr> <?php endif ?> <tr> <td></td> <td> <div style="margin-bottom: 5px;width: 350px;"> <?php printf(htmlspecialchars(Flux::message('AccountCreateInfo2')), '<a href="'.$this->url('service', 'tos').'">'.Flux::message('AccountCreateTerms').'</a>') ?> </div> <div> <button class="button" type="submit"><strong><?php echo htmlspecialchars(Flux::message('AccountCreateButton')) ?></strong></button> </div> </td> </tr> </table></form> Edited September 4, 2016 by Emistry Link to comment Share on other sites More sharing options...
0 Akkarin Posted November 13, 2016 Group: Forum Manager Topic Count: 282 Topics Per Day: 0.06 Content Count: 3144 Reputation: 1630 Joined: 03/26/12 Last Seen: April 15 Share Posted November 13, 2016 You're using an old FluxCP theme that doesn't support verifying the entered email address. Add the necessary code from the default theme or ask the author of that particular theme to update their code and design themes correctly using the Inherit system. Link to comment Share on other sites More sharing options...
Question
kodokbangkong90
Help me, im using
ParDesign - YourROv1 - Free FluxCP Theme 1.0
but im register error, command is email adresses do not match,
where im edit file ?? pleaseee

Edited by kodokbangkong90Link to comment
Share on other sites
3 answers to this question
Recommended Posts