schon gewusst ??? MOD
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.
schon gewusst ??? MOD
Bekomm beim schon gewusst MOD volgende Fehlermeldung
Warning: Wrong parameter count for srand() in /mnt/ls3/06/485/00000000/htdocs/phpBB2/includes/page_header.php on line 348
Warning: Cannot add header information - headers already sent by (output started at /mnt/ls3/06/485/00000000/htdocs/phpBB2/includes/page_header.php:348) in /mnt/ls3/06/485/00000000/htdocs/phpBB2/includes/page_header.php on line 493
Warning: Cannot add header information - headers already sent by (output started at /mnt/ls3/06/485/00000000/htdocs/phpBB2/includes/page_header.php:348) in /mnt/ls3/06/485/00000000/htdocs/phpBB2/includes/page_header.php on line 495
Warning: Cannot add header information - headers already sent by (output started at /mnt/ls3/06/485/00000000/htdocs/phpBB2/includes/page_header.php:348) in /mnt/ls3/06/485/00000000/htdocs/phpBB2/includes/page_header.php on line 496
was geb ich falsch ein?
Warning: Wrong parameter count for srand() in /mnt/ls3/06/485/00000000/htdocs/phpBB2/includes/page_header.php on line 348
Warning: Cannot add header information - headers already sent by (output started at /mnt/ls3/06/485/00000000/htdocs/phpBB2/includes/page_header.php:348) in /mnt/ls3/06/485/00000000/htdocs/phpBB2/includes/page_header.php on line 493
Warning: Cannot add header information - headers already sent by (output started at /mnt/ls3/06/485/00000000/htdocs/phpBB2/includes/page_header.php:348) in /mnt/ls3/06/485/00000000/htdocs/phpBB2/includes/page_header.php on line 495
Warning: Cannot add header information - headers already sent by (output started at /mnt/ls3/06/485/00000000/htdocs/phpBB2/includes/page_header.php:348) in /mnt/ls3/06/485/00000000/htdocs/phpBB2/includes/page_header.php on line 496
was geb ich falsch ein?
- Firestarter
- Mitglied
- Beiträge: 1162
- Registriert: 09.06.2003 15:21
prüfe mal, ob du das alles gemacht hast :
Code: Alles auswählen
#
#-----[ OPEN ]------------------------------------------
#
includes/page_header.php
#
#-----[ FIND ]------------------------------------------
#
// Format Timezone. We are unable to use array_pop here, because of PHP3 compatibility
$l_timezone = explode('.', $board_config['board_timezone']);
$l_timezone = (count($l_timezone) > 1 && $l_timezone[count($l_timezone)-1] != 0) ? $lang[sprintf('%.1f', $board_config['board_timezone'])] : $lang[number_format($board_config['board_timezone'])];
#
#-----[ AFTER, ADD ]------------------------------------------
#
//
// Generate 'Schon Gewusst?'
//
$random_file = $phpbb_root_path . 'schon_gewusst.txt';
$random = file($random_file);
srand();
$randomizer = rand(0, count($random) );
$znumber = rand(1, 2);
if( !isset($random[$randomizer]) )
{
$random[$randomizer] = 'Mehr Spielhilfen gibt es <a href="http://forum.the-arena.de/index.php?c=11&sid=1107c8df22093e2e5372a129ad8e69da">hier</a>';
}
#
#-----[ FIND ]------------------------------------------
#
'PRIVMSG_IMG' => $icon_pm,
#
#-----[ AFTER, ADD ]------------------------------------------
#
'ZMESSAGE' => $random[$randomizer],
'ZNUMBER' => $znumber,
MfG
Firestarter
Auch ich versuche mein Glück und möchte ein schönes Forum haben, dafür muss ich wohl erstmal leiden. *fg*
Firestarter
Auch ich versuche mein Glück und möchte ein schönes Forum haben, dafür muss ich wohl erstmal leiden. *fg*
Ja alles so eingegeben Gibt erst Probleme
wenn der
Eingefügt ist[/quote]
wenn der
Code: Alles auswählen
//
// Generate 'Schon Gewusst?'
//
$random_file = $phpbb_root_path . 'schon_gewusst.txt';
$random = file($random_file);
srand();
$randomizer = rand(0, count($random) );
$znumber = rand(1, 2);
if( !isset($random[$randomizer]) )
{
$random[$randomizer] = 'Mehr Spielhilfen gibt es <a href="http://forum.the-arena.de/index.php?c=11&sid=1107c8df22093e2e5372a129ad8e69da">hier</a>';
}
versuch mal
Code: Alles auswählen
//
// Generate 'Schon Gewusst?'
//
$random_file = $phpbb_root_path . 'schon_gewusst.txt';
$random = file($random_file);
srand(0);
$randomizer = rand(0, count($random) );
$znumber = rand(1, 2);
if( !isset($random[$randomizer]) )
{
$random[$randomizer] = 'Mehr Spielhilfen gibt es <a href="http://forum.the-arena.de/index.php?c=11&sid=1107c8df22093e2e5372a129ad8e69da">hier</a>';
}