News:

Bored?  Looking to kill some time?  Want to chat with other SMF users?  Join us in IRC chat or Discord

Main Menu

Search results for: birth date registration

Search order
......  old versions too.  I think that since there is a birthday indication in the calendar, the system sends  ......
#2
......  Guys,  Is there any way to add a DoB (date of birth) field on registration, which will then  ............  with the current Birthday field in your profile?.  I run a hunting/ ......
#3
SMF Coding Discussion / Age Input on Registration
February 26, 2013, 01:41:20 PM by Razor792
......  around for a way to force users to enter their birth date during the registration process which then  ............  Register.template.php to get users to enter their birth date on registration, it would be an extremely  ......
#4
Server Performance and Configuration / PHP info help
November 19, 2011, 10:37:30 AM by Maserati
......  mails cannot be send from forum (contact form, registration activation, news, info about replies...).  I have  ............  witch I have is with age. Users enter they birth date, but forum show me N/A, and cant calculate  ......
#5
...... , though! Would it be possible to make the birthday input required for registration?  It's  ............  programming. I'll try, maybe on the first update. That would be brilliant   Well, here you go    ............  Code (Find) Select Expand // Handle a string as a birthdate...  if (isset($_POST['birthdate']) && $_POST[' ............ '] != '')  $_POST['birthdate'] = strftime('%Y-%m-%d', strtotime($_POST[' ............ ']));  // Or birthdate parts...  elseif (!empty($_POST['bday1']) && ! ............ ($_POST['bday2']))  $_POST['birthdate'] = sprintf('%04d-%02d-%02d', empty($_POST[' ............  With) Select Expand // Handle a string as a birthdate...  if (isset($_POST['birthdate']) && $_POST[' ............ '] != '')  $_POST['birthdate'] = strftime('%Y-%m-%d', strtotime($_POST[' ............ ']));  // Or birthdate parts...  elseif (!empty($_POST['bday1']) && ! ............ ['bday2']) && !empty($_POST['bday3']))  $_POST['birthdate'] = sprintf('%04d-%02d-%02d', (int) $_POST[' ............ ' => array(), Code (Add After) Select Expand 'birthdate' => $_POST['birthdate'],  Subs-Members.php   ............ '], 0, false)) Code (Add Before) Select Expand // Birthdate Checking!  if (empty($regOptions['birthdate']) ............  || $regOptions['birthdate'] == '0000-00-00')   {  fatal_error(' ............ !',false);  }else{  $arr=split("-",$regOptions['birthdate']); // splitting the array  $mm=$arr[1]; //  ............  is month  $dd=$arr[2]; // second element is date  $yy=$arr[0]; // third element is year  If(! ............ ($mm,$dd,$yy)){  fatal_error('The Birthday you entered appears to be invalid!',false);  } ............  list($Y,$m,$d) = explode("-",$regOptions['birthdate']);  If ((date("md") < $m.$d ? date("Y" ............ )-$Y-1 : date("Y")-$Y) < $modSettings['coppaAge'])   ............ ']['real_name'], Code (Add After) Select Expand 'birthdate' => $regOptions['birthdate'], Be sure you  ............ , but when I configure the mandatory input of the date of birth, it gives an error Cfll to undefined ->  ......
......  puts the form and the field of Display Name and Date of Birth (Date/Month/Year) in the registration  ......
......  require password confirmation. Security.php, validateSession() twice - once, to ensure password is  ............  panel)  Purpose: To run any further tests to validate the user supplied password.  Accepts: 1 function  ............ , or anything else is a fail.   integrate_validate_login Called from: LogInOut.php, Login2(), just  ............  user's record in the database.  Purpose: To validate credentials in an external data source as well as  ............  anything else) Register.php, Register2(), once registration is completed, just before setting up user cookie - ............  so registration will log them in to both SMF and integrated app   ............  when a user's password is modified outside of registration.  Accepts: 1 function name.  Sends: $old_user, $ ............  - the newly set password, from whatever source   Registration, and other user hooks integrate_register Called  ............ ['require'] = whether the account is immediate registration ('normal'), email activation ('activation'),  ............ '] = primary membergroup id to assign (not validated)   integrate_activate Called from: Multiple  ............  done (which is before the SMF tables are all updated)  Purpose: To ensure that the external app is  ............  Called from: Subs.php, updateMemberData(), immediately before processing to add  ............  of members $var - name of the variable being updated $data[$var] - the new value  NOTE: Not all  ............  following will be exported - any other values updated will not. 'member_name' - user name 'real_name' - ............  primary user group (only) 'gender' - male/female 'birthdate' - date of birth 'website_title' - name of  ............  (which includes who it's to, who it's from, date, return path and other things)   ............  other SMF processing has been done (like stats updates)  Purpose: Allows you to add topics to a CMS  ......
......  list all users who selected "under 13" at registration, even if they don't have their birthday listed.   ............  from the underage list when they turn 13 if the birthday is listed.  2. have a link to the COPPA  ............  have turned 13, even if they don't have their birthday listed publicly.  4. allow manual addition of  ............  member if you discover AFTER registration they lied about age at registration, which would " ............  their email address. 5. upon a user editing their birth date, if that new birth date makes the user under  ............  users are found out, by the posting of their birth date some time after registration. Handling it  ......
...... ,  i want to add a Date of Birth Column in the registration form.. And  ............  that must be usefull to show the birthday in the statasics when ever there birthday  ......
#10
SMF 1.1.x Support / Removing Profile Fields
March 04, 2009, 07:24:12 AM by flamechica
......  profile fields mod. I would like to remove the birth date, gender and location fields as I would like  ............  to show up on registration (using the custom profile fields mod). How do I  ............  I could add instead to make them show up on the registration? Either is fine with me.  ......
#11
Bridges and Integrations / SMF Wrapper for custom website
September 28, 2007, 11:38:30 AM by moazam
......  (foreign key) user_name pswd email country gender date of birth (Y-m-d) registration date (datetime)  ......
...... , Is it possible to force people to input their birth date and gender at registration page? Thanks. ......
#13
......  anymore! Basically what it does it checks during registration to see if the person enters a birthdate and they  ............ ?   Code Select Expand // Handle a string as a birthdate...  if (isset($_POST['birthdate']) && $_POST[' ............ '] != '')  $_POST['birthdate'] = strftime('%Y-%m-%d', strtotime($_POST[' ............ ']));   // Or birthdate parts...  elseif (!empty($_POST['bday1']) && ! ............ ($_POST['bday2']))  $_POST['birthdate'] = sprintf('%04d-%02d-%02d', empty($_POST[' ............ '], (int) $_POST['bday2']);  if (strtr($_POST['birthdate'], array('-' => '')) > strftime('%Y%m%d',  ............ .', false);  if (strtr($_POST['birthdate'], array('-' => '')) < strftime('%Y%m%d',  ............ * 70))  fatal_error('How about entering your real birthdate this time.', false);  if (!isset($ ............ ['birthdate']) || $_POST['birthdate'] == '')   ............ ('Please enter date of birth to register.', false);  Sea Of  ......
#14
......  First and Lastname as a mandatory part of my registration process. I have followed the guide made by  ............  have gotten my two required fields added to my registration. The problem I am having is that on the members  ............ >  <b>First Name:</b>  <div class="smalltext">', 'Birth name, Given name', '</div>  </td>  <td>  <input  ............ %"><b>First Name: </b>  <div class="smalltext">', 'Birth name, Given name', '</div>  </td>  <td><input  ......
...... ,  I am working on a project, and the registration must comply with the COPPA law. I'm trying to  ............  out if an age is under 13 from a date of birth.. I have the fields: year, month and day  ............  the registration form. From this, how can I find out the age? I've  ......
#16
Mod Requests / [Paid]Modified profiles
September 30, 2010, 06:33:49 PM by Cheeky Stoat
......  rather have a profile system that could accommodate all those characters. The first picture I have  ............  pictures show roughly what I'm looking for. Upon registration they need to put in their birth date, if their  ............  then they don't have an account made. If the birth date makes them 16 or 17 then they get put in a  ............  member group from those who's birthdays make them over 18. For every thread that is  ............  restriction mod while anyone and everyone can update and put info into their profiles.  Thank you so  ......
#17
......   To be honest I think the age restriction in the registration could be better! Instead of having a check box  ............ ". (anyone can check a box) instead asking for the date of birth - [month/day/year] - then under that in  ......
......  a number of them did not enter anything into the "date of birth" fields. What do you think happens when  ............  migrate from YaBB to SMF?  Correct, they all have birthdays on the same date of the migration. Talk  ............  to force members to complete certain fields at registration. I don't want them to be an option. How can I  ......
#19
SMF 1.1.x Support / More fields in registeration Fileds
January 22, 2010, 07:45:22 AM by xohaib
......  need some help that i want to put more fields in registration fields like date of birth, location and state. I  ......
#20
SMF 1.1.x Support / Profile Search
April 14, 2009, 12:24:33 AM by Filipina
......  of. Something tells be it might be tied into the date of birth question on registration   Thanks for  ......
Advertisement: