Seite 1 von 1

Probleme beim Einbau Advanced Visual Registration

Verfasst: 01.01.2007 15:15
von RalfThomas
Hallo,

ich habe Probleme beim Einbau vonAdvanced Visual Registration

http://www.phpbb.de/moddb/mod.php?id=403

Grund ist in der Anleitung steht :


#----------[ OPEN ]-------------------------------------
#

includes/usercp_register.php

#
#----------[ FIND ]-------------------------------------
#

// Generate the required confirmation code
// NB 0 (zero) could get confused with O (the letter) so we make change it
$code = dss_rand();
$code = substr(str_replace('0', 'Z', strtoupper(base_convert($code, 16, 35))), 2, 6);

#
#----------[ REPLACE WITH ]-----------------------------
#

// Generate the required confirmation code
$code_length = mt_rand(4, 6);
$code = dss_rand();
$code = strtoupper(base_convert($code, 16, 35));
$code = str_replace('I', '', $code); // The letter I could get confused with the letter J and the number 1 (one) so we remove it
$code = str_replace('0', '', $code); // NB 0 (zero) could get confused with O (the letter) so we remove it
$code = substr($code, 2, $code_length);

Aber das was vorhanden sein soll , ist in meiner Datein nicht vorhanden.
Anbei meine Datei als TXT Link
http://www.rc-forum.ch/includes/usercp_register.txt

Gruss
Ralf

Verfasst: 01.01.2007 15:32
von Miriam
Hast Du denn schon ein visual confirmation system in deinem phpBB?
Falls nein: Das wird wohl vorausgesetzt. :)

nein

Verfasst: 01.01.2007 15:50
von RalfThomas
nein habe ich nicht.
Poste mal bitte einen link mit einem Visual Registration mod.

Gruss
Ralf

Verfasst: 01.01.2007 16:56
von Miriam
Da muss ich leider passen: hab eich keinen Plan von. :(

Verfasst: 01.01.2007 19:51
von MTV-King
Also in meinem Forum ist der MOD eingebaut, funktionsfähig.
Forum-Version zum Zeitpunkt des Einbaus war 2.0.21. Jetzige Forum-Version ist 2.0.22 und er funktioniert auch hierbei :wink:

Verfasst: 01.01.2007 22:00
von tom971
Hy
du hast selbe Problemme wie ich früher.
LÖSUNG
Servus Tom