Visual Confirmation

Du hast Probleme beim Einbau oder bei der Benutzung eines Mods? In diesem Forum bist du richtig.
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.
Benutzeravatar
REincarnation
Mitglied
Beiträge: 321
Registriert: 16.10.2003 10:06
Wohnort: Rostock
Kontaktdaten:

Beitrag von REincarnation »

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.
Benutzeravatar
andreasOymann
Ehemaliges Teammitglied
Beiträge: 2392
Registriert: 10.06.2003 16:29
Wohnort: Hamminkeln
Kontaktdaten:

Beitrag von andreasOymann »

Schau mal in die readme.html im contrib-Ordner eines Original-2.0.8ers
Kein Support per PN / Mail / ICQ / MSN ! Dafür gibt´s dieses Forum...
Benutzeravatar
rcbcom
Mitglied
Beiträge: 787
Registriert: 17.06.2003 02:28
Wohnort: Im Netz
Kontaktdaten:

Beitrag von rcbcom »

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.
Wo findet man denn eine Manuel -Anleitung mit dem die beschriebende Dateien ändern kann?
Benutzeravatar
andreasOymann
Ehemaliges Teammitglied
Beiträge: 2392
Registriert: 10.06.2003 16:29
Wohnort: Hamminkeln
Kontaktdaten:

Beitrag von andreasOymann »

andreasOymann hat geschrieben:Schau mal in die readme.html im contrib-Ordner eines Original-2.0.8ers
Kein Support per PN / Mail / ICQ / MSN ! Dafür gibt´s dieses Forum...
Benutzeravatar
rcbcom
Mitglied
Beiträge: 787
Registriert: 17.06.2003 02:28
Wohnort: Im Netz
Kontaktdaten:

Beitrag von rcbcom »

rcbcom hat geschrieben:
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.
Wo findet man denn eine Manuel -Anleitung mit dem die beschriebende Dateien ändern kann?
Habe ich doch das Zitat kommt doch von dar! 8)
Benutzeravatar
Pyramide
Ehrenadmin
Beiträge: 12734
Registriert: 19.04.2001 02:00
Wohnort: Meschede

Beitrag von Pyramide »

In this situation you are advised to manually diff the files and make the changes yourself.
:roll:
Benutzeravatar
andreasOymann
Ehemaliges Teammitglied
Beiträge: 2392
Registriert: 10.06.2003 16:29
Wohnort: Hamminkeln
Kontaktdaten:

Beitrag von andreasOymann »

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

Code: 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.';
lang_admin.php

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.';
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.

profile_add_body.tpl

Find similar:

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>
Add after:

Code: 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 -->
admin/board_config_body.tpl

Find similar:

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>
Add after:

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

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...
Benutzeravatar
rcbcom
Mitglied
Beiträge: 787
Registriert: 17.06.2003 02:28
Wohnort: Im Netz
Kontaktdaten:

Beitrag von rcbcom »

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!
Benutzeravatar
rcbcom
Mitglied
Beiträge: 787
Registriert: 17.06.2003 02:28
Wohnort: Im Netz
Kontaktdaten:

Beitrag von rcbcom »

Das weis jetzt keiner :schock:
Benutzeravatar
JayDee
Mitglied
Beiträge: 53
Registriert: 23.09.2003 10:10
Wohnort: Münster
Kontaktdaten:

Beitrag von JayDee »

ich habe jetzt komplett neu installiert....

leider läuft mein EMI noch nicht, ist aber nen anderes Thema....


Trotz Update auf 2.0.8a melden sich immer noch diese tollen User an !!!
Wie kann ich es definitiv verhindern ????
Antworten

Zurück zu „phpBB 2.0: Mod Support“