Jump to content
  • 0

FluxCP Account Creation


Question

Posted

When I try to make an account, I get this error:

Fatal error: Undefined class constant 'INVALID_BIRTHDATE_FORMAT' in /home/scarlett/public_html/modules/account/create.php on line 115

I've gone to see that line, but I am now sure how to define the Birthdate content to make it work.

Thank you.

7 answers to this question

Recommended Posts

Posted

put this on your modules/account/create.php

Find :

<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>

Add below :

<tr>
<th><label for="register_birth_date"><?php echo htmlspecialchars(Flux::message('BirthDateLabel')) ?></label></th>
<td><input type="text" name="birth_date" id="register_birth_date" value="<?php echo htmlspecialchars($params->get('birth_date')) ?>" /><i>(Format: YYYY-MM-DD)</i></td>
</tr>

Format is Format: YYYY-MM-DD

Posted (edited)

Do you mean in themes/account/create.php? Because I do not see that in the modules/account/create.php

Also in the theme/account/create.php, I also have that added below the first one already...

 <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 for="register_birth_date"><?php echo htmlspecialchars(Flux::message('BirthDateLabel')) ?></label></th>
 <td><input type="text" name="birth_date" id="register_birth_date" value="<?php echo htmlspecialchars($params->get('birth_date')) ?>" /><i>(Format: YYYY-MM-DD)</i></td>
 </tr>

It's still showing that error.

Edited by mitsukee
Posted

It still give me the error "Fatal error: Undefined class constant 'INVALID_BIRTHDATE_FORMAT' in /home/scarlett/public_html/modules/account/create.php on line 118"

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...