Fragen zur Bedienung von phpBB 3.0.x, Probleme bei der Benutzung und alle weiteren Fragen inkl. Update auf die neuste phpBB 3.0.14 Version
Forumsregeln phpBB 3.0 hat das Ende seiner Lebenszeit überschritten
phpBB 3.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 3.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf die neuste phpBB-Version, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
wenn bei der Registrierung ein Pflichtfeld freiläst erscheinen folgende Fehlermeldungen:
[phpBB Debug] PHP Notice: in file /includes/functions_user.php on line 1202: array_shift() [function.array-shift]: The argument should be an array
[phpBB Debug] PHP Notice: in file /includes/functions_user.php on line 1203: array_unshift() [function.array-unshift]: The first argument should be an array
[phpBB Debug] PHP Notice: in file /includes/functions_user.php on line 1205: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, 'validate_' was given
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3407: Cannot modify header information - headers already sent by (output started at /includes/functions.php:2922)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3409: Cannot modify header information - headers already sent by (output started at /includes/functions.php:2922)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3410: Cannot modify header information - headers already sent by (output started at /includes/functions.php:2922)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3411: Cannot modify header information - headers already sent by (output started at /includes/functions.php:2922)
200
MODs die eingebaut sind:
Prime Birthdate Require
Gender
Upcoming_Birthdays
Swat
Diabetes is more than an illness - it's a way of life.
/**
* Data validation ... used primarily but not exclusively by ucp modules
*
* "Master" function for validating a range of data types
*/
function validate_data($data, $val_ary)
{
$error = array();
foreach ($val_ary as $var => $val_seq)
{
if (!is_array($val_seq[0]))
{
$val_seq = array($val_seq);
}
foreach ($val_seq as $validate)
{
$function = array_shift($validate);
array_unshift($validate, $data[$var]);
if ($result = call_user_func_array('validate_' . $function, $validate))
{
$error[] = $result . '_' . strtoupper($var);
}
}
}
return $error;
}
das Problem besteht leider immer noch hier nochmal die meldungen:
[phpBB Debug] PHP Notice: in file /includes/functions_user.php on line 1202: array_shift() [function.array-shift]: The argument should be an array
[phpBB Debug] PHP Notice: in file /includes/functions_user.php on line 1203: array_unshift() [function.array-unshift]: The first argument should be an array
[phpBB Debug] PHP Notice: in file /includes/functions_user.php on line 1205: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, 'validate_' was given
Warning: Cannot modify header information - headers already sent by (output started at /includes/functions.php:2922) in /includes/functions.php on line 3407
Warning: Cannot modify header information - headers already sent by (output started at /includes/functions.php:2922) in /includes/functions.php on line 3409
Warning: Cannot modify header information - headers already sent by (output started at /includes/functions.php:2922) in /includes/functions.php on line 3410
Warning: Cannot modify header information - headers already sent by (output started at /includes/functions.php:2922) in /includes/functions.php on line 3411
ist denke ich garantiert nur eine winzig Kleinigkeit ... nur ich finde sie nicht
Swat
Diabetes is more than an illness - it's a way of life.