Visual Confirmation
Forumsregeln
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.0, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.0, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
- REincarnation
- Mitglied
- Beiträge: 321
- Registriert: 16.10.2003 10:06
- Wohnort: Rostock
- Kontaktdaten:
Ich möchte auch gern den Visual Confirmation MOD einbauen. Aber ich habe bisher schon eine Menge anderer MODs eingebaut. Deshalb kann ich ja die Dateien nicht einfach überbügeln. Gibt es irgendwo eine Anleitung, was im Code der Dateien einzeln geändert werden muss? Danke
Computerverein Rostock e.V.
Bloßes Ignorieren ist noch keine Toleranz.
Bloßes Ignorieren ist noch keine Toleranz.
- andreasOymann
- Ehemaliges Teammitglied
- Beiträge: 2392
- Registriert: 10.06.2003 16:29
- Wohnort: Hamminkeln
- Kontaktdaten:
Wo findet man denn eine Manuel -Anleitung mit dem die beschriebende Dateien ändern kann?phpBB 2.0.6 is shipped with various bits of the visual confirmation system already installed. To complete installation you should unzip the contents of the visual_confirmation.zip archive into your phpBB root directory. Allow it to overwrite any existing files. Please Note that if you have any Mods installed which have altered; profile.php, includes/usercp_register.php, admin/admin_board.php or templates/subSilver/admin/board_config_body.tpl you will lose these changes. In this situation you are advised to manually diff the files and make the changes yourself.
- andreasOymann
- Ehemaliges Teammitglied
- Beiträge: 2392
- Registriert: 10.06.2003 16:29
- Wohnort: Hamminkeln
- Kontaktdaten:
Habe ich doch das Zitat kommt doch von dar!rcbcom hat geschrieben:Wo findet man denn eine Manuel -Anleitung mit dem die beschriebende Dateien ändern kann?phpBB 2.0.6 is shipped with various bits of the visual confirmation system already installed. To complete installation you should unzip the contents of the visual_confirmation.zip archive into your phpBB root directory. Allow it to overwrite any existing files. Please Note that if you have any Mods installed which have altered; profile.php, includes/usercp_register.php, admin/admin_board.php or templates/subSilver/admin/board_config_body.tpl you will lose these changes. In this situation you are advised to manually diff the files and make the changes yourself.

- andreasOymann
- Ehemaliges Teammitglied
- Beiträge: 2392
- Registriert: 10.06.2003 16:29
- Wohnort: Hamminkeln
- Kontaktdaten:
Und im nächsten Abschnitt der README.html steht:
The default English language pack includes the necessary new strings for this mod. Other languages may be updated in time. However you can easily add the strings yourself, they are listed below. Please do not translate the %s present in one of these strings. This is a placeholder for additional text that will be inserted by phpBB.
lang_main.php
lang_admin.phpCode: Alles auswählen
$lang['Confirm_code_wrong'] = 'The confirmation code you entered was incorrect'; $lang['Too_many_registers'] = 'You have exceeded the number of registration attempts for this session. Please try again later.'; $lang['Confirm_code_impaired'] = 'If you are visually impaired or cannot otherwise read this code please contact the %sAdministrator%s for help.'; $lang['Confirm_code'] = 'Confirmation code'; $lang['Confirm_code_explain'] = 'Enter the code exactly as you see it. The code is case sensitive and zero has a diagonal line through it.';
If you use a style other than subSilver you will need to make changes to two templates. The changes are quite straightforward, see below for details.Code: Alles auswählen
$lang['Visual_confirm'] = 'Enable Visual Confirmation'; $lang['Visual_confirm_explain'] = 'Requires users enter a code defined by an image when registering.';
profile_add_body.tpl
Find similar:
Add after:Code: Alles auswählen
<tr> <td class="row1"><span class="gen">{L_CONFIRM_PASSWORD}: * </span><br /> <span class="gensmall">{L_PASSWORD_CONFIRM_IF_CHANGED}</span></td> <td class="row2"> <input type="password" class="post" style="width: 200px" name="password_confirm" size="25" maxlength="32" value="{PASSWORD_CONFIRM}" /> </td> </tr>
admin/board_config_body.tplCode: Alles auswählen
<!-- 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 -->
Find similar:
Add after:Code: Alles auswählen
<tr> <td class="row1">{L_ACCT_ACTIVATION}</td> <td class="row2">vinput type="radio" name="require_activation" value="{ACTIVATION_NONE}" {ACTIVATION_NONE_CHECKED} />{L_NONE} <input type="radio" name="require_activation" value="{ACTIVATION_USER}" {ACTIVATION_USER_CHECKED} />{L_USER} <input type="radio" name="require_activation" value="{ACTIVATION_ADMIN}" {ACTIVATION_ADMIN_CHECKED} />{L_ADMIN}</td> </tr>
PLEASE NOTE: Templates can vary greatly and the above code should only be used as a guide. You may want to contact the template designer if you do not feel comfortable making the changes yourself.Code: Alles auswählen
<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>
Once these tasks have been completed you should visit your Administration Control Panel. Under General -> Configuration you will find a new option "Enable Visual Confirmation", check the yes box to switch the system on. Because some of your visitors may be visually impaired a message is output along with the image noting the board email address as a point of contact should they be unable to read the code.
While the Mod is designed to be relatively light in terms of load a very busy board with dozens of registrations a minute may see some affect from it. We would be interested in your experiences in this respect.
Kein Support per PN / Mail / ICQ / MSN ! Dafür gibt´s dieses Forum...
Ja toll so habe ich es auch eine gebaut... aber da steht auch das man die Funktion 'visual_confirmation' einbauen soll d.h die orginal Datein rein Kopieren aber wenn Mods eingebaut hat dann geht das nicht.
Was da beschrieben ist habe ich eine gebaut, aber wie kann ich die anderen Datein wo der Cod fehlt noch Manuel einbauen? Die Dateien profil.php, admin_board.php,constants.php,usercp_confirm.php,usercp_register.php.
So bekomme ich in der Board-Config nur eine Lehre Zeile angezeigt mit Ja und Nein!
Was da beschrieben ist habe ich eine gebaut, aber wie kann ich die anderen Datein wo der Cod fehlt noch Manuel einbauen? Die Dateien profil.php, admin_board.php,constants.php,usercp_confirm.php,usercp_register.php.
So bekomme ich in der Board-Config nur eine Lehre Zeile angezeigt mit Ja und Nein!