|
|
| Author |
Message |
Norio Takeshi
New User
Joined: 29 Jul 2010
Posts: 5
|
Posted: July 29th 2010, 11:10 pm Post subject: Confirmation code on the chronic theme glitched |
|
|
| Hi all, is there a way to disable the confirmation code in phpbb2? the confirmation code numbers and entry box dont show |
|
| Back to top |
|
 |
Dogs and Things
Well Known User
Joined: 11 Sep 2006
Posts: 189
|
Posted: July 30th 2010, 12:47 am Post subject: |
|
|
| There's a stting for that in the ACP => General setttings. |
|
| Back to top |
|
 |
Norio Takeshi
New User
Joined: 29 Jul 2010
Posts: 5
|
Posted: July 30th 2010, 8:25 am Post subject: |
|
|
thanls
*edit*
I'm trying to find the phpbb2.0.22 subsilver theme file that contains this code
| Code:
|
<!-- Visual Confirmation -->
<tr>
<td class="row1" colspan="2" align="center"><span class="gensmall">If you are visually impaired or cannot otherwise read this code please contact the <a href="mailto:wild.korun@gmail.com">Administrator</a> for help.</span><br><br><img src="profile.php?mode=confirm&id=dd4cca94622956e206b6400bfdac3543" alt="" title=""><br><br></td>
</tr>
<tr>
<td class="row1"><span class="gen">Confirmation code: * </span><br><span class="gensmall">Enter the code exactly as you see it. The code is case sensitive and zero has a diagonal line through it.</span></td>
<td class="row2"><input class="post" style="width: 200px;" name="confirm_code" size="6" maxlength="6" value="" type="text"></td>
</tr>
|
can anyone tell me what file its in please? |
|
| Back to top |
|
 |
~HG~
Dedicated User
Joined: 08 Nov 2003
Posts: 3913
Location: Australia
|
Posted: July 30th 2010, 3:24 pm Post subject: |
|
|
It appears to me that the code you have posted above is from "view source" in your browser.
The actual code can be found in templates/admin/board_config_body.tpl and reads as follows;
| Code:
|
<tr>
<td class="row1">{L_VISUAL_CONFIRM}<br /><span class="gensmall">{L_VISUAL_CONFIRM_EXPLAIN}</span></td>
<td class="row2"><input type="radio" name="enable_confirm" value="1" {CONFIRM_ENABLE} />{L_YES} <input type="radio" name="enable_confirm" value="0" {CONFIRM_DISABLE} />{L_NO}</td>
</tr>
|
The extra wording in your post actually comes from the language file relating to the code itself. _________________ ~HG~
|| rodneyangell.com || || phpbb-tutorials.com ||My Hacks |
|
| Back to top |
|
 |
Dogs and Things
Well Known User
Joined: 11 Sep 2006
Posts: 189
|
Posted: July 30th 2010, 3:52 pm Post subject: |
|
|
Hi ~HG~,
I think he means
| Code:
|
<!-- Visual Confirmation -->
<!-- BEGIN switch_confirm -->
<tr>
<td class="row1" colspan="2" align="center"><span class="gensmall">{L_CONFIRM_CODE_IMPAIRED}</span><br /><br />{CONFIRM_IMG}<br /><br /></td>
</tr>
<tr>
<td class="row1"><span class="gen">{L_CONFIRM_CODE}: * </span><br /><span class="gensmall">{L_CONFIRM_CODE_EXPLAIN}</span></td>
<td class="row2"><input type="text" class="post" style="width: 200px" name="confirm_code" size="6" maxlength="6" value="" /></td>
</tr>
<!-- END switch_confirm -->
|
This code is located in templates/subSilver/profile_add_body.tpl. |
|
| Back to top |
|
 |
Norio Takeshi
New User
Joined: 29 Jul 2010
Posts: 5
|
Posted: July 30th 2010, 5:33 pm Post subject: |
|
|
thanks dogs, just the code i needed  |
|
| Back to top |
|
 |
Dogs and Things
Well Known User
Joined: 11 Sep 2006
Posts: 189
|
Posted: July 31st 2010, 1:10 am Post subject: |
|
|
| Are you aware of the fact that the visual confirmation code doesn´t do anything to stop spammer registrations? |
|
| Back to top |
|
 |
Norio Takeshi
New User
Joined: 29 Jul 2010
Posts: 5
|
Posted: July 31st 2010, 10:30 am Post subject: |
|
|
if it doesnt work, then why does phpbb3 use it? lol
and all the other top forums  |
|
| Back to top |
|
 |
Thoul
VIP

Joined: 30 Jul 2002
Posts: 18040
Location: USA
|
|
| Back to top |
|
 |
Norio Takeshi
New User
Joined: 29 Jul 2010
Posts: 5
|
Posted: July 31st 2010, 11:47 am Post subject: |
|
|
yea, i got this security mod for phpbb2, i just needed to fix the chronic theme before i installed it  |
|
| Back to top |
|
 |
|