Author |
Topic  |
|
bgrex
Starting Member
Australia
29 Posts |
Posted - 08 September 2004 : 07:28:52
|
I need assistance, can someone give me an idea how to get a registration of a member to go to the member pending section on my forum,before they gain accesss, I have with out any luck, tried different settings. When I am under adamin and go into set up section, the members pending section there is no area to edit or change. Thanks |
|
OneWayMule
Dev. Team Member & Support Moderator
    
Austria
4969 Posts |
|
tekwrite
Starting Member
15 Posts |
Posted - 08 September 2004 : 20:13:14
|
Do you not also need to check Email validation on the same config screen? |
 |
|
Nikkol
Forum Moderator
    
USA
6907 Posts |
|
bgrex
Starting Member
Australia
29 Posts |
Posted - 10 September 2004 : 21:25:56
|
Thanks to both of you, I now have another problem for you, how can I get the first and last name of the pending new member to be shown on the admin accounts pending.asp. The reason for this is to see the names that may NOT be wanted of some known people before approval. I have already set the first and last name fields on the rego form so that they must be filled in. |
 |
|
laser
Advanced Member
    
Australia
3859 Posts |
Posted - 10 September 2004 : 21:38:49
|
So if I enter the first name of George and the last name of Bush am I allowed to be a member of your site ? Or how about these ?? 
Adolf Hitler Santa Claus Devil Incarnate Fred Bloggs
You would have to change the SQL statement and table layout to admin_accounts_pending.asp, I'll look at this later  |
 |
|
bgrex
Starting Member
Australia
29 Posts |
Posted - 10 September 2004 : 22:06:51
|
Laser Very witty  What I have is a known list of email and names belonging to each other, these are the one's that I wish to keep "OUT", as you said with your list of famous people one would have to think these names not be used by sensible users (my opinion only) 
can't wait for your reply  |
 |
|
laser
Advanced Member
    
Australia
3859 Posts |
Posted - 10 September 2004 : 22:34:17
|
ROFL ... I think I've been in your position before. My current label for these people are "serial pests". One such person has just started this .... using other people's names to sneak past the rego process. In these cases, you can't expect people to use their real names because that would give the game away straight away.
One such pest even sent me a VERY rude email when I made some allegations that he wasn't who he said he was. Little does he know that I have contacted the person he was impersonating, and the results aren't going to be pretty 
Anyway, as I said, I'll supply the code for you a bit later. |
 |
|
laser
Advanced Member
    
Australia
3859 Posts |
Posted - 11 September 2004 : 05:59:10
|
Just a question first, what version of Snitz are you using ? |
 |
|
bgrex
Starting Member
Australia
29 Posts |
Posted - 11 September 2004 : 21:54:05
|
Laser The latest version 3.4.xx |
 |
|
laser
Advanced Member
    
Australia
3859 Posts |
Posted - 12 September 2004 : 04:34:38
|
There's a big difference between 3.4.03 and 3.4.04 though, especially on this page. I use 3.4.03 but I've heard the 3.4.04 version shows the IP address. |
 |
|
bgrex
Starting Member
Australia
29 Posts |
Posted - 12 September 2004 : 19:33:09
|
Laser I am useing 3.4.04 and yes, it shows the IP address. |
 |
|
bgrex
Starting Member
Australia
29 Posts |
Posted - 18 September 2004 : 19:57:21
|
quote: Originally posted by laser
ROFL ... I think I've been in your position before. My current label for these people are "serial pests". One such person has just started this .... using other people's names to sneak past the rego process. In these cases, you can't expect people to use their real names because that would give the game away straight away.
One such pest even sent me a VERY rude email when I made some allegations that he wasn't who he said he was. Little does he know that I have contacted the person he was impersonating, and the results aren't going to be pretty 
Anyway, as I said, I'll supply the code for you a bit later.
Laser To save you some trouble, I played, found, and conquered, the follow is what I changed in admin_accounts_pending.asp line 223 added=M_FIRSTNAME, M_LASTNAME at the end of line
line 253 added=" <td bgColor=""" & strHeadCellColor & """ align=""center""><b><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strHeadFontColor & """>First Name</font></b></td>" & vbNewLine & _
line 254 added =" <td bgColor=""" & strHeadCellColor & """ align=""center""><b><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strHeadFontColor & """>Last Name</font></b></td>" & vbNewLine & _
line 383 added =mM_FIRSTNAME = 7
line 384 added =mM_LASTNAME = 8
line 424 added = " <td bgcolor=""" & CColor & """ align=""center""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strForumFontColor & """>" & chkString(MP_MemberFirstName, "display") & "</a></font></td>" & vbNewLine & _
line 425 added =" <td bgcolor=""" & CColor & """ align=""center""><font face=""" & strDefaultFontFace & """ size=""" & strDefaultFontSize & """ color=""" & strForumFontColor & """>" & chkString(MP_MemberLastName, "display") & "</a></font></td>" & vbNewLine & _
all this worked fine, thanks again for your help much appreciated. |
 |
|
laser
Advanced Member
    
Australia
3859 Posts |
Posted - 19 September 2004 : 06:16:45
|
Sorry mate, but you are almost right (although I think you've done it and just missed posting it). Just down a bit from line 384, you need to add these lines :
MP_MemberFirstName = arrMemberData(mM_FIRSTNAME, iMember)
MP_MemberLastName = arrMemberData(mM_LASTNAME, iMember)
at the end of the other lines of similar format |
 |
|
bgrex
Starting Member
Australia
29 Posts |
Posted - 20 September 2004 : 08:36:06
|
Hi Laser you are right I missed it, I did although have it in there just forgot that it was lines that I changed  Thanks again |
 |
|
|
Topic  |
|